chrome-devtools-frontend 1.0.950971 → 1.0.952403

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 (401) hide show
  1. package/config/gni/devtools_grd_files.gni +6 -3
  2. package/extension-api/ExtensionAPI.d.ts +1 -1
  3. package/front_end/.eslintrc.js +6 -0
  4. package/front_end/Tests.js +10 -0
  5. package/front_end/core/common/App.ts +0 -3
  6. package/front_end/core/common/AppProvider.ts +0 -3
  7. package/front_end/core/common/JavaScriptMetaData.ts +0 -3
  8. package/front_end/core/common/QueryParamHandler.ts +0 -3
  9. package/front_end/core/common/Runnable.ts +0 -3
  10. package/front_end/core/common/SimpleHistoryManager.ts +0 -3
  11. package/front_end/core/host/UserMetrics.ts +2 -1
  12. package/front_end/core/i18n/locales/en-US.json +186 -183
  13. package/front_end/core/i18n/locales/en-XL.json +186 -183
  14. package/front_end/core/root/Runtime.ts +4 -12
  15. package/front_end/core/sdk/CSSRule.ts +1 -1
  16. package/front_end/core/sdk/DOMModel.ts +12 -37
  17. package/front_end/core/sdk/OverlayModel.ts +18 -34
  18. package/front_end/core/sdk/OverlayPersistentHighlighter.ts +0 -12
  19. package/front_end/core/sdk/PageResourceLoader.ts +2 -1
  20. package/front_end/core/sdk/RuntimeModel.ts +0 -1
  21. package/front_end/core/sdk/SourceMap.ts +1 -1
  22. package/front_end/core/sdk/TracingManager.ts +0 -3
  23. package/front_end/entrypoints/formatter_worker/AcornTokenizer.ts +39 -39
  24. package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +54 -54
  25. package/front_end/entrypoints/formatter_worker/ESTreeWalker.ts +20 -20
  26. package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.ts +54 -54
  27. package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +145 -144
  28. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +40 -40
  29. package/front_end/entrypoints/heap_snapshot_worker/AllocationProfile.ts +65 -70
  30. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +203 -204
  31. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotLoader.ts +109 -108
  32. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.ts +18 -18
  33. package/front_end/entrypoints/inspector_main/InspectorMain.ts +30 -30
  34. package/front_end/entrypoints/inspector_main/RenderingOptions.ts +25 -25
  35. package/front_end/entrypoints/main/ExecutionContextSelector.ts +52 -55
  36. package/front_end/entrypoints/main/MainImpl.ts +49 -49
  37. package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +43 -43
  38. package/front_end/entrypoints/node_app/NodeMain.ts +38 -38
  39. package/front_end/generated/InspectorBackendCommands.js +5 -1
  40. package/front_end/generated/protocol.d.ts +16 -0
  41. package/front_end/legacy/legacy-defs.d.ts +0 -21
  42. package/front_end/models/bindings/CSSWorkspaceBinding.ts +0 -3
  43. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +1 -2
  44. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -4
  45. package/front_end/models/bindings/FileUtils.ts +0 -4
  46. package/front_end/models/bindings/IgnoreListManager.ts +1 -2
  47. package/front_end/models/bindings/NetworkProject.ts +1 -2
  48. package/front_end/models/extensions/ExtensionAPI.ts +2 -2
  49. package/front_end/models/extensions/ExtensionTraceProvider.ts +0 -3
  50. package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +1 -1
  51. package/front_end/models/issues_manager/ClientHintIssue.ts +95 -0
  52. package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +6 -6
  53. package/front_end/models/issues_manager/ContrastCheckTrigger.ts +15 -15
  54. package/front_end/models/issues_manager/CorsIssue.ts +9 -9
  55. package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +5 -5
  56. package/front_end/models/issues_manager/DeprecationIssue.ts +7 -7
  57. package/front_end/models/issues_manager/GenericIssue.ts +5 -5
  58. package/front_end/models/issues_manager/HeavyAdIssue.ts +5 -5
  59. package/front_end/models/issues_manager/Issue.ts +10 -10
  60. package/front_end/models/issues_manager/IssueResolver.ts +11 -10
  61. package/front_end/models/issues_manager/IssuesManager.ts +61 -56
  62. package/front_end/models/issues_manager/LowTextContrastIssue.ts +4 -4
  63. package/front_end/models/issues_manager/MixedContentIssue.ts +7 -7
  64. package/front_end/models/issues_manager/NavigatorUserAgentIssue.ts +7 -7
  65. package/front_end/models/issues_manager/QuirksModeIssue.ts +4 -4
  66. package/front_end/models/issues_manager/SameSiteCookieIssue.ts +17 -18
  67. package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +5 -5
  68. package/front_end/models/issues_manager/SourceFrameIssuesManager.ts +32 -31
  69. package/front_end/models/issues_manager/TrustedWebActivityIssue.ts +5 -5
  70. package/front_end/models/issues_manager/WasmCrossOriginModuleSharingIssue.ts +5 -5
  71. package/front_end/models/issues_manager/descriptions/clientHintMetaTagAllowListInvalidOrigin.md +4 -0
  72. package/front_end/models/issues_manager/descriptions/clientHintMetaTagModifiedHTML.md +4 -0
  73. package/front_end/models/issues_manager/issues_manager.ts +2 -0
  74. package/front_end/models/timeline_model/TimelineModel.ts +1 -1
  75. package/front_end/models/timeline_model/TracingLayerTree.ts +0 -1
  76. package/front_end/panels/accessibility/ARIAMetadata.ts +0 -1
  77. package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +2 -2
  78. package/front_end/panels/accessibility/AccessibilityNodeView.ts +1 -2
  79. package/front_end/panels/animation/AnimationTimeline.ts +0 -1
  80. package/front_end/panels/application/ApplicationPanelCacheSection.ts +3 -4
  81. package/front_end/panels/application/ServiceWorkerUpdateCycleView.ts +0 -2
  82. package/front_end/panels/application/StorageView.ts +2 -6
  83. package/front_end/panels/application/{BackForwardCacheStrings.ts → components/BackForwardCacheStrings.ts} +2 -2
  84. package/front_end/panels/application/{BackForwardCacheView.ts → components/BackForwardCacheView.ts} +96 -62
  85. package/front_end/panels/application/components/EndpointsGrid.ts +12 -12
  86. package/front_end/panels/application/components/FrameDetailsView.ts +108 -110
  87. package/front_end/panels/application/components/OriginTrialTreeView.ts +45 -45
  88. package/front_end/panels/application/components/PermissionsPolicySection.ts +19 -19
  89. package/front_end/panels/application/components/ReportsGrid.ts +30 -30
  90. package/front_end/panels/application/components/StackTrace.ts +48 -47
  91. package/front_end/panels/application/components/TrustTokensView.ts +31 -31
  92. package/front_end/panels/application/{backForwardCacheView.css → components/backForwardCacheView.css} +9 -0
  93. package/front_end/panels/application/components/components.ts +2 -0
  94. package/front_end/panels/console/ConsoleView.ts +1 -1
  95. package/front_end/panels/console/ConsoleViewMessage.ts +1 -25
  96. package/front_end/panels/console/consoleView.css +5 -0
  97. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +41 -52
  98. package/front_end/panels/css_overview/CSSOverviewController.ts +2 -2
  99. package/front_end/panels/css_overview/CSSOverviewPanel.ts +18 -27
  100. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +2 -2
  101. package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +6 -6
  102. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +4 -4
  103. package/front_end/panels/elements/ComputedStyleModel.ts +2 -2
  104. package/front_end/panels/elements/ElementsPanel.ts +1 -5
  105. package/front_end/panels/elements/ElementsTreeElement.ts +2 -6
  106. package/front_end/panels/elements/ElementsTreeOutline.ts +2 -2
  107. package/front_end/panels/elements/StylesSidebarPane.ts +1 -1
  108. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +17 -17
  109. package/front_end/panels/elements/components/AdornerManager.ts +21 -21
  110. package/front_end/panels/elements/components/AdornerSettingsPane.ts +14 -14
  111. package/front_end/panels/elements/components/CSSQuery.ts +16 -16
  112. package/front_end/panels/elements/components/ComputedStyleProperty.ts +14 -14
  113. package/front_end/panels/elements/components/ComputedStyleTrace.ts +15 -15
  114. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +78 -78
  115. package/front_end/panels/elements/components/ElementsPanelLink.ts +16 -16
  116. package/front_end/panels/elements/components/LayoutPane.ts +47 -47
  117. package/front_end/panels/elements/components/NodeText.ts +18 -18
  118. package/front_end/panels/elements/components/QueryContainer.ts +40 -40
  119. package/front_end/panels/elements/components/StylePropertyEditor.ts +18 -18
  120. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +4 -4
  121. package/front_end/panels/event_listeners/EventListenersUtils.ts +2 -1
  122. package/front_end/panels/issues/AffectedBlockedByResponseView.ts +4 -4
  123. package/front_end/panels/issues/AffectedCookiesView.ts +4 -5
  124. package/front_end/panels/issues/AffectedDirectivesView.ts +19 -19
  125. package/front_end/panels/issues/AffectedDocumentsInQuirksModeView.ts +7 -8
  126. package/front_end/panels/issues/AffectedElementsView.ts +4 -4
  127. package/front_end/panels/issues/AffectedElementsWithLowContrastView.ts +7 -8
  128. package/front_end/panels/issues/AffectedHeavyAdView.ts +8 -8
  129. package/front_end/panels/issues/AffectedResourcesView.ts +25 -26
  130. package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +8 -8
  131. package/front_end/panels/issues/AffectedSourcesView.ts +4 -4
  132. package/front_end/panels/issues/AffectedTrustedWebActivityIssueDetailsView.ts +4 -4
  133. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +17 -17
  134. package/front_end/panels/issues/CSPViolationsListView.ts +22 -23
  135. package/front_end/panels/issues/CSPViolationsView.ts +17 -17
  136. package/front_end/panels/issues/ComboBoxOfCheckBoxes.ts +13 -13
  137. package/front_end/panels/issues/CorsIssueDetailsView.ts +23 -23
  138. package/front_end/panels/issues/GenericIssueDetailsView.ts +4 -4
  139. package/front_end/panels/issues/HiddenIssuesRow.ts +7 -7
  140. package/front_end/panels/issues/IssueAggregator.ts +95 -95
  141. package/front_end/panels/issues/IssueKindView.ts +14 -14
  142. package/front_end/panels/issues/IssueView.ts +98 -98
  143. package/front_end/panels/issues/IssuesPane.ts +102 -102
  144. package/front_end/panels/issues/WasmCrossOriginModuleSharingAffectedResourcesView.ts +5 -5
  145. package/front_end/panels/issues/components/HideIssuesMenu.ts +10 -10
  146. package/front_end/panels/layer_viewer/Layers3DView.ts +3 -9
  147. package/front_end/panels/lighthouse/LighthouseController.ts +4 -5
  148. package/front_end/panels/media/PlayerListView.ts +160 -97
  149. package/front_end/panels/media/PlayerMessagesView.ts +1 -0
  150. package/front_end/panels/media/TickingFlameChart.ts +1 -2
  151. package/front_end/panels/media/playerListView.css +58 -0
  152. package/front_end/panels/network/NetworkLogView.ts +2 -6
  153. package/front_end/panels/network/NetworkLogViewColumns.ts +1 -1
  154. package/front_end/panels/network/NetworkWaterfallColumn.ts +2 -4
  155. package/front_end/panels/network/components/RequestTrustTokensView.ts +40 -40
  156. package/front_end/panels/network/components/WebBundleInfoView.ts +9 -9
  157. package/front_end/panels/performance_monitor/PerformanceMonitor.ts +92 -37
  158. package/front_end/panels/performance_monitor/performanceMonitor.css +32 -0
  159. package/front_end/panels/profiler/HeapProfileView.ts +1 -1
  160. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +0 -1
  161. package/front_end/panels/profiler/HeapSnapshotView.ts +1 -2
  162. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +2 -2
  163. package/front_end/panels/search/SearchConfig.ts +0 -6
  164. package/front_end/panels/security/SecurityModel.ts +2 -4
  165. package/front_end/panels/security/SecurityPanel.ts +2 -2
  166. package/front_end/panels/settings/KeybindsSettingsTab.ts +4 -0
  167. package/front_end/panels/settings/components/SyncSection.ts +14 -14
  168. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +96 -96
  169. package/front_end/panels/sources/BreakpointEditDialog.ts +4 -3
  170. package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +2 -2
  171. package/front_end/panels/sources/NavigatorView.ts +4 -10
  172. package/front_end/panels/sources/ScopeChainSidebarPane.ts +2 -3
  173. package/front_end/panels/sources/SourceMapNamesResolver.ts +3 -3
  174. package/front_end/panels/sources/SourcesPanel.ts +1 -3
  175. package/front_end/panels/sources/SourcesView.ts +0 -3
  176. package/front_end/panels/sources/TabbedEditorContainer.ts +1 -4
  177. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +2 -5
  178. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +0 -1
  179. package/front_end/panels/timeline/TimelineFlameChartView.ts +1 -2
  180. package/front_end/panels/timeline/TimelineLoader.ts +0 -3
  181. package/front_end/panels/timeline/TimelinePanel.ts +2 -3
  182. package/front_end/panels/timeline/TimelineTreeView.ts +1 -1
  183. package/front_end/panels/timeline/TimelineUIUtils.ts +1 -1
  184. package/front_end/panels/timeline/components/WebVitalsLane.ts +77 -76
  185. package/front_end/panels/timeline/components/WebVitalsTimeline.ts +133 -133
  186. package/front_end/panels/timeline/components/WebVitalsTooltip.ts +9 -9
  187. package/front_end/panels/webauthn/WebauthnPane.ts +203 -205
  188. package/front_end/third_party/codemirror.next/bundle.ts +3 -3
  189. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  190. package/front_end/third_party/codemirror.next/chunk/markdown.js +2 -1
  191. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +10 -1
  192. package/front_end/third_party/codemirror.next/codemirror.next.js +2 -1
  193. package/front_end/third_party/codemirror.next/package.json +3 -3
  194. package/front_end/third_party/diff/DiffWrapper.ts +7 -0
  195. package/front_end/third_party/puppeteer/package/README.md +11 -11
  196. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api-docs-entry.d.ts +4 -5
  197. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js +2 -2
  198. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js.map +1 -1
  199. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Browser.d.ts +4 -6
  200. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.d.ts +1 -2
  201. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Connection.d.ts +1 -4
  202. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Coverage.d.ts +1 -4
  203. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.d.ts +9 -7
  204. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.d.ts.map +1 -1
  205. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.js +21 -12
  206. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.js.map +1 -1
  207. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Dialog.d.ts +1 -3
  208. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EvalTypes.d.ts +1 -2
  209. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ExecutionContext.d.ts +3 -5
  210. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.d.ts +1 -3
  211. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.d.ts +8 -10
  212. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js +3 -3
  213. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js.map +1 -1
  214. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts +50 -11
  215. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts.map +1 -1
  216. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js +70 -33
  217. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js.map +1 -1
  218. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts +12 -5
  219. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts.map +1 -1
  220. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js +25 -5
  221. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js.map +1 -1
  222. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Input.d.ts +2 -4
  223. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.d.ts +39 -6
  224. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.d.ts.map +1 -1
  225. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.js +36 -0
  226. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.js.map +1 -1
  227. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.d.ts +3 -4
  228. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.d.ts.map +1 -1
  229. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.js +2 -1
  230. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.js.map +1 -1
  231. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.d.ts +46 -0
  232. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.d.ts.map +1 -0
  233. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.js +124 -0
  234. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.js.map +1 -0
  235. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.d.ts +27 -10
  236. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.d.ts.map +1 -1
  237. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.js +144 -74
  238. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.js.map +1 -1
  239. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Puppeteer.d.ts +5 -6
  240. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.d.ts +1 -2
  241. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Target.d.ts +4 -6
  242. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WebWorker.d.ts +3 -5
  243. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.d.ts +4 -5
  244. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.d.ts.map +1 -1
  245. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.js +43 -17
  246. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.js.map +1 -1
  247. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts +1 -1
  248. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.d.ts +1 -3
  249. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.d.ts.map +1 -1
  250. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js +101 -34
  251. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js.map +1 -1
  252. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.d.ts +1 -3
  253. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts +1 -2
  254. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Puppeteer.d.ts +5 -7
  255. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +1 -1
  256. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.d.ts +4 -5
  257. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js +2 -2
  258. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js.map +1 -1
  259. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts +4 -6
  260. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.js +2 -3
  261. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts +1 -2
  262. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.js +3 -5
  263. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts +1 -4
  264. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.d.ts +1 -4
  265. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.js +1 -2
  266. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts +9 -7
  267. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts.map +1 -1
  268. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js +24 -17
  269. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js.map +1 -1
  270. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.d.ts +1 -3
  271. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.d.ts +1 -2
  272. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.d.ts +3 -5
  273. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts +1 -3
  274. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts +8 -10
  275. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js +7 -8
  276. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js.map +1 -1
  277. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts +50 -11
  278. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts.map +1 -1
  279. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js +70 -34
  280. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js.map +1 -1
  281. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts +12 -5
  282. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts.map +1 -1
  283. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js +26 -7
  284. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js.map +1 -1
  285. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts +2 -4
  286. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts +39 -6
  287. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts.map +1 -1
  288. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js +38 -4
  289. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js.map +1 -1
  290. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts +3 -4
  291. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts.map +1 -1
  292. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.js +4 -4
  293. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.js.map +1 -1
  294. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.d.ts +46 -0
  295. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.d.ts.map +1 -0
  296. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.js +120 -0
  297. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.js.map +1 -0
  298. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts +27 -10
  299. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts.map +1 -1
  300. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js +144 -75
  301. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js.map +1 -1
  302. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js +12 -14
  303. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.d.ts +5 -6
  304. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.js +3 -4
  305. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts +1 -2
  306. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts +4 -6
  307. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.d.ts +3 -5
  308. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.js +1 -2
  309. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.js +3 -5
  310. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js +1 -3
  311. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js +10 -12
  312. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts +4 -5
  313. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts.map +1 -1
  314. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js +43 -20
  315. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js.map +1 -1
  316. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +1 -1
  317. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts +1 -3
  318. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts.map +1 -1
  319. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js +104 -40
  320. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js.map +1 -1
  321. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts +1 -3
  322. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts +1 -2
  323. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js +1 -2
  324. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.d.ts +5 -7
  325. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.js +1 -3
  326. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js +3 -5
  327. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.js +1 -2
  328. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node.js +1 -2
  329. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +1 -1
  330. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/web.js +1 -2
  331. package/front_end/third_party/puppeteer/package/lib/types.d.ts +173 -36
  332. package/front_end/third_party/puppeteer/package/package.json +3 -3
  333. package/front_end/ui/components/adorners/Adorner.ts +2 -2
  334. package/front_end/ui/components/buttons/Button.ts +9 -9
  335. package/front_end/ui/components/data_grid/DataGrid.ts +64 -64
  336. package/front_end/ui/components/data_grid/DataGridController.ts +22 -22
  337. package/front_end/ui/components/data_grid/DataGridUtils.ts +3 -0
  338. package/front_end/ui/components/diff_view/DiffView.ts +6 -6
  339. package/front_end/ui/components/expandable_list/ExpandableList.ts +5 -5
  340. package/front_end/ui/components/icon_button/Icon.ts +4 -4
  341. package/front_end/ui/components/icon_button/IconButton.ts +4 -4
  342. package/front_end/ui/components/issue_counter/IssueCounter.ts +3 -3
  343. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +11 -11
  344. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspector.ts +50 -50
  345. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorController.ts +6 -6
  346. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorPane.ts +4 -4
  347. package/front_end/ui/components/linear_memory_inspector/LinearMemoryNavigator.ts +12 -12
  348. package/front_end/ui/components/linear_memory_inspector/LinearMemoryValueInterpreter.ts +11 -11
  349. package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +40 -39
  350. package/front_end/ui/components/linear_memory_inspector/ValueInterpreterDisplay.ts +18 -18
  351. package/front_end/ui/components/linear_memory_inspector/ValueInterpreterSettings.ts +6 -6
  352. package/front_end/ui/components/linkifier/LinkifierImpl.ts +4 -4
  353. package/front_end/ui/components/markdown_view/MarkdownImage.ts +5 -5
  354. package/front_end/ui/components/markdown_view/MarkdownLink.ts +2 -2
  355. package/front_end/ui/components/markdown_view/MarkdownView.ts +4 -5
  356. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +2 -2
  357. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +2 -2
  358. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +4 -4
  359. package/front_end/ui/components/render_coordinator/RenderCoordinator.ts +22 -22
  360. package/front_end/ui/components/report_view/ReportView.ts +16 -16
  361. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +14 -14
  362. package/front_end/ui/components/settings/SettingCheckbox.ts +5 -5
  363. package/front_end/ui/components/survey_link/SurveyLink.ts +8 -8
  364. package/front_end/ui/components/text_editor/TextEditor.ts +9 -9
  365. package/front_end/ui/components/text_editor/cursor_tooltip.ts +7 -1
  366. package/front_end/ui/components/text_prompt/TextPrompt.ts +18 -18
  367. package/front_end/ui/components/tree_outline/TreeOutline.ts +69 -70
  368. package/front_end/ui/legacy/ContextFlavorListener.ts +0 -4
  369. package/front_end/ui/legacy/ContextMenu.ts +2 -3
  370. package/front_end/ui/legacy/InspectorView.ts +1 -1
  371. package/front_end/ui/legacy/ReportView.ts +3 -4
  372. package/front_end/ui/legacy/SearchableView.ts +14 -6
  373. package/front_end/ui/legacy/SplitWidget.ts +2 -3
  374. package/front_end/ui/legacy/SuggestBox.ts +0 -3
  375. package/front_end/ui/legacy/TextPrompt.ts +1 -1
  376. package/front_end/ui/legacy/UIUtils.ts +1 -1
  377. package/front_end/ui/legacy/XLink.ts +1 -1
  378. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +2 -2
  379. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +9 -9
  380. package/front_end/ui/legacy/components/data_grid/dataGrid.css +7 -7
  381. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +1 -1
  382. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +1 -5
  383. package/front_end/ui/legacy/components/source_frame/JSONView.ts +1 -1
  384. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +13 -13
  385. package/front_end/ui/legacy/components/source_frame/XMLView.ts +2 -2
  386. package/front_end/ui/legacy/components/utils/Linkifier.ts +2 -2
  387. package/front_end/ui/legacy/themeColors.css +2 -0
  388. package/front_end/ui/legacy/theme_support/theme_support_impl.ts +42 -4
  389. package/package.json +1 -1
  390. package/scripts/eslint_rules/lib/use_private_class_members.js +41 -0
  391. package/scripts/eslint_rules/tests/use_private_class_members_test.js +62 -0
  392. package/scripts/migration/class-fields/migrate.js +2 -3
  393. package/scripts/migration/class-fields/migrate.sh +1 -3
  394. package/scripts/migration/class-fields/package.json +1 -1
  395. package/config/gni/all_devtools_files.gni +0 -255
  396. package/scripts/build/devtools_file_hashes.py +0 -82
  397. package/scripts/devtools_run/devtools_run_cli +0 -49
  398. package/scripts/devtools_run/package.json +0 -13
  399. package/scripts/unzip.py +0 -20
  400. package/scripts/visualize_deps/jquery_svg.html +0 -57
  401. package/scripts/visualize_deps/run_visualize.js +0 -119
