chrome-devtools-frontend 1.0.945884 → 1.0.948295

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (259) hide show
  1. package/.eslintrc.js +1 -0
  2. package/config/gni/all_devtools_files.gni +1 -20
  3. package/config/gni/devtools_grd_files.gni +9 -48
  4. package/config/gni/devtools_image_files.gni +1 -0
  5. package/front_end/.eslintrc.js +6 -1
  6. package/front_end/Images/src/circled_backslash_icon.svg +3 -0
  7. package/front_end/core/host/InspectorFrontendHost.ts +0 -3
  8. package/front_end/core/host/InspectorFrontendHostAPI.ts +0 -1
  9. package/front_end/core/host/UserMetrics.ts +1 -23
  10. package/front_end/core/i18n/locales/en-US.json +41 -41
  11. package/front_end/core/i18n/locales/en-XL.json +41 -41
  12. package/front_end/core/platform/platform.ts +0 -2
  13. package/front_end/core/platform/string-utilities.ts +14 -1
  14. package/front_end/core/platform/utilities.ts +0 -29
  15. package/front_end/core/root/Runtime.ts +4 -212
  16. package/front_end/core/sdk/AccessibilityModel.ts +0 -2
  17. package/front_end/core/sdk/CSSProperty.ts +16 -11
  18. package/front_end/core/sdk/CSSRule.ts +0 -2
  19. package/front_end/core/sdk/Cookie.ts +0 -25
  20. package/front_end/core/sdk/EmulationModel.ts +0 -2
  21. package/front_end/core/sdk/HeapProfilerModel.ts +0 -2
  22. package/front_end/core/sdk/NetworkManager.ts +0 -3
  23. package/front_end/core/sdk/Resource.ts +0 -3
  24. package/front_end/core/sdk/ResourceTreeModel.ts +0 -3
  25. package/front_end/core/sdk/ServiceWorkerManager.ts +0 -2
  26. package/front_end/core/sdk/sdk-legacy.ts +0 -3
  27. package/front_end/devtools_compatibility.js +1 -8
  28. package/front_end/entrypoints/devtools_app/{devtools_app-meta-files.ts → devtools_app.ts} +9 -2
  29. package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +1 -3
  30. package/front_end/entrypoints/formatter_worker/FormatterActions.ts +0 -2
  31. package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +0 -120
  32. package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +1 -11
  33. package/front_end/entrypoints/formatter_worker/formatter_worker.ts +5 -0
  34. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +2 -1
  35. package/front_end/entrypoints/inspector/{inspector.js → inspector.ts} +0 -3
  36. package/front_end/entrypoints/js_app/{JsMain.ts → js_app.ts} +5 -1
  37. package/front_end/entrypoints/main/MainImpl.ts +0 -7
  38. package/front_end/entrypoints/ndb_app/{ndb_app.js → ndb_app.ts} +3 -2
  39. package/front_end/entrypoints/{node_main → node_app}/NodeConnectionsPanel.ts +1 -1
  40. package/front_end/entrypoints/{node_main → node_app}/NodeMain.ts +2 -4
  41. package/front_end/entrypoints/{node_main → node_app}/nodeConnectionsPanel.css +0 -0
  42. package/front_end/entrypoints/node_app/node_app.ts +79 -0
  43. package/front_end/entrypoints/shell/{shell-meta-files.ts → shell.ts} +7 -1
  44. package/front_end/entrypoints/worker_app/{worker_app.js → worker_app.ts} +6 -2
  45. package/front_end/generated/InspectorBackendCommands.js +5 -1
  46. package/front_end/generated/protocol.d.ts +12 -0
  47. package/front_end/legacy/legacy-defs.d.ts +0 -4
  48. package/front_end/legacy_test_runner/sources_test_runner/sources_test_runner.js +0 -1
  49. package/front_end/legacy_test_runner/test_runner/TestRunner.js +35 -59
  50. package/front_end/models/bindings/CompilerScriptMapping.ts +0 -1
  51. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +4 -11
  52. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -1
  53. package/front_end/models/bindings/ResourceMapping.ts +1 -1
  54. package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
  55. package/front_end/models/emulation/DeviceModeModel.ts +0 -2
  56. package/front_end/models/formatter/FormatterWorkerPool.ts +0 -18
  57. package/front_end/models/issues_manager/CorsIssue.ts +17 -9
  58. package/front_end/models/issues_manager/descriptions/{corsInsecurePrivateNetworkPreflight.md → corsPreflightAllowPrivateNetworkError.md} +1 -1
  59. package/front_end/models/text_utils/CodeMirrorUtils.ts +6 -51
  60. package/front_end/models/text_utils/TextUtils.ts +1 -2
  61. package/front_end/models/text_utils/text_utils-legacy.ts +0 -5
  62. package/front_end/panels/accessibility/AccessibilitySidebarView.ts +3 -1
  63. package/front_end/panels/animation/AnimationTimeline.ts +0 -2
  64. package/front_end/panels/animation/AnimationUI.ts +0 -2
  65. package/front_end/panels/application/ApplicationPanelSidebar.ts +2 -4
  66. package/front_end/panels/application/BackForwardCacheStrings.ts +2 -5
  67. package/front_end/panels/application/BackForwardCacheView.ts +150 -58
  68. package/front_end/panels/application/ResourcesPanel.ts +0 -42
  69. package/front_end/panels/application/application-legacy.ts +0 -3
  70. package/front_end/panels/application/application-meta.ts +0 -13
  71. package/front_end/panels/application/backForwardCacheView.css +44 -6
  72. package/front_end/panels/application/components/FrameDetailsView.ts +3 -3
  73. package/front_end/panels/application/components/OriginTrialTreeView.ts +3 -3
  74. package/front_end/panels/application/components/StackTrace.ts +1 -1
  75. package/front_end/panels/coverage/CoverageView.ts +1 -1
  76. package/front_end/panels/css_overview/CSSOverviewModel.ts +0 -2
  77. package/front_end/panels/css_overview/CSSOverviewPanel.ts +0 -7
  78. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +0 -2
  79. package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -0
  80. package/front_end/panels/css_overview/cssOverviewCompletedView.css +1 -1
  81. package/front_end/panels/developer_resources/DeveloperResourcesView.ts +2 -1
  82. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +0 -11
  83. package/front_end/panels/elements/ElementsPanel.ts +9 -1
  84. package/front_end/panels/elements/ElementsTreeElement.ts +1 -1
  85. package/front_end/panels/elements/StylesSidebarPane.ts +0 -1
  86. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -1
  87. package/front_end/panels/elements/elementsTreeOutline.css +0 -13
  88. package/front_end/panels/emulation/DeviceModeToolbar.ts +0 -16
  89. package/front_end/panels/issues/CorsIssueDetailsView.ts +18 -2
  90. package/front_end/panels/lighthouse/lighthouse-meta.ts +0 -3
  91. package/front_end/panels/network/NetworkConfigView.ts +10 -0
  92. package/front_end/panels/network/NetworkItemView.ts +3 -0
  93. package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -0
  94. package/front_end/panels/network/networkConfigView.css +5 -0
  95. package/front_end/panels/profiler/CPUProfileFlameChart.ts +3 -1
  96. package/front_end/panels/profiler/ProfileDataGrid.ts +2 -1
  97. package/front_end/panels/profiler/profilesPanel.css +1 -1
  98. package/front_end/panels/search/SearchView.ts +24 -4
  99. package/front_end/panels/settings/components/SyncSection.ts +2 -2
  100. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +52 -50
  101. package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +0 -12
  102. package/front_end/panels/sources/CSSPlugin.ts +3 -0
  103. package/front_end/panels/sources/CoveragePlugin.ts +2 -0
  104. package/front_end/panels/sources/DebuggerPlugin.ts +35 -7
  105. package/front_end/panels/sources/JavaScriptCompilerPlugin.ts +3 -0
  106. package/front_end/panels/sources/ProfilePlugin.ts +3 -0
  107. package/front_end/panels/sources/UISourceCodeFrame.ts +11 -2
  108. package/front_end/panels/sources/sourcesView.css +0 -130
  109. package/front_end/panels/timeline/TimelineTreeView.ts +3 -1
  110. package/front_end/third_party/codemirror/codemirror-tsconfig.json +1 -25
  111. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  112. package/front_end/third_party/codemirror.next/chunk/cpp.js +1 -2
  113. package/front_end/third_party/codemirror.next/chunk/java.js +1 -2
  114. package/front_end/third_party/codemirror.next/chunk/json.js +1 -2
  115. package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -2
  116. package/front_end/third_party/codemirror.next/chunk/php.js +1 -2
  117. package/front_end/third_party/codemirror.next/chunk/python.js +1 -2
  118. package/front_end/third_party/codemirror.next/chunk/wast.js +1 -2
  119. package/front_end/third_party/codemirror.next/chunk/xml.js +1 -2
  120. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +1486 -1423
  121. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -2
  122. package/front_end/third_party/codemirror.next/package.json +10 -9
  123. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +168 -164
  124. package/front_end/third_party/lighthouse/locales/ar-XB.json +0 -3
  125. package/front_end/third_party/lighthouse/locales/ar.json +0 -3
  126. package/front_end/third_party/lighthouse/locales/bg.json +17 -20
  127. package/front_end/third_party/lighthouse/locales/ca.json +0 -3
  128. package/front_end/third_party/lighthouse/locales/cs.json +0 -3
  129. package/front_end/third_party/lighthouse/locales/da.json +16 -19
  130. package/front_end/third_party/lighthouse/locales/de.json +0 -3
  131. package/front_end/third_party/lighthouse/locales/el.json +0 -3
  132. package/front_end/third_party/lighthouse/locales/en-GB.json +19 -22
  133. package/front_end/third_party/lighthouse/locales/en-US.json +33 -3
  134. package/front_end/third_party/lighthouse/locales/en-XA.json +0 -3
  135. package/front_end/third_party/lighthouse/locales/en-XL.json +33 -3
  136. package/front_end/third_party/lighthouse/locales/es-419.json +17 -20
  137. package/front_end/third_party/lighthouse/locales/es.json +0 -3
  138. package/front_end/third_party/lighthouse/locales/fi.json +16 -19
  139. package/front_end/third_party/lighthouse/locales/fil.json +33 -36
  140. package/front_end/third_party/lighthouse/locales/fr.json +16 -19
  141. package/front_end/third_party/lighthouse/locales/he.json +16 -19
  142. package/front_end/third_party/lighthouse/locales/hi.json +0 -3
  143. package/front_end/third_party/lighthouse/locales/hr.json +16 -19
  144. package/front_end/third_party/lighthouse/locales/hu.json +16 -19
  145. package/front_end/third_party/lighthouse/locales/id.json +16 -19
  146. package/front_end/third_party/lighthouse/locales/it.json +37 -40
  147. package/front_end/third_party/lighthouse/locales/ja.json +16 -19
  148. package/front_end/third_party/lighthouse/locales/ko.json +16 -19
  149. package/front_end/third_party/lighthouse/locales/lt.json +17 -20
  150. package/front_end/third_party/lighthouse/locales/lv.json +0 -3
  151. package/front_end/third_party/lighthouse/locales/nl.json +16 -19
  152. package/front_end/third_party/lighthouse/locales/no.json +17 -20
  153. package/front_end/third_party/lighthouse/locales/pl.json +16 -19
  154. package/front_end/third_party/lighthouse/locales/pt-PT.json +37 -40
  155. package/front_end/third_party/lighthouse/locales/pt.json +16 -19
  156. package/front_end/third_party/lighthouse/locales/ro.json +0 -3
  157. package/front_end/third_party/lighthouse/locales/ru.json +16 -19
  158. package/front_end/third_party/lighthouse/locales/sk.json +0 -3
  159. package/front_end/third_party/lighthouse/locales/sl.json +0 -3
  160. package/front_end/third_party/lighthouse/locales/sr-Latn.json +16 -19
  161. package/front_end/third_party/lighthouse/locales/sr.json +16 -19
  162. package/front_end/third_party/lighthouse/locales/sv.json +17 -20
  163. package/front_end/third_party/lighthouse/locales/ta.json +0 -3
  164. package/front_end/third_party/lighthouse/locales/te.json +0 -3
  165. package/front_end/third_party/lighthouse/locales/th.json +0 -3
  166. package/front_end/third_party/lighthouse/locales/tr.json +0 -3
  167. package/front_end/third_party/lighthouse/locales/uk.json +17 -20
  168. package/front_end/third_party/lighthouse/locales/vi.json +0 -3
  169. package/front_end/third_party/lighthouse/locales/zh-HK.json +0 -3
  170. package/front_end/third_party/lighthouse/locales/zh-TW.json +0 -3
  171. package/front_end/third_party/lighthouse/locales/zh.json +0 -3
  172. package/front_end/third_party/lighthouse/report/bundle.d.ts +63 -61
  173. package/front_end/third_party/lighthouse/report/bundle.js +36 -7
  174. package/front_end/third_party/lighthouse/report-assets/report-generator.js +205 -192
  175. package/front_end/ui/components/diff_view/DiffView.ts +4 -4
  176. package/front_end/ui/components/helpers/component-server-setup.ts +1 -12
  177. package/front_end/ui/components/helpers/helpers.ts +0 -2
  178. package/front_end/ui/components/icon_button/IconButton.ts +1 -1
  179. package/front_end/ui/components/issue_counter/IssueCounter.ts +2 -2
  180. package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +3 -3
  181. package/front_end/ui/components/markdown_view/MarkdownView.ts +4 -4
  182. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +98 -0
  183. package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -0
  184. package/front_end/ui/components/panel_feedback/previewToggle.css +24 -0
  185. package/front_end/ui/components/report_view/ReportView.ts +22 -0
  186. package/front_end/ui/components/report_view/reportSection.css +20 -0
  187. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +1 -1
  188. package/front_end/ui/components/settings/SettingCheckbox.ts +2 -2
  189. package/front_end/ui/components/text_editor/config.ts +11 -9
  190. package/front_end/ui/components/text_editor/javascript.ts +34 -12
  191. package/front_end/ui/components/text_editor/theme.ts +1 -0
  192. package/front_end/ui/components/text_prompt/TextPrompt.ts +2 -2
  193. package/front_end/ui/legacy/GlassPane.ts +1 -1
  194. package/front_end/ui/legacy/InspectorView.ts +10 -0
  195. package/front_end/ui/legacy/SearchableView.ts +2 -1
  196. package/front_end/ui/legacy/Treeoutline.ts +1 -1
  197. package/front_end/ui/legacy/Widget.ts +1 -1
  198. package/front_end/ui/legacy/XWidget.ts +0 -5
  199. package/front_end/ui/legacy/components/inline_editor/CSSVarSwatch.ts +2 -2
  200. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +1 -1
  201. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +2 -3
  202. package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +0 -1
  203. package/front_end/ui/legacy/components/object_ui/object_ui-legacy.ts +0 -8
  204. package/front_end/ui/legacy/components/object_ui/object_ui.ts +0 -4
  205. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +40 -29
  206. package/front_end/ui/legacy/inspectorSyntaxHighlight.css +0 -211
  207. package/front_end/ui/legacy/legacy-legacy.ts +0 -6
  208. package/front_end/ui/legacy/legacy.ts +0 -2
  209. package/front_end/ui/legacy/tabbedPane.css +1 -1
  210. package/front_end/ui/legacy/themeColors.css +1 -1
  211. package/front_end/ui/legacy/utils/append-style.ts +2 -13
  212. package/front_end/ui/legacy/utils/create-shadow-root-with-core-styles.ts +7 -5
  213. package/package.json +2 -4
  214. package/scripts/build/build_inspector_overlay.py +15 -1
  215. package/scripts/build/rjsmin.py +84 -115
  216. package/scripts/eslint_rules/lib/l10n_filename_matches.js +4 -4
  217. package/scripts/eslint_rules/lib/lit_html_no_attribute_quotes.js +101 -0
  218. package/scripts/eslint_rules/lib/no_only_eslint_tests.js +53 -0
  219. package/scripts/eslint_rules/tests/.eslintrc.js +14 -0
  220. package/scripts/eslint_rules/tests/l10n_filename_matches_test.js +4 -0
  221. package/scripts/eslint_rules/tests/lit_html_no_attribute_quotes_test.js +45 -0
  222. package/scripts/eslint_rules/tests/no_only_eslint_tests_test.js +94 -0
  223. package/scripts/hosted_mode/server.js +17 -2
  224. package/front_end/entrypoints/devtools_app/devtools_app.js +0 -8
  225. package/front_end/entrypoints/devtools_app/devtools_app.json +0 -6
  226. package/front_end/entrypoints/inspector/inspector.json +0 -4
  227. package/front_end/entrypoints/js_app/js_app.js +0 -9
  228. package/front_end/entrypoints/js_app/js_app.json +0 -4
  229. package/front_end/entrypoints/ndb_app/ndb_app.json +0 -5
  230. package/front_end/entrypoints/node_app/node_app-meta.ts +0 -43
  231. package/front_end/entrypoints/node_app/node_app.js +0 -13
  232. package/front_end/entrypoints/node_app/node_app.json +0 -4
  233. package/front_end/entrypoints/node_main/node_main-meta.ts +0 -48
  234. package/front_end/entrypoints/node_main/node_main.ts +0 -11
  235. package/front_end/entrypoints/shell/shell.js +0 -13
  236. package/front_end/entrypoints/shell/shell.json +0 -5
  237. package/front_end/entrypoints/startup/RuntimeInstantiator.ts +0 -95
  238. package/front_end/entrypoints/startup/startup.ts +0 -9
  239. package/front_end/entrypoints/worker_app/worker_app.json +0 -4
  240. package/front_end/panels/lighthouse/module.json +0 -6
  241. package/front_end/third_party/lighthouse/report-assets/report.d.ts +0 -1
  242. package/front_end/third_party/lighthouse/report-assets/report.js +0 -233
  243. package/front_end/third_party/lighthouse/report-assets/standalone-template.html +0 -38
  244. package/front_end/ui/components/helpers/get-stylesheet.ts +0 -45
  245. package/front_end/ui/legacy/TextEditor.ts +0 -82
  246. package/front_end/ui/legacy/components/object_ui/JavaScriptAutocomplete.ts +0 -836
  247. package/front_end/ui/legacy/components/text_editor/CodeMirrorTextEditor.ts +0 -1676
  248. package/front_end/ui/legacy/components/text_editor/TextEditorAutocompleteController.ts +0 -586
  249. package/front_end/ui/legacy/components/text_editor/autocompleteTooltip.css +0 -20
  250. package/front_end/ui/legacy/components/text_editor/cm_modes.ts +0 -23
  251. package/front_end/ui/legacy/components/text_editor/cmdevtools.css +0 -995
  252. package/front_end/ui/legacy/components/text_editor/module.json +0 -7
  253. package/front_end/ui/legacy/components/text_editor/text_editor-legacy.ts +0 -33
  254. package/front_end/ui/legacy/components/text_editor/text_editor.ts +0 -13
  255. package/scripts/build/build_release_applications.py +0 -216
  256. package/scripts/build/modular_build.py +0 -184
  257. package/scripts/check_gn.js +0 -119
  258. package/scripts/json_validator/module.schema.json +0 -19
  259. package/scripts/json_validator/validate_module_json.js +0 -44
package/.eslintrc.js CHANGED
@@ -106,6 +106,7 @@ module.exports = {
106
106
 
107
107
  // no-implicit-globals will prevent accidental globals
108
108
  'no-implicit-globals': [0],
109
+ 'no-unused-private-class-members': 2,
109
110
 
110
111
  // forbids interfaces starting with an I prefix.
111
112
  '@typescript-eslint/naming-convention':
@@ -5,13 +5,6 @@
5
5
  import("../../scripts/build/ninja/vars.gni")
6
6
 
7
7
  all_devtools_files = [
8
- "front_end/entrypoints/shell/shell.js",
9
- "front_end/entrypoints/devtools_app/devtools_app.js",
10
- "front_end/entrypoints/inspector/inspector.js",
11
- "front_end/entrypoints/js_app/js_app.js",
12
- "front_end/entrypoints/ndb_app/ndb_app.js",
13
- "front_end/entrypoints/node_app/node_app.js",
14
- "front_end/entrypoints/worker_app/worker_app.js",
15
8
  "front_end/legacy_test_runner/accessibility_test_runner/accessibility_test_runner.js",
16
9
  "front_end/legacy_test_runner/application_test_runner/application_test_runner.js",
17
10
  "front_end/legacy_test_runner/bindings_test_runner/bindings_test_runner.js",
@@ -22,7 +15,6 @@ all_devtools_files = [
22
15
  "front_end/legacy_test_runner/application_test_runner/ServiceWorkersTestRunner.js",
23
16
  "front_end/legacy_test_runner/application_test_runner/StorageTestRunner.js",
24
17
  "front_end/legacy_test_runner/lighthouse_test_runner/lighthouse_test_runner.js",
25
- "front_end/panels/lighthouse/module.json",
26
18
  "front_end/legacy_test_runner/axe_core_test_runner/axe_core_test_runner.js",
27
19
  "front_end/third_party/axe-core/axe.js",
28
20
  "front_end/legacy_test_runner/bindings_test_runner/AutomappingTestRunner.js",
@@ -30,7 +22,6 @@ all_devtools_files = [
30
22
  "front_end/legacy_test_runner/bindings_test_runner/IsolatedFilesystemTestRunner.js",
31
23
  "front_end/legacy_test_runner/bindings_test_runner/OverridesTestRunner.js",
32
24
  "front_end/legacy_test_runner/bindings_test_runner/PersistenceTestRunner.js",
33
- "front_end/third_party/codemirror/codemirror.css",
34
25
  "front_end/legacy_test_runner/console_test_runner/console_test_runner.js",
35
26
  "front_end/legacy_test_runner/coverage_test_runner/coverage_test_runner.js",
36
27
  "front_end/legacy_test_runner/cpu_profiler_test_runner/cpu_profiler_test_runner.js",
@@ -46,12 +37,8 @@ all_devtools_files = [
46
37
  "front_end/legacy_test_runner/extensions_test_runner/ExtensionsNetworkTestRunner.js",
47
38
  "front_end/legacy_test_runner/extensions_test_runner/ExtensionsTestRunner.js",
48
39
  "front_end/legacy_test_runner/heap_profiler_test_runner/heap_profiler_test_runner.js",
49
- "front_end/entrypoints/inspector/inspector.js",
50
- "front_end/entrypoints/inspector/inspector.json",
51
40
  "front_end/legacy_test_runner/layers_test_runner/layers_test_runner.js",
52
- "front_end/entrypoints/ndb_app/ndb_app.json",
53
41
  "front_end/legacy_test_runner/network_test_runner/network_test_runner.js",
54
- "front_end/entrypoints/node_main/nodeConnectionsPanel.css",
55
42
  "front_end/legacy_test_runner/performance_test_runner/performance_test_runner.js",
56
43
  "front_end/legacy_test_runner/performance_test_runner/TimelineDataTestRunner.js",
57
44
  "front_end/legacy_test_runner/performance_test_runner/TimelineTestRunner.js",
@@ -93,7 +80,7 @@ all_devtools_files = [
93
80
  "front_end/models/issues_manager/descriptions/mixedContent.md",
94
81
  "front_end/models/issues_manager/descriptions/sharedArrayBuffer.md",
95
82
  "front_end/models/issues_manager/descriptions/corsInsecurePrivateNetwork.md",
96
- "front_end/models/issues_manager/descriptions/corsInsecurePrivateNetworkPreflight.md",
83
+ "front_end/models/issues_manager/descriptions/corsPreflightAllowPrivateNetworkError.md",
97
84
  "front_end/models/issues_manager/descriptions/SameSiteExcludeContextDowngradeRead.md",
98
85
  "front_end/models/issues_manager/descriptions/SameSiteExcludeContextDowngradeSet.md",
99
86
  "front_end/models/issues_manager/descriptions/SameSiteExcludeNavigationContextDowngrade.md",
@@ -114,7 +101,6 @@ all_devtools_files = [
114
101
  "front_end/models/issues_manager/descriptions/TwaPageUnavailableOffline.md",
115
102
  "front_end/legacy_test_runner/sdk_test_runner/sdk_test_runner.js",
116
103
  "front_end/legacy_test_runner/security_test_runner/security_test_runner.js",
117
- "front_end/entrypoints/shell/shell.json",
118
104
  "front_end/legacy_test_runner/sources_test_runner/sources_test_runner.js",
119
105
  "front_end/legacy_test_runner/sources_test_runner/AutocompleteTestRunner.js",
120
106
  "front_end/legacy_test_runner/sources_test_runner/DebuggerTestRunner.js",
@@ -122,11 +108,6 @@ all_devtools_files = [
122
108
  "front_end/legacy_test_runner/sources_test_runner/LiveEditTestRunner.js",
123
109
  "front_end/legacy_test_runner/sources_test_runner/SearchTestRunner.js",
124
110
  "front_end/legacy_test_runner/sources_test_runner/SourcesTestRunner.js",
125
- "front_end/ui/legacy/components/text_editor/autocompleteTooltip.css",
126
- "front_end/ui/legacy/components/text_editor/cmdevtools.css",
127
- "front_end/ui/legacy/components/text_editor/module.json",
128
- "front_end/third_party/lighthouse/report-assets/report.js",
129
- "front_end/third_party/lighthouse/report-assets/standalone-template.html",
130
111
  ]
131
112
 
132
113
  lighthouse_locale_files = [
@@ -45,6 +45,7 @@ grd_files_release_sources = [
45
45
  "front_end/Images/chromeRight.avif",
46
46
  "front_end/Images/chromeSelect.svg",
47
47
  "front_end/Images/chromeSelectDark.svg",
48
+ "front_end/Images/circled_backslash_icon.svg",
48
49
  "front_end/Images/circled_exclamation_icon.svg",
49
50
  "front_end/Images/close-icon.svg",
50
51
  "front_end/Images/copy_icon.svg",
@@ -204,7 +205,6 @@ grd_files_release_sources = [
204
205
  "front_end/emulated_devices/optimized/iPhone6Plus-landscape.avif",
205
206
  "front_end/emulated_devices/optimized/iPhone6Plus-portrait.avif",
206
207
  "front_end/entrypoints/device_mode_emulation_frame/device_mode_emulation_frame.js",
207
- "front_end/entrypoints/devtools_app/devtools_app-meta-files.js",
208
208
  "front_end/entrypoints/devtools_app/devtools_app.js",
209
209
  "front_end/entrypoints/formatter_worker/FormatterActions.js",
210
210
  "front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.js",
@@ -215,23 +215,16 @@ grd_files_release_sources = [
215
215
  "front_end/entrypoints/inspector/inspector.js",
216
216
  "front_end/entrypoints/inspector_main/inspector_main-meta.js",
217
217
  "front_end/entrypoints/inspector_main/inspector_main.js",
218
- "front_end/entrypoints/js_app/JsMain.js",
219
218
  "front_end/entrypoints/js_app/js_app.js",
220
219
  "front_end/entrypoints/lighthouse_worker/lighthouse_worker.js",
221
220
  "front_end/entrypoints/main/main-legacy.js",
222
221
  "front_end/entrypoints/main/main-meta.js",
223
222
  "front_end/entrypoints/main/main.js",
224
223
  "front_end/entrypoints/ndb_app/ndb_app.js",
225
- "front_end/entrypoints/node_app/node_app-meta.js",
226
224
  "front_end/entrypoints/node_app/node_app.js",
227
- "front_end/entrypoints/node_main/node_main-meta.js",
228
- "front_end/entrypoints/node_main/node_main.js",
229
- "front_end/entrypoints/shell/shell-meta-files.js",
230
225
  "front_end/entrypoints/shell/shell.js",
231
- "front_end/entrypoints/startup/startup.js",
232
226
  "front_end/entrypoints/wasmparser_worker/wasmparser_worker-entrypoint.js",
233
227
  "front_end/entrypoints/wasmparser_worker/wasmparser_worker.js",
234
- "front_end/entrypoints/worker_app/WorkerMain.js",
235
228
  "front_end/entrypoints/worker_app/worker_app.js",
236
229
  "front_end/inspector.html",
237
230
  "front_end/integration_test_runner.html",
@@ -288,11 +281,11 @@ grd_files_release_sources = [
288
281
  "front_end/models/issues_manager/descriptions/corsDisallowedByMode.md",
289
282
  "front_end/models/issues_manager/descriptions/corsHeaderDisallowedByPreflightResponse.md",
290
283
  "front_end/models/issues_manager/descriptions/corsInsecurePrivateNetwork.md",
291
- "front_end/models/issues_manager/descriptions/corsInsecurePrivateNetworkPreflight.md",
292
284
  "front_end/models/issues_manager/descriptions/corsInvalidHeaderValues.md",
293
285
  "front_end/models/issues_manager/descriptions/corsMethodDisallowedByPreflightResponse.md",
294
286
  "front_end/models/issues_manager/descriptions/corsNoCorsRedirectModeNotFollow.md",
295
287
  "front_end/models/issues_manager/descriptions/corsOriginMismatch.md",
288
+ "front_end/models/issues_manager/descriptions/corsPreflightAllowPrivateNetworkError.md",
296
289
  "front_end/models/issues_manager/descriptions/corsPreflightResponseInvalid.md",
297
290
  "front_end/models/issues_manager/descriptions/corsRedirectContainsCredentials.md",
298
291
  "front_end/models/issues_manager/descriptions/corsWildcardOriginNotAllowed.md",
@@ -380,7 +373,6 @@ grd_files_release_sources = [
380
373
  "front_end/panels/lighthouse/lighthouse-legacy.js",
381
374
  "front_end/panels/lighthouse/lighthouse-meta.js",
382
375
  "front_end/panels/lighthouse/lighthouse.js",
383
- "front_end/panels/lighthouse/lighthouse_module.js",
384
376
  "front_end/panels/media/media-meta.js",
385
377
  "front_end/panels/media/media.js",
386
378
  "front_end/panels/mobile_throttling/mobile_throttling-legacy.js",
@@ -446,7 +438,6 @@ grd_files_release_sources = [
446
438
  "front_end/third_party/codemirror.next/chunk/wast.js",
447
439
  "front_end/third_party/codemirror.next/chunk/xml.js",
448
440
  "front_end/third_party/codemirror.next/codemirror.next.js",
449
- "front_end/third_party/codemirror/codemirror.js",
450
441
  "front_end/third_party/diff/diff-legacy.js",
451
442
  "front_end/third_party/diff/diff.js",
452
443
  "front_end/third_party/i18n/i18n.js",
@@ -498,8 +489,6 @@ grd_files_release_sources = [
498
489
  "front_end/ui/legacy/components/source_frame/source_frame-legacy.js",
499
490
  "front_end/ui/legacy/components/source_frame/source_frame-meta.js",
500
491
  "front_end/ui/legacy/components/source_frame/source_frame.js",
501
- "front_end/ui/legacy/components/text_editor/text_editor-legacy.js",
502
- "front_end/ui/legacy/components/text_editor/text_editor.js",
503
492
  "front_end/ui/legacy/components/utils/utils-legacy.js",
504
493
  "front_end/ui/legacy/components/utils/utils.js",
505
494
  "front_end/ui/legacy/legacy-legacy.js",
@@ -657,11 +646,11 @@ grd_files_debug_sources = [
657
646
  "front_end/entrypoints/main/ExecutionContextSelector.js",
658
647
  "front_end/entrypoints/main/MainImpl.js",
659
648
  "front_end/entrypoints/main/SimpleApp.js",
660
- "front_end/entrypoints/node_main/NodeConnectionsPanel.js",
661
- "front_end/entrypoints/node_main/NodeMain.js",
662
- "front_end/entrypoints/node_main/nodeConnectionsPanel.css.js",
663
- "front_end/entrypoints/startup/RuntimeInstantiator.js",
649
+ "front_end/entrypoints/node_app/NodeConnectionsPanel.js",
650
+ "front_end/entrypoints/node_app/NodeMain.js",
651
+ "front_end/entrypoints/node_app/nodeConnectionsPanel.css.js",
664
652
  "front_end/entrypoints/wasmparser_worker/WasmParserWorker.js",
653
+ "front_end/entrypoints/worker_app/WorkerMain.js",
665
654
  "front_end/generated/ARIAProperties.js",
666
655
  "front_end/generated/InspectorBackendCommands.js",
667
656
  "front_end/generated/SupportedCSSProperties.js",
@@ -1264,33 +1253,9 @@ grd_files_debug_sources = [
1264
1253
  "front_end/third_party/acorn-loose/package/dist/acorn-loose.mjs",
1265
1254
  "front_end/third_party/acorn/package/dist/acorn.mjs",
1266
1255
  "front_end/third_party/chromium/client-variations/ClientVariations.js",
1267
- "front_end/third_party/codemirror/package/addon/comment/comment.js",
1268
- "front_end/third_party/codemirror/package/addon/edit/closebrackets.js",
1269
- "front_end/third_party/codemirror/package/addon/edit/matchbrackets.js",
1270
- "front_end/third_party/codemirror/package/addon/fold/brace-fold.js",
1271
- "front_end/third_party/codemirror/package/addon/fold/foldcode.js",
1272
- "front_end/third_party/codemirror/package/addon/fold/foldgutter.js",
1273
- "front_end/third_party/codemirror/package/addon/mode/multiplex.js",
1274
- "front_end/third_party/codemirror/package/addon/mode/overlay.js",
1275
- "front_end/third_party/codemirror/package/addon/mode/simple.js",
1276
1256
  "front_end/third_party/codemirror/package/addon/runmode/runmode-standalone.js",
1277
- "front_end/third_party/codemirror/package/addon/selection/active-line.js",
1278
- "front_end/third_party/codemirror/package/addon/selection/mark-selection.js",
1279
- "front_end/third_party/codemirror/package/lib/codemirror.js",
1280
- "front_end/third_party/codemirror/package/mode/clike/clike.js",
1281
- "front_end/third_party/codemirror/package/mode/clojure/clojure.js",
1282
- "front_end/third_party/codemirror/package/mode/coffeescript/coffeescript.js",
1283
1257
  "front_end/third_party/codemirror/package/mode/css/css.js",
1284
- "front_end/third_party/codemirror/package/mode/htmlembedded/htmlembedded.js",
1285
- "front_end/third_party/codemirror/package/mode/htmlmixed/htmlmixed.js",
1286
1258
  "front_end/third_party/codemirror/package/mode/javascript/javascript.js",
1287
- "front_end/third_party/codemirror/package/mode/jsx/jsx.js",
1288
- "front_end/third_party/codemirror/package/mode/livescript/livescript.js",
1289
- "front_end/third_party/codemirror/package/mode/markdown/markdown.js",
1290
- "front_end/third_party/codemirror/package/mode/php/php.js",
1291
- "front_end/third_party/codemirror/package/mode/python/python.js",
1292
- "front_end/third_party/codemirror/package/mode/shell/shell.js",
1293
- "front_end/third_party/codemirror/package/mode/wast/wast.js",
1294
1259
  "front_end/third_party/codemirror/package/mode/xml/xml.js",
1295
1260
  "front_end/third_party/diff/DiffWrapper.js",
1296
1261
  "front_end/third_party/diff/diff_match_patch.js",
@@ -1299,7 +1264,6 @@ grd_files_debug_sources = [
1299
1264
  "front_end/third_party/i18n/localized-string-set.js",
1300
1265
  "front_end/third_party/intl-messageformat/package/intl-messageformat.esm.js",
1301
1266
  "front_end/third_party/lighthouse/report-assets/report-generator.js",
1302
- "front_end/third_party/lighthouse/report-assets/report.js",
1303
1267
  "front_end/third_party/lighthouse/report/bundle.js",
1304
1268
  "front_end/third_party/lit-html/directive.js",
1305
1269
  "front_end/third_party/lit-html/directives.js",
@@ -1350,7 +1314,6 @@ grd_files_debug_sources = [
1350
1314
  "front_end/ui/components/helpers/custom-elements.js",
1351
1315
  "front_end/ui/components/helpers/directives.js",
1352
1316
  "front_end/ui/components/helpers/get-root-node.js",
1353
- "front_end/ui/components/helpers/get-stylesheet.js",
1354
1317
  "front_end/ui/components/helpers/scheduled-render.js",
1355
1318
  "front_end/ui/components/helpers/set-css-property.js",
1356
1319
  "front_end/ui/components/icon_button/Icon.js",
@@ -1390,11 +1353,14 @@ grd_files_debug_sources = [
1390
1353
  "front_end/ui/components/markdown_view/markdownView.css.js",
1391
1354
  "front_end/ui/components/panel_feedback/FeedbackButton.js",
1392
1355
  "front_end/ui/components/panel_feedback/PanelFeedback.js",
1356
+ "front_end/ui/components/panel_feedback/PreviewToggle.js",
1393
1357
  "front_end/ui/components/panel_feedback/panelFeedback.css.js",
1358
+ "front_end/ui/components/panel_feedback/previewToggle.css.js",
1394
1359
  "front_end/ui/components/render_coordinator/RenderCoordinator.js",
1395
1360
  "front_end/ui/components/report_view/ReportView.js",
1396
1361
  "front_end/ui/components/report_view/report.css.js",
1397
1362
  "front_end/ui/components/report_view/reportKey.css.js",
1363
+ "front_end/ui/components/report_view/reportSection.css.js",
1398
1364
  "front_end/ui/components/report_view/reportSectionDivider.css.js",
1399
1365
  "front_end/ui/components/report_view/reportSectionHeader.css.js",
1400
1366
  "front_end/ui/components/report_view/reportValue.css.js",
@@ -1456,7 +1422,6 @@ grd_files_debug_sources = [
1456
1422
  "front_end/ui/legacy/SuggestBox.js",
1457
1423
  "front_end/ui/legacy/TabbedPane.js",
1458
1424
  "front_end/ui/legacy/TargetCrashedScreen.js",
1459
- "front_end/ui/legacy/TextEditor.js",
1460
1425
  "front_end/ui/legacy/TextPrompt.js",
1461
1426
  "front_end/ui/legacy/ThrottledWidget.js",
1462
1427
  "front_end/ui/legacy/Toolbar.js",
@@ -1516,7 +1481,6 @@ grd_files_debug_sources = [
1516
1481
  "front_end/ui/legacy/components/inline_editor/fontEditor.css.js",
1517
1482
  "front_end/ui/legacy/components/inline_editor/swatchPopover.css.js",
1518
1483
  "front_end/ui/legacy/components/object_ui/CustomPreviewComponent.js",
1519
- "front_end/ui/legacy/components/object_ui/JavaScriptAutocomplete.js",
1520
1484
  "front_end/ui/legacy/components/object_ui/JavaScriptREPL.js",
1521
1485
  "front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.js",
1522
1486
  "front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.js",
@@ -1564,9 +1528,6 @@ grd_files_debug_sources = [
1564
1528
  "front_end/ui/legacy/components/source_frame/resourceSourceFrame.css.legacy.js",
1565
1529
  "front_end/ui/legacy/components/source_frame/xmlTree.css.legacy.js",
1566
1530
  "front_end/ui/legacy/components/source_frame/xmlView.css.legacy.js",
1567
- "front_end/ui/legacy/components/text_editor/CodeMirrorTextEditor.js",
1568
- "front_end/ui/legacy/components/text_editor/TextEditorAutocompleteController.js",
1569
- "front_end/ui/legacy/components/text_editor/cm_modes.js",
1570
1531
  "front_end/ui/legacy/components/utils/ImagePreview.js",
1571
1532
  "front_end/ui/legacy/components/utils/JSPresentationUtils.js",
1572
1533
  "front_end/ui/legacy/components/utils/Linkifier.js",
@@ -56,6 +56,7 @@ devtools_svg_sources = [
56
56
  "chevrons.svg",
57
57
  "chromeSelect.svg",
58
58
  "chromeSelectDark.svg",
59
+ "circled_backslash_icon.svg",
59
60
  "circled_exclamation_icon.svg",
60
61
  "close-icon.svg",
61
62
  "copy_icon.svg",
@@ -9,7 +9,11 @@ rulesDirPlugin.RULES_DIR = path.join(__dirname, '..', 'scripts', 'eslint_rules',
9
9
  module.exports = {
10
10
  'rules': {
11
11
  // L10n rules are only relevant in 'front_end'.
12
- 'rulesdir/l10n_filename_matches': 2,
12
+ 'rulesdir/l10n_filename_matches': [
13
+ 2, {
14
+ rootFrontendDirectory: __dirname,
15
+ }
16
+ ],
13
17
  'rulesdir/l10n_i18nString_call_only_with_uistrings': 2,
14
18
  'rulesdir/l10n_no_i18nString_calls_module_instantiation': 2,
15
19
  'rulesdir/l10n_no_locked_or_placeholder_only_phrase': 2,
@@ -36,6 +40,7 @@ module.exports = {
36
40
  'rulesdir/check_was_shown_methods': 2,
37
41
  'rulesdir/static_custom_event_names': 2,
38
42
  'rulesdir/lit_html_host_this': 2,
43
+ 'rulesdir/lit_html_no_attribute_quotes': 2,
39
44
  '@typescript-eslint/naming-convention': [
40
45
  'error', {
41
46
  'selector': ['property', 'parameterProperty'],
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 4.233 4.233" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.117.132a1.985 1.985 0 1 0 .001 3.97 1.985 1.985 0 0 0-.001-3.97zm0 3.572a1.587 1.587 0 0 1-1.252-2.56L3.089 3.37a1.57 1.57 0 0 1-.972.335Zm1.252-.615L1.144.865a1.587 1.587 0 0 1 2.224 2.224z" style="fill:#000;stroke-width:.264583"/>
3
+ </svg>
@@ -55,7 +55,6 @@ const MAX_RECORDED_HISTOGRAMS_SIZE = 100;
55
55
  export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
56
56
  readonly #urlsBeingSaved: Map<string, string[]>;
57
57
  events!: Common.EventTarget.EventTarget<EventTypes>;
58
- #windowVisible?: boolean;
59
58
 
60
59
  recordedEnumeratedHistograms: {actionName: EnumeratedHistogram, actionCode: number}[] = [];
61
60
  recordedPerformanceHistograms: {histogramName: string, duration: number}[] = [];
@@ -89,11 +88,9 @@ export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
89
88
  }
90
89
 
91
90
  bringToFront(): void {
92
- this.#windowVisible = true;
93
91
  }
94
92
 
95
93
  closeWindow(): void {
96
- this.#windowVisible = false;
97
94
  }
98
95
 
99
96
  setIsDocked(isDocked: boolean, callback: () => void): void {
@@ -361,7 +361,6 @@ export enum EnumeratedHistogram {
361
361
  ExperimentEnabledAtLaunch = 'DevTools.ExperimentEnabledAtLaunch',
362
362
  ExperimentEnabled = 'DevTools.ExperimentEnabled',
363
363
  ExperimentDisabled = 'DevTools.ExperimentDisabled',
364
- CssEditorOpened = 'DevTools.CssEditorOpened',
365
364
  DeveloperResourceLoaded = 'DevTools.DeveloperResourceLoaded',
366
365
  DeveloperResourceScheme = 'DevTools.DeveloperResourceScheme',
367
366
  LinearMemoryInspectorRevealedFrom = 'DevTools.LinearMemoryInspector.RevealedFrom',
@@ -164,18 +164,6 @@ export class UserMetrics {
164
164
  EnumeratedHistogram.DualScreenDeviceEmulated, emulationAction, size);
165
165
  }
166
166
 
167
- cssEditorOpened(editorName: string): void {
168
- const size = Object.keys(CssEditorOpened).length + 1;
169
- const key = editorName;
170
- const value = CssEditorOpened[key];
171
-
172
- if (value === undefined) {
173
- return;
174
- }
175
-
176
- InspectorFrontendHostInstance.recordEnumeratedHistogram(EnumeratedHistogram.CssEditorOpened, value, size);
177
- }
178
-
179
167
  experimentEnabledAtLaunch(experimentId: string): void {
180
168
  const size = DevtoolsExperiments['__lastValidEnumPosition'] + 1;
181
169
  const experiment = DevtoolsExperiments[experimentId];
@@ -557,15 +545,6 @@ export enum DualScreenDeviceEmulated {
557
545
  PlatformSupportUsed = 2, // user starts to use platform dual screen support feature.
558
546
  }
559
547
 
560
- export const CssEditorOpened: {
561
- [x: string]: number,
562
- } = {
563
- 'colorPicker': 0,
564
- 'shadowEditor': 1,
565
- 'bezierEditor': 2,
566
- 'fontEditor': 3,
567
- };
568
-
569
548
  /**
570
549
  * This list should contain the currently active Devtools Experiments.
571
550
  * Therefore, it is possible that the id's will no longer be continuous
@@ -611,7 +590,6 @@ export const DevtoolsExperiments: {
611
590
  'ignoreListJSFramesOnTimeline': 43,
612
591
  'contrastIssues': 44,
613
592
  'experimentalCookieFeatures': 45,
614
- 'bfcacheDebugging': 47,
615
593
  'hideIssuesFeature': 48,
616
594
  'reportingApiDebugging': 49,
617
595
  'syncSettings': 50,
@@ -696,7 +674,6 @@ export const IssueCreated: {
696
674
  'TrustedWebActivityIssue::kDigitalAssetLinks': 40,
697
675
  LowTextContrastIssue: 41,
698
676
  'CorsIssue::InsecurePrivateNetwork': 42,
699
- 'CorsIssue::InsecurePrivateNetworkPreflight': 43,
700
677
  'CorsIssue::InvalidHeaders': 44,
701
678
  'CorsIssue::WildcardOriginWithCredentials': 45,
702
679
  'CorsIssue::PreflightResponseInvalid': 46,
@@ -714,6 +691,7 @@ export const IssueCreated: {
714
691
  'QuirksModeIssue::QuirksMode': 58,
715
692
  'QuirksModeIssue::LimitedQuirksMode': 59,
716
693
  DeprecationIssue: 60,
694
+ 'CorsIssue::PreflightAllowPrivateNetworkError': 61,
717
695
  };
718
696
 
719
697
  // TODO(crbug.com/1167717): Make this a const enum again
@@ -1019,7 +1019,7 @@
1019
1019
  "entrypoints/inspector_main/RenderingOptions.ts | showsLayerBordersOrangeoliveAnd": {
1020
1020
  "message": "Shows layer borders (orange/olive) and tiles (cyan)."
1021
1021
  },
1022
- "entrypoints/js_app/JsMain.ts | main": {
1022
+ "entrypoints/js_app/js_app.ts | main": {
1023
1023
  "message": "Main"
1024
1024
  },
1025
1025
  "entrypoints/main/main-meta.ts | asAuthored": {
@@ -1208,40 +1208,40 @@
1208
1208
  "entrypoints/main/MainImpl.ts | undockIntoSeparateWindow": {
1209
1209
  "message": "Undock into separate window"
1210
1210
  },
1211
- "entrypoints/node_app/node_app-meta.ts | node": {
1212
- "message": "Node"
1211
+ "entrypoints/node_app/node_app.ts | connection": {
1212
+ "message": "Connection"
1213
1213
  },
1214
- "entrypoints/node_app/node_app-meta.ts | showNode": {
1214
+ "entrypoints/node_app/node_app.ts | networkTitle": {
1215
1215
  "message": "Node"
1216
1216
  },
1217
- "entrypoints/node_main/node_main-meta.ts | connection": {
1218
- "message": "Connection"
1219
- },
1220
- "entrypoints/node_main/node_main-meta.ts | node": {
1217
+ "entrypoints/node_app/node_app.ts | node": {
1221
1218
  "message": "node"
1222
1219
  },
1223
- "entrypoints/node_main/node_main-meta.ts | showConnection": {
1220
+ "entrypoints/node_app/node_app.ts | showConnection": {
1224
1221
  "message": "Show Connection"
1225
1222
  },
1226
- "entrypoints/node_main/NodeConnectionsPanel.ts | addConnection": {
1223
+ "entrypoints/node_app/node_app.ts | showNode": {
1224
+ "message": "Node"
1225
+ },
1226
+ "entrypoints/node_app/NodeConnectionsPanel.ts | addConnection": {
1227
1227
  "message": "Add connection"
1228
1228
  },
1229
- "entrypoints/node_main/NodeConnectionsPanel.ts | networkAddressEgLocalhost": {
1229
+ "entrypoints/node_app/NodeConnectionsPanel.ts | networkAddressEgLocalhost": {
1230
1230
  "message": "Network address (e.g. localhost:9229)"
1231
1231
  },
1232
- "entrypoints/node_main/NodeConnectionsPanel.ts | noConnectionsSpecified": {
1232
+ "entrypoints/node_app/NodeConnectionsPanel.ts | noConnectionsSpecified": {
1233
1233
  "message": "No connections specified"
1234
1234
  },
1235
- "entrypoints/node_main/NodeConnectionsPanel.ts | nodejsDebuggingGuide": {
1235
+ "entrypoints/node_app/NodeConnectionsPanel.ts | nodejsDebuggingGuide": {
1236
1236
  "message": "Node.js debugging guide"
1237
1237
  },
1238
- "entrypoints/node_main/NodeConnectionsPanel.ts | specifyNetworkEndpointAnd": {
1238
+ "entrypoints/node_app/NodeConnectionsPanel.ts | specifyNetworkEndpointAnd": {
1239
1239
  "message": "Specify network endpoint and DevTools will connect to it automatically. Read {PH1} to learn more."
1240
1240
  },
1241
- "entrypoints/node_main/NodeMain.ts | main": {
1241
+ "entrypoints/node_app/NodeMain.ts | main": {
1242
1242
  "message": "Main"
1243
1243
  },
1244
- "entrypoints/node_main/NodeMain.ts | nodejsS": {
1244
+ "entrypoints/node_app/NodeMain.ts | nodejsS": {
1245
1245
  "message": "Node.js: {PH1}"
1246
1246
  },
1247
1247
  "entrypoints/worker_app/WorkerMain.ts | main": {
@@ -1340,8 +1340,8 @@
1340
1340
  "models/issues_manager/CorsIssue.ts | CORS": {
1341
1341
  "message": "Cross-Origin Resource Sharing (CORS)"
1342
1342
  },
1343
- "models/issues_manager/CorsIssue.ts | corsForPrivateNetworksRfc": {
1344
- "message": "CORS for private networks (RFC1918)"
1343
+ "models/issues_manager/CorsIssue.ts | corsPrivateNetworkAccess": {
1344
+ "message": "Private Network Access"
1345
1345
  },
1346
1346
  "models/issues_manager/CrossOriginEmbedderPolicyIssue.ts | coopAndCoep": {
1347
1347
  "message": "COOP and COEP"
@@ -2498,9 +2498,6 @@
2498
2498
  "panels/application/BackForwardCacheStrings.ts | notMainFrame": {
2499
2499
  "message": "Navigation happened in a frame other than the main frame."
2500
2500
  },
2501
- "panels/application/BackForwardCacheStrings.ts | optInUnloadHeaderNotPresent": {
2502
- "message": "The page has unload handler without the back/forward cache opt-in header."
2503
- },
2504
2501
  "panels/application/BackForwardCacheStrings.ts | outstandingIndexedDBTransaction": {
2505
2502
  "message": "Page with ongoing indexed DB transactions are not currently eligible for back/forward cache."
2506
2503
  },
@@ -2645,20 +2642,20 @@
2645
2642
  "panels/application/BackForwardCacheView.ts | backForwardCacheTitle": {
2646
2643
  "message": "Back/forward cache"
2647
2644
  },
2648
- "panels/application/BackForwardCacheView.ts | bfcacheStatus": {
2649
- "message": "Back/forward cache Status"
2650
- },
2651
2645
  "panels/application/BackForwardCacheView.ts | circumstantial": {
2652
2646
  "message": "Not Actionable"
2653
2647
  },
2654
2648
  "panels/application/BackForwardCacheView.ts | circumstantialExplanation": {
2655
2649
  "message": "These reasons are not actionable i.e. caching was prevented by something outside of the direct control of the page."
2656
2650
  },
2651
+ "panels/application/BackForwardCacheView.ts | learnMore": {
2652
+ "message": "Learn more: back/forward cache eligibility"
2653
+ },
2657
2654
  "panels/application/BackForwardCacheView.ts | mainFrame": {
2658
2655
  "message": "Main Frame"
2659
2656
  },
2660
2657
  "panels/application/BackForwardCacheView.ts | normalNavigation": {
2661
- "message": "Normal navigation (Not restored from back/forward cache)"
2658
+ "message": "Not served from back/forward cache: to trigger back/forward cache, use Chrome's back/forward buttons, or use the test button below to automatically navigate away and back."
2662
2659
  },
2663
2660
  "panels/application/BackForwardCacheView.ts | pageSupportNeeded": {
2664
2661
  "message": "Actionable"
@@ -2667,10 +2664,13 @@
2667
2664
  "message": "These reasons are actionable i.e. they can be cleaned up to make the page eligible for back/forward cache."
2668
2665
  },
2669
2666
  "panels/application/BackForwardCacheView.ts | restoredFromBFCache": {
2670
- "message": "Restored from back/forward cache"
2667
+ "message": "Successfully served from back/forward cache."
2668
+ },
2669
+ "panels/application/BackForwardCacheView.ts | runningTest": {
2670
+ "message": "Running test"
2671
2671
  },
2672
2672
  "panels/application/BackForwardCacheView.ts | runTest": {
2673
- "message": "Run Test"
2673
+ "message": "Test back/forward cache"
2674
2674
  },
2675
2675
  "panels/application/BackForwardCacheView.ts | supportPending": {
2676
2676
  "message": "Pending Support"
@@ -2682,10 +2682,10 @@
2682
2682
  "message": "unavailable"
2683
2683
  },
2684
2684
  "panels/application/BackForwardCacheView.ts | unknown": {
2685
- "message": "unknown"
2685
+ "message": "Unknown Status"
2686
2686
  },
2687
2687
  "panels/application/BackForwardCacheView.ts | url": {
2688
- "message": "URL"
2688
+ "message": "URL:"
2689
2689
  },
2690
2690
  "panels/application/BackgroundServiceView.ts | backgroundFetch": {
2691
2691
  "message": "Background Fetch"
@@ -6383,6 +6383,9 @@
6383
6383
  "panels/network/NetworkConfigView.ts | caching": {
6384
6384
  "message": "Caching"
6385
6385
  },
6386
+ "panels/network/NetworkConfigView.ts | clientHintsStatusText": {
6387
+ "message": "User agent updated."
6388
+ },
6386
6389
  "panels/network/NetworkConfigView.ts | custom": {
6387
6390
  "message": "Custom..."
6388
6391
  },
@@ -11402,6 +11405,9 @@
11402
11405
  "ui/components/panel_feedback/PanelFeedback.ts | videoAndDocumentation": {
11403
11406
  "message": "Video and documentation"
11404
11407
  },
11408
+ "ui/components/panel_feedback/PreviewToggle.ts | previewTextFeedbackLink": {
11409
+ "message": "Send us your feedback."
11410
+ },
11405
11411
  "ui/components/request_link_icon/RequestLinkIcon.ts | clickToShowRequestInTheNetwork": {
11406
11412
  "message": "Click to open the network panel and show request for URL: {url}"
11407
11413
  },
@@ -11690,15 +11696,6 @@
11690
11696
  "ui/legacy/components/object_ui/CustomPreviewComponent.ts | showAsJavascriptObject": {
11691
11697
  "message": "Show as JavaScript object"
11692
11698
  },
11693
- "ui/legacy/components/object_ui/JavaScriptAutocomplete.ts | keys": {
11694
- "message": "Keys"
11695
- },
11696
- "ui/legacy/components/object_ui/JavaScriptAutocomplete.ts | keywords": {
11697
- "message": "keywords"
11698
- },
11699
- "ui/legacy/components/object_ui/JavaScriptAutocomplete.ts | lexicalScopeVariables": {
11700
- "message": "Lexical scope variables"
11701
- },
11702
11699
  "ui/legacy/components/object_ui/ObjectPropertiesSection.ts | collapseChildren": {
11703
11700
  "message": "Collapse children"
11704
11701
  },
@@ -11963,9 +11960,6 @@
11963
11960
  "ui/legacy/components/source_frame/XMLView.ts | find": {
11964
11961
  "message": "Find"
11965
11962
  },
11966
- "ui/legacy/components/text_editor/CodeMirrorTextEditor.ts | codeEditor": {
11967
- "message": "Code editor"
11968
- },
11969
11963
  "ui/legacy/components/utils/ImagePreview.ts | currentSource": {
11970
11964
  "message": "Current source:"
11971
11965
  },
@@ -12074,6 +12068,12 @@
12074
12068
  "ui/legacy/InspectorView.ts | drawer": {
12075
12069
  "message": "Tool drawer"
12076
12070
  },
12071
+ "ui/legacy/InspectorView.ts | drawerHidden": {
12072
+ "message": "Drawer hidden"
12073
+ },
12074
+ "ui/legacy/InspectorView.ts | drawerShown": {
12075
+ "message": "Drawer shown"
12076
+ },
12077
12077
  "ui/legacy/InspectorView.ts | mainToolbar": {
12078
12078
  "message": "Main toolbar"
12079
12079
  },