@@ -1322,6 +1322,9 @@
1322
1322
  "models/har/Writer.ts | writingFile": {
1323
1323
  "message": "Writing file…"
1324
1324
  },
1325
+ "models/issues_manager/ClientHintIssue.ts | clientHintsInfrastructure": {
1326
+ "message": "Client Hints Infrastructure"
1327
+ },
1325
1328
  "models/issues_manager/ContentSecurityPolicyIssue.ts | contentSecurityPolicyEval": {
1326
1329
  "message": "Content Security Policy - Eval"
1327
1330
  },
@@ -2363,411 +2366,411 @@
2363
2366
  "panels/application/AppManifestView.ts | theSpecifiedApplicationPlatform": {
2364
2367
  "message": "The specified application platform is not supported on Android"
2365
2368
  },
2366
- "panels/application/BackForwardCacheStrings.ts | appBanner": {
2369
+ "panels/application/BackgroundServiceView.ts | backgroundFetch": {
2370
+ "message": "Background Fetch"
2371
+ },
2372
+ "panels/application/BackgroundServiceView.ts | backgroundServices": {
2373
+ "message": "Background Services"
2374
+ },
2375
+ "panels/application/BackgroundServiceView.ts | backgroundSync": {
2376
+ "message": "Background Sync"
2377
+ },
2378
+ "panels/application/BackgroundServiceView.ts | clear": {
2379
+ "message": "Clear"
2380
+ },
2381
+ "panels/application/BackgroundServiceView.ts | clickTheRecordButtonSOrHitSTo": {
2382
+ "message": "Click the record button {PH1} or hit {PH2} to start recording."
2383
+ },
2384
+ "panels/application/BackgroundServiceView.ts | devtoolsWillRecordAllSActivity": {
2385
+ "message": "DevTools will record all {PH1} activity for up to 3 days, even when closed."
2386
+ },
2387
+ "panels/application/BackgroundServiceView.ts | empty": {
2388
+ "message": "empty"
2389
+ },
2390
+ "panels/application/BackgroundServiceView.ts | event": {
2391
+ "message": "Event"
2392
+ },
2393
+ "panels/application/BackgroundServiceView.ts | instanceId": {
2394
+ "message": "Instance ID"
2395
+ },
2396
+ "panels/application/BackgroundServiceView.ts | learnMore": {
2397
+ "message": "Learn more"
2398
+ },
2399
+ "panels/application/BackgroundServiceView.ts | noMetadataForThisEvent": {
2400
+ "message": "No metadata for this event"
2401
+ },
2402
+ "panels/application/BackgroundServiceView.ts | notifications": {
2403
+ "message": "Notifications"
2404
+ },
2405
+ "panels/application/BackgroundServiceView.ts | origin": {
2406
+ "message": "Origin"
2407
+ },
2408
+ "panels/application/BackgroundServiceView.ts | paymentHandler": {
2409
+ "message": "Payment Handler"
2410
+ },
2411
+ "panels/application/BackgroundServiceView.ts | periodicBackgroundSync": {
2412
+ "message": "Periodic Background Sync"
2413
+ },
2414
+ "panels/application/BackgroundServiceView.ts | pushMessaging": {
2415
+ "message": "Push Messaging"
2416
+ },
2417
+ "panels/application/BackgroundServiceView.ts | recordingSActivity": {
2418
+ "message": "Recording {PH1} activity..."
2419
+ },
2420
+ "panels/application/BackgroundServiceView.ts | saveEvents": {
2421
+ "message": "Save events"
2422
+ },
2423
+ "panels/application/BackgroundServiceView.ts | selectAnEntryToViewMetadata": {
2424
+ "message": "Select an entry to view metadata"
2425
+ },
2426
+ "panels/application/BackgroundServiceView.ts | showEventsFromOtherDomains": {
2427
+ "message": "Show events from other domains"
2428
+ },
2429
+ "panels/application/BackgroundServiceView.ts | startRecordingEvents": {
2430
+ "message": "Start recording events"
2431
+ },
2432
+ "panels/application/BackgroundServiceView.ts | stopRecordingEvents": {
2433
+ "message": "Stop recording events"
2434
+ },
2435
+ "panels/application/BackgroundServiceView.ts | swScope": {
2436
+ "message": "Service Worker Scope"
2437
+ },
2438
+ "panels/application/BackgroundServiceView.ts | timestamp": {
2439
+ "message": "Timestamp"
2440
+ },
2441
+ "panels/application/components/BackForwardCacheStrings.ts | appBanner": {
2367
2442
  "message": "Pages that requested an AppBanner are not currently eligible for back/forward cache."
2368
2443
  },
2369
- "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabled": {
2444
+ "panels/application/components/BackForwardCacheStrings.ts | backForwardCacheDisabled": {
2370
2445
  "message": "Back/forward cache is disabled by flags. Visit chrome://flags/#back-forward-cache to enable it locally on this device."
2371
2446
  },
2372
- "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledByCommandLine": {
2447
+ "panels/application/components/BackForwardCacheStrings.ts | backForwardCacheDisabledByCommandLine": {
2373
2448
  "message": "Back/forward cache is disabled by the command line."
2374
2449
  },
2375
- "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledByLowMemory": {
2450
+ "panels/application/components/BackForwardCacheStrings.ts | backForwardCacheDisabledByLowMemory": {
2376
2451
  "message": "Back/forward cache is disabled due to insufficient memory."
2377
2452
  },
2378
- "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledForDelegate": {
2453
+ "panels/application/components/BackForwardCacheStrings.ts | backForwardCacheDisabledForDelegate": {
2379
2454
  "message": "Back/forward cache is not supported by delegate."
2380
2455
  },
2381
- "panels/application/BackForwardCacheStrings.ts | backForwardCacheDisabledForPrerender": {
2456
+ "panels/application/components/BackForwardCacheStrings.ts | backForwardCacheDisabledForPrerender": {
2382
2457
  "message": "Back/forward cache is disabled for prerenderer."
2383
2458
  },
2384
- "panels/application/BackForwardCacheStrings.ts | broadcastChannel": {
2459
+ "panels/application/components/BackForwardCacheStrings.ts | broadcastChannel": {
2385
2460
  "message": "The page cannot be cached because it has a BroadcastChannel instance with registered listeners."
2386
2461
  },
2387
- "panels/application/BackForwardCacheStrings.ts | cacheControlNoStore": {
2462
+ "panels/application/components/BackForwardCacheStrings.ts | cacheControlNoStore": {
2388
2463
  "message": "Pages with cache-control:no-store header cannot enter back/forward cache."
2389
2464
  },
2390
- "panels/application/BackForwardCacheStrings.ts | cacheFlushed": {
2465
+ "panels/application/components/BackForwardCacheStrings.ts | cacheFlushed": {
2391
2466
  "message": "The cache was intentionally cleared."
2392
2467
  },
2393
- "panels/application/BackForwardCacheStrings.ts | cacheLimit": {
2468
+ "panels/application/components/BackForwardCacheStrings.ts | cacheLimit": {
2394
2469
  "message": "The page was evicted from the cache to allow another page to be cached."
2395
2470
  },
2396
- "panels/application/BackForwardCacheStrings.ts | containsPlugins": {
2471
+ "panels/application/components/BackForwardCacheStrings.ts | containsPlugins": {
2397
2472
  "message": "Pages containing plugins are not currently eligible for back/forward cache."
2398
2473
  },
2399
- "panels/application/BackForwardCacheStrings.ts | contentFileChooser": {
2474
+ "panels/application/components/BackForwardCacheStrings.ts | contentFileChooser": {
2400
2475
  "message": "Pages that use FileChooser API are not eligible for back/forward cache."
2401
2476
  },
2402
- "panels/application/BackForwardCacheStrings.ts | contentFileSystemAccess": {
2477
+ "panels/application/components/BackForwardCacheStrings.ts | contentFileSystemAccess": {
2403
2478
  "message": "Pages that use File System Access API are not eligible for back/forward cache."
2404
2479
  },
2405
- "panels/application/BackForwardCacheStrings.ts | contentMediaDevicesDispatcherHost": {
2480
+ "panels/application/components/BackForwardCacheStrings.ts | contentMediaDevicesDispatcherHost": {
2406
2481
  "message": "Pages that use Media Device Dispatcher are not eligible for back/forward cache."
2407
2482
  },
2408
- "panels/application/BackForwardCacheStrings.ts | contentMediaPlay": {
2483
+ "panels/application/components/BackForwardCacheStrings.ts | contentMediaPlay": {
2409
2484
  "message": "A media player was playing upon navigating away."
2410
2485
  },
2411
- "panels/application/BackForwardCacheStrings.ts | contentMediaSession": {
2486
+ "panels/application/components/BackForwardCacheStrings.ts | contentMediaSession": {
2412
2487
  "message": "Pages that use MediaSession API and set a playback state are not eligible for back/forward cache."
2413
2488
  },
2414
- "panels/application/BackForwardCacheStrings.ts | contentMediaSessionService": {
2489
+ "panels/application/components/BackForwardCacheStrings.ts | contentMediaSessionService": {
2415
2490
  "message": "Pages that use MediaSession API and set action handlers are not eligible for back/forward cache."
2416
2491
  },
2417
- "panels/application/BackForwardCacheStrings.ts | contentSecurityHandler": {
2492
+ "panels/application/components/BackForwardCacheStrings.ts | contentSecurityHandler": {
2418
2493
  "message": "Pages that use SecurityHandler are not eligible for back/forward cache."
2419
2494
  },
2420
- "panels/application/BackForwardCacheStrings.ts | contentSerial": {
2495
+ "panels/application/components/BackForwardCacheStrings.ts | contentSerial": {
2421
2496
  "message": "Pages that use Serial API are not eligible for back/forward cache."
2422
2497
  },
2423
- "panels/application/BackForwardCacheStrings.ts | contentWebAuthenticationAPI": {
2498
+ "panels/application/components/BackForwardCacheStrings.ts | contentWebAuthenticationAPI": {
2424
2499
  "message": "Pages that use WebAuthetication API are not eligible for back/forward cache."
2425
2500
  },
2426
- "panels/application/BackForwardCacheStrings.ts | contentWebBluetooth": {
2501
+ "panels/application/components/BackForwardCacheStrings.ts | contentWebBluetooth": {
2427
2502
  "message": "Pages that use WebBluetooth API are not eligible for back/forward cache."
2428
2503
  },
2429
- "panels/application/BackForwardCacheStrings.ts | contentWebUSB": {
2504
+ "panels/application/components/BackForwardCacheStrings.ts | contentWebUSB": {
2430
2505
  "message": "Pages that use WebUSB API are not eligible for back/forward cache."
2431
2506
  },
2432
- "panels/application/BackForwardCacheStrings.ts | dedicatedWorkerOrWorklet": {
2507
+ "panels/application/components/BackForwardCacheStrings.ts | dedicatedWorkerOrWorklet": {
2433
2508
  "message": "Pages that use a dedicated worker or worklet are not currently eligible for back/forward cache."
2434
2509
  },
2435
- "panels/application/BackForwardCacheStrings.ts | documentLoaded": {
2510
+ "panels/application/components/BackForwardCacheStrings.ts | documentLoaded": {
2436
2511
  "message": "The document did not finish loading before navigating away."
2437
2512
  },
2438
- "panels/application/BackForwardCacheStrings.ts | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
2513
+ "panels/application/components/BackForwardCacheStrings.ts | enteredBackForwardCacheBeforeServiceWorkerHostAdded": {
2439
2514
  "message": "A service worker was activated while the page was in back/forward cache."
2440
2515
  },
2441
- "panels/application/BackForwardCacheStrings.ts | foregroundCacheLimit": {
2516
+ "panels/application/components/BackForwardCacheStrings.ts | foregroundCacheLimit": {
2442
2517
  "message": "The page was evicted from the cache to allow another page to be cached."
2443
2518
  },
2444
- "panels/application/BackForwardCacheStrings.ts | grantedMediaStreamAccess": {
2519
+ "panels/application/components/BackForwardCacheStrings.ts | grantedMediaStreamAccess": {
2445
2520
  "message": "Pages that have granted media stream access are not currently eligible for back/forward cache."
2446
2521
  },
2447
- "panels/application/BackForwardCacheStrings.ts | haveInnerContents": {
2522
+ "panels/application/components/BackForwardCacheStrings.ts | haveInnerContents": {
2448
2523
  "message": "Pages that use portals are not currently eligible for back/forward cache."
2449
2524
  },
2450
- "panels/application/BackForwardCacheStrings.ts | HTTPMethodNotGET": {
2525
+ "panels/application/components/BackForwardCacheStrings.ts | HTTPMethodNotGET": {
2451
2526
  "message": "Only pages loaded via a GET request are eligible for back/forward cache."
2452
2527
  },
2453
- "panels/application/BackForwardCacheStrings.ts | HTTPStatusNotOK": {
2528
+ "panels/application/components/BackForwardCacheStrings.ts | HTTPStatusNotOK": {
2454
2529
  "message": "Only pages with a status code of 2XX can be cached."
2455
2530
  },
2456
- "panels/application/BackForwardCacheStrings.ts | idleManager": {
2531
+ "panels/application/components/BackForwardCacheStrings.ts | idleManager": {
2457
2532
  "message": "Pages that use IdleManager are not currently eligible for back/forward cache."
2458
2533
  },
2459
- "panels/application/BackForwardCacheStrings.ts | indexedDBConnection": {
2534
+ "panels/application/components/BackForwardCacheStrings.ts | indexedDBConnection": {
2460
2535
  "message": "Pages that have an open IndexedDB connection are not currently eligible for back/forward cache."
2461
2536
  },
2462
- "panels/application/BackForwardCacheStrings.ts | ineligibleAPI": {
2537
+ "panels/application/components/BackForwardCacheStrings.ts | ineligibleAPI": {
2463
2538
  "message": "Ineligible APIs were used."
2464
2539
  },
2465
- "panels/application/BackForwardCacheStrings.ts | injectedJavascript": {
2540
+ "panels/application/components/BackForwardCacheStrings.ts | injectedJavascript": {
2466
2541
  "message": "IPages that JavaScript is injected into by extensions are not currently eligible for back/forward cache."
2467
2542
  },
2468
- "panels/application/BackForwardCacheStrings.ts | injectedStyleSheet": {
2543
+ "panels/application/components/BackForwardCacheStrings.ts | injectedStyleSheet": {
2469
2544
  "message": "Pages that StyleSheet is injected into by extensions are not currently eligible for back/forward cache."
2470
2545
  },
2471
- "panels/application/BackForwardCacheStrings.ts | internalError": {
2546
+ "panels/application/components/BackForwardCacheStrings.ts | internalError": {
2472
2547
  "message": "Internal error."
2473
2548
  },
2474
- "panels/application/BackForwardCacheStrings.ts | JavaScriptExecution": {
2549
+ "panels/application/components/BackForwardCacheStrings.ts | JavaScriptExecution": {
2475
2550
  "message": "Chrome detected an attempt to execute JavaScript while in the cache."
2476
2551
  },
2477
- "panels/application/BackForwardCacheStrings.ts | keyboardLock": {
2552
+ "panels/application/components/BackForwardCacheStrings.ts | keyboardLock": {
2478
2553
  "message": "Pages that use Keyboard lock are not currently eligible for back/forward cache."
2479
2554
  },
2480
- "panels/application/BackForwardCacheStrings.ts | loading": {
2555
+ "panels/application/components/BackForwardCacheStrings.ts | loading": {
2481
2556
  "message": "The page did not finish loading before navigating away."
2482
2557
  },
2483
- "panels/application/BackForwardCacheStrings.ts | mainResourceHasCacheControlNoCache": {
2558
+ "panels/application/components/BackForwardCacheStrings.ts | mainResourceHasCacheControlNoCache": {
2484
2559
  "message": "Pages whose main resource has cache-control:no-cache cannot enter back/forward cache."
2485
2560
  },
2486
- "panels/application/BackForwardCacheStrings.ts | mainResourceHasCacheControlNoStore": {
2561
+ "panels/application/components/BackForwardCacheStrings.ts | mainResourceHasCacheControlNoStore": {
2487
2562
  "message": "Pages whose main resource has cache-control:no-store cannot enter back/forward cache."
2488
2563
  },
2489
- "panels/application/BackForwardCacheStrings.ts | navigationCancelledWhileRestoring": {
2564
+ "panels/application/components/BackForwardCacheStrings.ts | navigationCancelledWhileRestoring": {
2490
2565
  "message": "Navigation was cancelled before the page could be restored from back/forward cache."
2491
2566
  },
2492
- "panels/application/BackForwardCacheStrings.ts | networkExceedsBufferLimit": {
2567
+ "panels/application/components/BackForwardCacheStrings.ts | networkExceedsBufferLimit": {
2493
2568
  "message": "The page was evicted from the cache because an active network connection received too much data. Chrome limits the amount of data that a page may receive while cached."
2494
2569
  },
2495
- "panels/application/BackForwardCacheStrings.ts | networkRequestDatapipeDrainedAsBytesConsumer": {
2570
+ "panels/application/components/BackForwardCacheStrings.ts | networkRequestDatapipeDrainedAsBytesConsumer": {
2496
2571
  "message": "Pages that have inflight fetch() or XHR are not currently eligible for back/forward cache."
2497
2572
  },
2498
- "panels/application/BackForwardCacheStrings.ts | networkRequestRedirected": {
2573
+ "panels/application/components/BackForwardCacheStrings.ts | networkRequestRedirected": {
2499
2574
  "message": "The page was evicted from back/forward cache because an active network request involved a redirect."
2500
2575
  },
2501
- "panels/application/BackForwardCacheStrings.ts | networkRequestTimeout": {
2576
+ "panels/application/components/BackForwardCacheStrings.ts | networkRequestTimeout": {
2502
2577
  "message": "The page was evicted from the cache because a network connection was open too long. Chrome limits the amount of time that a page may receive data while cached."
2503
2578
  },
2504
- "panels/application/BackForwardCacheStrings.ts | noResponseHead": {
2579
+ "panels/application/components/BackForwardCacheStrings.ts | noResponseHead": {
2505
2580
  "message": "Pages that do not have a valid response head cannot enter back/forward cache."
2506
2581
  },
2507
- "panels/application/BackForwardCacheStrings.ts | notMainFrame": {
2582
+ "panels/application/components/BackForwardCacheStrings.ts | notMainFrame": {
2508
2583
  "message": "Navigation happened in a frame other than the main frame."
2509
2584
  },
2510
- "panels/application/BackForwardCacheStrings.ts | outstandingIndexedDBTransaction": {
2585
+ "panels/application/components/BackForwardCacheStrings.ts | outstandingIndexedDBTransaction": {
2511
2586
  "message": "Page with ongoing indexed DB transactions are not currently eligible for back/forward cache."
2512
2587
  },
2513
- "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestDirectSocket": {
2588
+ "panels/application/components/BackForwardCacheStrings.ts | outstandingNetworkRequestDirectSocket": {
2514
2589
  "message": "Pages with an in-flight network request are not currently eligible for back/forward cache."
2515
2590
  },
2516
- "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestFetch": {
2591
+ "panels/application/components/BackForwardCacheStrings.ts | outstandingNetworkRequestFetch": {
2517
2592
  "message": "Pages with an in-flight fetch network request are not currently eligible for back/forward cache."
2518
2593
  },
2519
- "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestOthers": {
2594
+ "panels/application/components/BackForwardCacheStrings.ts | outstandingNetworkRequestOthers": {
2520
2595
  "message": "Pages with an in-flight network request are not currently eligible for back/forward cache."
2521
2596
  },
2522
- "panels/application/BackForwardCacheStrings.ts | outstandingNetworkRequestXHR": {
2597
+ "panels/application/components/BackForwardCacheStrings.ts | outstandingNetworkRequestXHR": {
2523
2598
  "message": "Pages with an in-flight XHR network request are not currently eligible for back/forward cache."
2524
2599
  },
2525
- "panels/application/BackForwardCacheStrings.ts | paymentManager": {
2600
+ "panels/application/components/BackForwardCacheStrings.ts | paymentManager": {
2526
2601
  "message": "Pages that use PaymentManager are not currently eligible for back/forward cache."
2527
2602
  },
2528
- "panels/application/BackForwardCacheStrings.ts | pictureInPicture": {
2603
+ "panels/application/components/BackForwardCacheStrings.ts | pictureInPicture": {
2529
2604
  "message": "Pages that use Picture-in-Picture are not currently eligible for back/forward cache."
2530
2605
  },
2531
- "panels/application/BackForwardCacheStrings.ts | portal": {
2606
+ "panels/application/components/BackForwardCacheStrings.ts | portal": {
2532
2607
  "message": "Pages that use portals are not currently eligible for back/forward cache."
2533
2608
  },
2534
- "panels/application/BackForwardCacheStrings.ts | printing": {
2609
+ "panels/application/components/BackForwardCacheStrings.ts | printing": {
2535
2610
  "message": "Pages that show Printing UI are not currently eligible for back/forward cache."
2536
2611
  },
2537
- "panels/application/BackForwardCacheStrings.ts | relatedActiveContentsExist": {
2612
+ "panels/application/components/BackForwardCacheStrings.ts | relatedActiveContentsExist": {
2538
2613
  "message": "The page was opened using 'window.open()' and another tab has a reference to it, or the page opened a window."
2539
2614
  },
2540
- "panels/application/BackForwardCacheStrings.ts | rendererProcessCrashed": {
2615
+ "panels/application/components/BackForwardCacheStrings.ts | rendererProcessCrashed": {
2541
2616
  "message": "The renderer process for the page in back/forward cache crashed."
2542
2617
  },
2543
- "panels/application/BackForwardCacheStrings.ts | rendererProcessKilled": {
2618
+ "panels/application/components/BackForwardCacheStrings.ts | rendererProcessKilled": {
2544
2619
  "message": "The renderer process for the page in back/forward cache was killed."
2545
2620
  },
2546
- "panels/application/BackForwardCacheStrings.ts | requestedAudioCapturePermission": {
2621
+ "panels/application/components/BackForwardCacheStrings.ts | requestedAudioCapturePermission": {
2547
2622
  "message": "Pages that have requested audio capture permissions are not currently eligible for back/forward cache."
2548
2623
  },
2549
- "panels/application/BackForwardCacheStrings.ts | requestedBackForwardCacheBlockedSensors": {
2624
+ "panels/application/components/BackForwardCacheStrings.ts | requestedBackForwardCacheBlockedSensors": {
2550
2625
  "message": "Pages that have requested sensor permissions are not currently eligible for back/forward cache."
2551
2626
  },
2552
- "panels/application/BackForwardCacheStrings.ts | requestedBackgroundWorkPermission": {
2627
+ "panels/application/components/BackForwardCacheStrings.ts | requestedBackgroundWorkPermission": {
2553
2628
  "message": "Pages that have requested background sync or fetch permissions are not currently eligible for back/forward cache."
2554
2629
  },
2555
- "panels/application/BackForwardCacheStrings.ts | requestedMIDIPermission": {
2630
+ "panels/application/components/BackForwardCacheStrings.ts | requestedMIDIPermission": {
2556
2631
  "message": "Pages that have requested MIDI permissions are not currently eligible for back/forward cache."
2557
2632
  },
2558
- "panels/application/BackForwardCacheStrings.ts | requestedNotificationsPermission": {
2633
+ "panels/application/components/BackForwardCacheStrings.ts | requestedNotificationsPermission": {
2559
2634
  "message": "Pages that have requested notifications permissions are not currently eligible for back/forward cache."
2560
2635
  },
2561
- "panels/application/BackForwardCacheStrings.ts | requestedStorageAccessGrant": {
2636
+ "panels/application/components/BackForwardCacheStrings.ts | requestedStorageAccessGrant": {
2562
2637
  "message": "Pages that have requested storage access are not currently eligible for back/forward cache."
2563
2638
  },
2564
- "panels/application/BackForwardCacheStrings.ts | requestedVideoCapturePermission": {
2639
+ "panels/application/components/BackForwardCacheStrings.ts | requestedVideoCapturePermission": {
2565
2640
  "message": "Pages that have requested video capture permissions are not currently eligible for back/forward cache."
2566
2641
  },
2567
- "panels/application/BackForwardCacheStrings.ts | schemeNotHTTPOrHTTPS": {
2642
+ "panels/application/components/BackForwardCacheStrings.ts | schemeNotHTTPOrHTTPS": {
2568
2643
  "message": "Only pages whose URL scheme is HTTP / HTTPS can be cached."
2569
2644
  },
2570
- "panels/application/BackForwardCacheStrings.ts | serviceWorkerClaim": {
2645
+ "panels/application/components/BackForwardCacheStrings.ts | serviceWorkerClaim": {
2571
2646
  "message": "The page was claimed by a service worker while it is in back/forward cache."
2572
2647
  },
2573
- "panels/application/BackForwardCacheStrings.ts | serviceWorkerPostMessage": {
2648
+ "panels/application/components/BackForwardCacheStrings.ts | serviceWorkerPostMessage": {
2574
2649
  "message": "A service worker attempted to send the page in back/forward cache a MessageEvent."
2575
2650
  },
2576
- "panels/application/BackForwardCacheStrings.ts | serviceWorkerUnregistration": {
2651
+ "panels/application/components/BackForwardCacheStrings.ts | serviceWorkerUnregistration": {
2577
2652
  "message": "ServiceWorker was unregistered while a page was in back/forward cache."
2578
2653
  },
2579
- "panels/application/BackForwardCacheStrings.ts | serviceWorkerVersionActivation": {
2654
+ "panels/application/components/BackForwardCacheStrings.ts | serviceWorkerVersionActivation": {
2580
2655
  "message": "The page was evicted from back/forward cache due to a service worker activation."
2581
2656
  },
2582
- "panels/application/BackForwardCacheStrings.ts | sessionRestored": {
2657
+ "panels/application/components/BackForwardCacheStrings.ts | sessionRestored": {
2583
2658
  "message": "Chrome restarted and cleared the back/forward cache entries."
2584
2659
  },
2585
- "panels/application/BackForwardCacheStrings.ts | sharedWorker": {
2660
+ "panels/application/components/BackForwardCacheStrings.ts | sharedWorker": {
2586
2661
  "message": "Pages that use SharedWorker are not currently eligible for back/forward cache."
2587
2662
  },
2588
- "panels/application/BackForwardCacheStrings.ts | speechRecognizer": {
2663
+ "panels/application/components/BackForwardCacheStrings.ts | speechRecognizer": {
2589
2664
  "message": "Pages that use SpeechRecognizer are not currently eligible for back/forward cache."
2590
2665
  },
2591
- "panels/application/BackForwardCacheStrings.ts | speechSynthesis": {
2666
+ "panels/application/components/BackForwardCacheStrings.ts | speechSynthesis": {
2592
2667
  "message": "Pages that use SpeechSynthesis are not currently eligible for back/forward cache."
2593
2668
  },
2594
- "panels/application/BackForwardCacheStrings.ts | subframeIsNavigating": {
2669
+ "panels/application/components/BackForwardCacheStrings.ts | subframeIsNavigating": {
2595
2670
  "message": "An iframe on the page started a navigation that did not complete."
2596
2671
  },
2597
- "panels/application/BackForwardCacheStrings.ts | subresourceHasCacheControlNoCache": {
2672
+ "panels/application/components/BackForwardCacheStrings.ts | subresourceHasCacheControlNoCache": {
2598
2673
  "message": "Pages whose subresource has cache-control:no-cache cannot enter back/forward cache."
2599
2674
  },
2600
- "panels/application/BackForwardCacheStrings.ts | subresourceHasCacheControlNoStore": {
2675
+ "panels/application/components/BackForwardCacheStrings.ts | subresourceHasCacheControlNoStore": {
2601
2676
  "message": "Pages whose subresource has cache-control:no-store cannot enter back/forward cache."
2602
2677
  },
2603
- "panels/application/BackForwardCacheStrings.ts | timeout": {
2678
+ "panels/application/components/BackForwardCacheStrings.ts | timeout": {
2604
2679
  "message": "The page exceeded the maximum time in back/forward cache and was expired."
2605
2680
  },
2606
- "panels/application/BackForwardCacheStrings.ts | timeoutPuttingInCache": {
2681
+ "panels/application/components/BackForwardCacheStrings.ts | timeoutPuttingInCache": {
2607
2682
  "message": "The page timed out entering back/forward cache (likely due to long-running pagehide handlers)."
2608
2683
  },
2609
- "panels/application/BackForwardCacheStrings.ts | unloadHandlerExistsInMainFrame": {
2684
+ "panels/application/components/BackForwardCacheStrings.ts | unloadHandlerExistsInMainFrame": {
2610
2685
  "message": "The page has an unload handler in the main frame."
2611
2686
  },
2612
- "panels/application/BackForwardCacheStrings.ts | unloadHandlerExistsInSubFrame": {
2687
+ "panels/application/components/BackForwardCacheStrings.ts | unloadHandlerExistsInSubFrame": {
2613
2688
  "message": "The page has an unload handler in a sub frame."
2614
2689
  },
2615
- "panels/application/BackForwardCacheStrings.ts | userAgentOverrideDiffers": {
2690
+ "panels/application/components/BackForwardCacheStrings.ts | userAgentOverrideDiffers": {
2616
2691
  "message": "Browser has changed the user agent override header."
2617
2692
  },
2618
- "panels/application/BackForwardCacheStrings.ts | wasGrantedMediaAccess": {
2693
+ "panels/application/components/BackForwardCacheStrings.ts | wasGrantedMediaAccess": {
2619
2694
  "message": "Pages that have granted access to record video or audio are not currently eligible for back/forward cache."
2620
2695
  },
2621
- "panels/application/BackForwardCacheStrings.ts | webDatabase": {
2696
+ "panels/application/components/BackForwardCacheStrings.ts | webDatabase": {
2622
2697
  "message": "Pages that use WebDatabase are not currently eligible for back/forward cache."
2623
2698
  },
2624
- "panels/application/BackForwardCacheStrings.ts | webHID": {
2699
+ "panels/application/components/BackForwardCacheStrings.ts | webHID": {
2625
2700
  "message": "Pages that use WebHID are not currently eligible for back/forward cache."
2626
2701
  },
2627
- "panels/application/BackForwardCacheStrings.ts | webLocks": {
2702
+ "panels/application/components/BackForwardCacheStrings.ts | webLocks": {
2628
2703
  "message": "Pages that use WebLocks are not currently eligible for back/forward cache."
2629
2704
  },
2630
- "panels/application/BackForwardCacheStrings.ts | webNfc": {
2705
+ "panels/application/components/BackForwardCacheStrings.ts | webNfc": {
2631
2706
  "message": "Pages that use WebNfc are not currently eligible for back/forwad cache."
2632
2707
  },
2633
- "panels/application/BackForwardCacheStrings.ts | webOTPService": {
2708
+ "panels/application/components/BackForwardCacheStrings.ts | webOTPService": {
2634
2709
  "message": "Pages that use WebOTPService are not currently eligible for bfcache."
2635
2710
  },
2636
- "panels/application/BackForwardCacheStrings.ts | webRTC": {
2711
+ "panels/application/components/BackForwardCacheStrings.ts | webRTC": {
2637
2712
  "message": "Pages with WebRTC cannot enter back/forward cache."
2638
2713
  },
2639
- "panels/application/BackForwardCacheStrings.ts | webShare": {
2714
+ "panels/application/components/BackForwardCacheStrings.ts | webShare": {
2640
2715
  "message": "Pages that use WebShare are not currently eligible for back/forwad cache."
2641
2716
  },
2642
- "panels/application/BackForwardCacheStrings.ts | webSocket": {
2717
+ "panels/application/components/BackForwardCacheStrings.ts | webSocket": {
2643
2718
  "message": "Pages with WebSocket cannot enter back/forward cache."
2644
2719
  },
2645
- "panels/application/BackForwardCacheStrings.ts | webTransport": {
2720
+ "panels/application/components/BackForwardCacheStrings.ts | webTransport": {
2646
2721
  "message": "Pages with WebTransport cannot enter back/forward cache."
2647
2722
  },
2648
- "panels/application/BackForwardCacheStrings.ts | webXR": {
2723
+ "panels/application/components/BackForwardCacheStrings.ts | webXR": {
2649
2724
  "message": "Pages that use WebXR are not currently eligible for back/forward cache."
2650
2725
  },
2651
- "panels/application/BackForwardCacheView.ts | backForwardCacheTitle": {
2726
+ "panels/application/components/BackForwardCacheView.ts | backForwardCacheTitle": {
2652
2727
  "message": "Back/forward cache"
2653
2728
  },
2654
- "panels/application/BackForwardCacheView.ts | circumstantial": {
2729
+ "panels/application/components/BackForwardCacheView.ts | circumstantial": {
2655
2730
  "message": "Not Actionable"
2656
2731
  },
2657
- "panels/application/BackForwardCacheView.ts | circumstantialExplanation": {
2732
+ "panels/application/components/BackForwardCacheView.ts | circumstantialExplanation": {
2658
2733
  "message": "These reasons are not actionable i.e. caching was prevented by something outside of the direct control of the page."
2659
2734
  },
2660
- "panels/application/BackForwardCacheView.ts | learnMore": {
2735
+ "panels/application/components/BackForwardCacheView.ts | learnMore": {
2661
2736
  "message": "Learn more: back/forward cache eligibility"
2662
2737
  },
2663
- "panels/application/BackForwardCacheView.ts | mainFrame": {
2738
+ "panels/application/components/BackForwardCacheView.ts | mainFrame": {
2664
2739
  "message": "Main Frame"
2665
2740
  },
2666
- "panels/application/BackForwardCacheView.ts | normalNavigation": {
2741
+ "panels/application/components/BackForwardCacheView.ts | normalNavigation": {
2667
2742
  "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."
2668
2743
  },
2669
- "panels/application/BackForwardCacheView.ts | pageSupportNeeded": {
2744
+ "panels/application/components/BackForwardCacheView.ts | pageSupportNeeded": {
2670
2745
  "message": "Actionable"
2671
2746
  },
2672
- "panels/application/BackForwardCacheView.ts | pageSupportNeededExplanation": {
2747
+ "panels/application/components/BackForwardCacheView.ts | pageSupportNeededExplanation": {
2673
2748
  "message": "These reasons are actionable i.e. they can be cleaned up to make the page eligible for back/forward cache."
2674
2749
  },
2675
- "panels/application/BackForwardCacheView.ts | restoredFromBFCache": {
2750
+ "panels/application/components/BackForwardCacheView.ts | restoredFromBFCache": {
2676
2751
  "message": "Successfully served from back/forward cache."
2677
2752
  },
2678
- "panels/application/BackForwardCacheView.ts | runningTest": {
2753
+ "panels/application/components/BackForwardCacheView.ts | runningTest": {
2679
2754
  "message": "Running test"
2680
2755
  },
2681
- "panels/application/BackForwardCacheView.ts | runTest": {
2756
+ "panels/application/components/BackForwardCacheView.ts | runTest": {
2682
2757
  "message": "Test back/forward cache"
2683
2758
  },
2684
- "panels/application/BackForwardCacheView.ts | supportPending": {
2759
+ "panels/application/components/BackForwardCacheView.ts | supportPending": {
2685
2760
  "message": "Pending Support"
2686
2761
  },
2687
- "panels/application/BackForwardCacheView.ts | supportPendingExplanation": {
2762
+ "panels/application/components/BackForwardCacheView.ts | supportPendingExplanation": {
2688
2763
  "message": "Chrome support for these reasons is pending i.e. they will not prevent the page from being eligible for back/forward cache in a future version of Chrome."
2689
2764
  },
2690
- "panels/application/BackForwardCacheView.ts | unavailable": {
2765
+ "panels/application/components/BackForwardCacheView.ts | unavailable": {
2691
2766
  "message": "unavailable"
2692
2767
  },
2693
- "panels/application/BackForwardCacheView.ts | unknown": {
2768
+ "panels/application/components/BackForwardCacheView.ts | unknown": {
2694
2769
  "message": "Unknown Status"
2695
2770
  },
2696
- "panels/application/BackForwardCacheView.ts | url": {
2771
+ "panels/application/components/BackForwardCacheView.ts | url": {
2697
2772
  "message": "URL:"
2698
2773
  },
2699
- "panels/application/BackgroundServiceView.ts | backgroundFetch": {
2700
- "message": "Background Fetch"
2701
- },
2702
- "panels/application/BackgroundServiceView.ts | backgroundServices": {
2703
- "message": "Background Services"
2704
- },
2705
- "panels/application/BackgroundServiceView.ts | backgroundSync": {
2706
- "message": "Background Sync"
2707
- },
2708
- "panels/application/BackgroundServiceView.ts | clear": {
2709
- "message": "Clear"
2710
- },
2711
- "panels/application/BackgroundServiceView.ts | clickTheRecordButtonSOrHitSTo": {
2712
- "message": "Click the record button {PH1} or hit {PH2} to start recording."
2713
- },
2714
- "panels/application/BackgroundServiceView.ts | devtoolsWillRecordAllSActivity": {
2715
- "message": "DevTools will record all {PH1} activity for up to 3 days, even when closed."
2716
- },
2717
- "panels/application/BackgroundServiceView.ts | empty": {
2718
- "message": "empty"
2719
- },
2720
- "panels/application/BackgroundServiceView.ts | event": {
2721
- "message": "Event"
2722
- },
2723
- "panels/application/BackgroundServiceView.ts | instanceId": {
2724
- "message": "Instance ID"
2725
- },
2726
- "panels/application/BackgroundServiceView.ts | learnMore": {
2727
- "message": "Learn more"
2728
- },
2729
- "panels/application/BackgroundServiceView.ts | noMetadataForThisEvent": {
2730
- "message": "No metadata for this event"
2731
- },
2732
- "panels/application/BackgroundServiceView.ts | notifications": {
2733
- "message": "Notifications"
2734
- },
2735
- "panels/application/BackgroundServiceView.ts | origin": {
2736
- "message": "Origin"
2737
- },
2738
- "panels/application/BackgroundServiceView.ts | paymentHandler": {
2739
- "message": "Payment Handler"
2740
- },
2741
- "panels/application/BackgroundServiceView.ts | periodicBackgroundSync": {
2742
- "message": "Periodic Background Sync"
2743
- },
2744
- "panels/application/BackgroundServiceView.ts | pushMessaging": {
2745
- "message": "Push Messaging"
2746
- },
2747
- "panels/application/BackgroundServiceView.ts | recordingSActivity": {
2748
- "message": "Recording {PH1} activity..."
2749
- },
2750
- "panels/application/BackgroundServiceView.ts | saveEvents": {
2751
- "message": "Save events"
2752
- },
2753
- "panels/application/BackgroundServiceView.ts | selectAnEntryToViewMetadata": {
2754
- "message": "Select an entry to view metadata"
2755
- },
2756
- "panels/application/BackgroundServiceView.ts | showEventsFromOtherDomains": {
2757
- "message": "Show events from other domains"
2758
- },
2759
- "panels/application/BackgroundServiceView.ts | startRecordingEvents": {
2760
- "message": "Start recording events"
2761
- },
2762
- "panels/application/BackgroundServiceView.ts | stopRecordingEvents": {
2763
- "message": "Stop recording events"
2764
- },
2765
- "panels/application/BackgroundServiceView.ts | swScope": {
2766
- "message": "Service Worker Scope"
2767
- },
2768
- "panels/application/BackgroundServiceView.ts | timestamp": {
2769
- "message": "Timestamp"
2770
- },
2771
2774
  "panels/application/components/EndpointsGrid.ts | noEndpointsToDisplay": {
2772
2775
  "message": "No endpoints to display"
2773
2776
  },