chrome-devtools-frontend 1.0.1513662 → 1.0.1515446

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 (2293) hide show
  1. package/.mailmap +1 -1
  2. package/AUTHORS +1 -0
  3. package/LICENSE +1 -1
  4. package/WATCHLISTS +1 -1
  5. package/config/owner/COMMON_OWNERS +0 -1
  6. package/config/owner/LIGHTHOUSE_OWNERS +0 -1
  7. package/docs/committers_policy.md +1 -1
  8. package/docs/contributing/README.md +1 -1
  9. package/docs/contributing/infrastructure.md +101 -5
  10. package/eslint.config.mjs +1 -2
  11. package/extension-api/ExtensionAPI.d.ts +1 -1
  12. package/front_end/Images/gdp-logo-dark.png +0 -0
  13. package/front_end/Images/gdp-logo-light.png +0 -0
  14. package/front_end/Images/generate-css-vars.js +2 -2
  15. package/front_end/Images/rollup.config.mjs +1 -1
  16. package/front_end/application_tokens.css +1 -1
  17. package/front_end/core/common/App.ts +1 -1
  18. package/front_end/core/common/AppProvider.ts +1 -1
  19. package/front_end/core/common/Base64.ts +1 -1
  20. package/front_end/core/common/CharacterIdMap.ts +1 -1
  21. package/front_end/core/common/Color.ts +1 -1
  22. package/front_end/core/common/ColorConverter.ts +1 -1
  23. package/front_end/core/common/ColorUtils.ts +1 -1
  24. package/front_end/core/common/Console.ts +1 -1
  25. package/front_end/core/common/Debouncer.ts +1 -1
  26. package/front_end/core/common/EventTarget.ts +1 -1
  27. package/front_end/core/common/Gzip.ts +1 -1
  28. package/front_end/core/common/JavaScriptMetaData.ts +1 -1
  29. package/front_end/core/common/Lazy.ts +1 -1
  30. package/front_end/core/common/Linkifier.ts +1 -1
  31. package/front_end/core/common/MapWithDefault.ts +1 -1
  32. package/front_end/core/common/Mutex.ts +1 -1
  33. package/front_end/core/common/Object.ts +1 -1
  34. package/front_end/core/common/ParsedURL.ts +3 -29
  35. package/front_end/core/common/Progress.ts +3 -29
  36. package/front_end/core/common/QueryParamHandler.ts +1 -1
  37. package/front_end/core/common/ResolverBase.ts +1 -1
  38. package/front_end/core/common/ResourceType.ts +1 -1
  39. package/front_end/core/common/ReturnToPanel.ts +1 -1
  40. package/front_end/core/common/Revealer.ts +1 -1
  41. package/front_end/core/common/Runnable.ts +1 -1
  42. package/front_end/core/common/SegmentedRange.ts +1 -1
  43. package/front_end/core/common/SettingRegistration.ts +1 -1
  44. package/front_end/core/common/Settings.ts +14 -61
  45. package/front_end/core/common/SimpleHistoryManager.ts +3 -29
  46. package/front_end/core/common/StringOutputStream.ts +1 -1
  47. package/front_end/core/common/TextDictionary.ts +3 -29
  48. package/front_end/core/common/Throttler.ts +1 -1
  49. package/front_end/core/common/Trie.ts +1 -1
  50. package/front_end/core/common/Worker.ts +3 -29
  51. package/front_end/core/common/common.ts +1 -1
  52. package/front_end/core/dom_extension/DOMExtension.ts +1 -1
  53. package/front_end/core/dom_extension/dom_extension.ts +3 -29
  54. package/front_end/core/host/AidaClient.ts +3 -3
  55. package/front_end/core/host/GdpClient.ts +1 -2
  56. package/front_end/core/host/InspectorFrontendHost.ts +20 -40
  57. package/front_end/core/host/InspectorFrontendHostAPI.ts +1 -1
  58. package/front_end/core/host/Platform.ts +3 -29
  59. package/front_end/core/host/ResourceLoader.ts +1 -1
  60. package/front_end/core/host/UserMetrics.ts +3 -29
  61. package/front_end/core/host/host.ts +1 -1
  62. package/front_end/core/i18n/ByteUtilities.ts +1 -1
  63. package/front_end/core/i18n/DevToolsLocale.ts +1 -1
  64. package/front_end/core/i18n/NumberFormatter.ts +1 -1
  65. package/front_end/core/i18n/collect-ui-strings.js +1 -1
  66. package/front_end/core/i18n/generate-locales-js.js +1 -1
  67. package/front_end/core/i18n/i18n.ts +1 -1
  68. package/front_end/core/i18n/i18nImpl.ts +1 -1
  69. package/front_end/core/i18n/i18nTypes.ts +1 -1
  70. package/front_end/core/i18n/locales.d.ts +1 -1
  71. package/front_end/core/i18n/time-utilities.ts +1 -1
  72. package/front_end/core/platform/ArrayUtilities.ts +1 -1
  73. package/front_end/core/platform/Brand.ts +1 -1
  74. package/front_end/core/platform/Constructor.ts +1 -1
  75. package/front_end/core/platform/DOMUtilities.ts +1 -1
  76. package/front_end/core/platform/DateUtilities.ts +1 -1
  77. package/front_end/core/platform/DevToolsPath.ts +1 -1
  78. package/front_end/core/platform/KeyboardUtilities.ts +1 -1
  79. package/front_end/core/platform/MapUtilities.ts +1 -1
  80. package/front_end/core/platform/MimeType.ts +1 -1
  81. package/front_end/core/platform/NumberUtilities.ts +1 -1
  82. package/front_end/core/platform/StringUtilities.ts +1 -1
  83. package/front_end/core/platform/Timing.ts +1 -1
  84. package/front_end/core/platform/TypedArrayUtilities.ts +1 -1
  85. package/front_end/core/platform/TypescriptUtilities.ts +1 -1
  86. package/front_end/core/platform/UIString.ts +1 -1
  87. package/front_end/core/platform/UserVisibleError.ts +1 -1
  88. package/front_end/core/platform/platform.ts +3 -29
  89. package/front_end/core/protocol_client/InspectorBackend.ts +3 -29
  90. package/front_end/core/protocol_client/NodeURL.ts +1 -1
  91. package/front_end/core/protocol_client/protocol_client.ts +1 -1
  92. package/front_end/core/root/Runtime.ts +1 -1
  93. package/front_end/core/root/root.ts +1 -1
  94. package/front_end/core/sdk/AccessibilityModel.ts +1 -1
  95. package/front_end/core/sdk/AnimationModel.ts +1 -1
  96. package/front_end/core/sdk/AutofillModel.ts +1 -1
  97. package/front_end/core/sdk/CPUProfilerModel.ts +3 -29
  98. package/front_end/core/sdk/CPUThrottlingManager.ts +1 -1
  99. package/front_end/core/sdk/CSSContainerQuery.ts +1 -1
  100. package/front_end/core/sdk/CSSFontFace.ts +1 -1
  101. package/front_end/core/sdk/CSSLayer.ts +1 -1
  102. package/front_end/core/sdk/CSSMatchedStyles.ts +17 -11
  103. package/front_end/core/sdk/CSSMedia.ts +1 -1
  104. package/front_end/core/sdk/CSSMetadata.ts +1 -1
  105. package/front_end/core/sdk/CSSModel.ts +1 -1
  106. package/front_end/core/sdk/CSSProperty.ts +1 -1
  107. package/front_end/core/sdk/CSSPropertyParser.ts +1 -1
  108. package/front_end/core/sdk/CSSPropertyParserMatchers.ts +2 -3
  109. package/front_end/core/sdk/CSSQuery.ts +1 -1
  110. package/front_end/core/sdk/CSSRule.ts +1 -1
  111. package/front_end/core/sdk/CSSScope.ts +1 -1
  112. package/front_end/core/sdk/CSSStyleDeclaration.ts +1 -1
  113. package/front_end/core/sdk/CSSStyleSheetHeader.ts +1 -1
  114. package/front_end/core/sdk/CSSSupports.ts +1 -1
  115. package/front_end/core/sdk/CategorizedBreakpoint.ts +1 -1
  116. package/front_end/core/sdk/ChildTargetManager.ts +1 -1
  117. package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +3 -29
  118. package/front_end/core/sdk/Connections.ts +5 -3
  119. package/front_end/core/sdk/ConsoleModel.ts +3 -29
  120. package/front_end/core/sdk/ConsoleModelTypes.ts +1 -1
  121. package/front_end/core/sdk/Cookie.ts +1 -1
  122. package/front_end/core/sdk/CookieModel.ts +1 -1
  123. package/front_end/core/sdk/CookieParser.ts +3 -29
  124. package/front_end/core/sdk/DOMDebuggerModel.ts +1 -1
  125. package/front_end/core/sdk/DOMModel.ts +1 -1
  126. package/front_end/core/sdk/DebuggerModel.ts +1 -1
  127. package/front_end/core/sdk/EmulationModel.ts +1 -1
  128. package/front_end/core/sdk/EnhancedTracesParser.ts +1 -1
  129. package/front_end/core/sdk/EventBreakpointsModel.ts +1 -1
  130. package/front_end/core/sdk/FrameAssociated.ts +1 -1
  131. package/front_end/core/sdk/FrameManager.ts +1 -1
  132. package/front_end/core/sdk/HeapProfilerModel.ts +1 -1
  133. package/front_end/core/sdk/HttpReasonPhraseStrings.ts +1 -1
  134. package/front_end/core/sdk/IOModel.ts +1 -1
  135. package/front_end/core/sdk/IsolateManager.ts +1 -1
  136. package/front_end/core/sdk/IssuesModel.ts +1 -1
  137. package/front_end/core/sdk/LayerTreeBase.ts +1 -1
  138. package/front_end/core/sdk/LogModel.ts +1 -1
  139. package/front_end/core/sdk/NetworkManager.ts +48 -1
  140. package/front_end/core/sdk/NetworkRequest.ts +1 -1
  141. package/front_end/core/sdk/OverlayColorGenerator.ts +1 -1
  142. package/front_end/core/sdk/OverlayModel.ts +1 -1
  143. package/front_end/core/sdk/OverlayPersistentHighlighter.ts +1 -1
  144. package/front_end/core/sdk/PageLoad.ts +1 -1
  145. package/front_end/core/sdk/PageResourceLoader.ts +1 -1
  146. package/front_end/core/sdk/PaintProfiler.ts +3 -29
  147. package/front_end/core/sdk/PerformanceMetricsModel.ts +1 -1
  148. package/front_end/core/sdk/PreloadingModel.ts +1 -1
  149. package/front_end/core/sdk/RehydratingConnection.ts +2 -1
  150. package/front_end/core/sdk/RehydratingObject.ts +3 -1
  151. package/front_end/core/sdk/RemoteObject.ts +1 -1
  152. package/front_end/core/sdk/Resource.ts +1 -1
  153. package/front_end/core/sdk/ResourceTreeModel.ts +1 -1
  154. package/front_end/core/sdk/RuntimeModel.ts +1 -1
  155. package/front_end/core/sdk/SDKModel.ts +1 -1
  156. package/front_end/core/sdk/ScreenCaptureModel.ts +1 -1
  157. package/front_end/core/sdk/Script.ts +5 -1
  158. package/front_end/core/sdk/SecurityOriginManager.ts +1 -1
  159. package/front_end/core/sdk/ServerSentEvents.ts +1 -1
  160. package/front_end/core/sdk/ServerSentEventsProtocol.ts +1 -1
  161. package/front_end/core/sdk/ServerTiming.ts +1 -1
  162. package/front_end/core/sdk/ServiceWorkerCacheModel.ts +1 -1
  163. package/front_end/core/sdk/ServiceWorkerManager.ts +1 -1
  164. package/front_end/core/sdk/SourceMap.ts +1 -1
  165. package/front_end/core/sdk/SourceMapFunctionRanges.ts +1 -1
  166. package/front_end/core/sdk/SourceMapManager.ts +1 -1
  167. package/front_end/core/sdk/SourceMapScopeChainEntry.ts +1 -1
  168. package/front_end/core/sdk/SourceMapScopesInfo.ts +1 -1
  169. package/front_end/core/sdk/StorageBucketsModel.ts +3 -29
  170. package/front_end/core/sdk/StorageKeyManager.ts +1 -1
  171. package/front_end/core/sdk/Target.ts +1 -1
  172. package/front_end/core/sdk/TargetManager.ts +19 -1
  173. package/front_end/core/sdk/TraceObject.ts +1 -1
  174. package/front_end/core/sdk/WebAuthnModel.ts +1 -1
  175. package/front_end/core/sdk/sdk-meta.ts +1 -1
  176. package/front_end/core/sdk/sdk.ts +3 -1
  177. package/front_end/design_system_tokens.css +1 -1
  178. package/front_end/devtools_compatibility.js +1 -1
  179. package/front_end/emulated_devices/optimized/optimized_images.gni +1 -1
  180. package/front_end/entrypoint_template.html +1 -1
  181. package/front_end/entrypoints/device_mode_emulation_frame/device_mode_emulation_frame.ts +1 -1
  182. package/front_end/entrypoints/devtools_app/devtools_app.ts +1 -1
  183. package/front_end/entrypoints/formatter_worker/AcornTokenizer.ts +1 -1
  184. package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +3 -29
  185. package/front_end/entrypoints/formatter_worker/CSSRuleParser.ts +1 -1
  186. package/front_end/entrypoints/formatter_worker/ESTreeWalker.ts +1 -1
  187. package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.ts +1 -1
  188. package/front_end/entrypoints/formatter_worker/FormatterActions.ts +1 -1
  189. package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +3 -29
  190. package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +1 -1
  191. package/front_end/entrypoints/formatter_worker/IdentityFormatter.ts +1 -1
  192. package/front_end/entrypoints/formatter_worker/JSONFormatter.ts +1 -1
  193. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +3 -29
  194. package/front_end/entrypoints/formatter_worker/ScopeParser.ts +1 -1
  195. package/front_end/entrypoints/formatter_worker/Substitute.ts +1 -1
  196. package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +1 -1
  197. package/front_end/entrypoints/formatter_worker/formatter_worker.ts +1 -1
  198. package/front_end/entrypoints/heap_snapshot_worker/AllocationProfile.ts +3 -29
  199. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +3 -29
  200. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotLoader.ts +3 -29
  201. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.ts +3 -29
  202. package/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker-entrypoint.ts +1 -1
  203. package/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker.ts +1 -1
  204. package/front_end/entrypoints/inspector/inspector.ts +1 -1
  205. package/front_end/entrypoints/inspector_main/InspectorMain.ts +1 -1
  206. package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +1 -1
  207. package/front_end/entrypoints/inspector_main/RenderingOptions.ts +3 -29
  208. package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +1 -1
  209. package/front_end/entrypoints/inspector_main/inspector_main.ts +1 -1
  210. package/front_end/entrypoints/inspector_main/nodeIcon.css +1 -1
  211. package/front_end/entrypoints/inspector_main/outermostTargetSelector.css +1 -1
  212. package/front_end/entrypoints/inspector_main/renderingOptions.css +1 -1
  213. package/front_end/entrypoints/js_app/js_app.ts +1 -1
  214. package/front_end/entrypoints/lighthouse_worker/LighthouseWorkerService.ts +1 -1
  215. package/front_end/entrypoints/lighthouse_worker/lighthouse_worker.ts +1 -1
  216. package/front_end/entrypoints/main/ExecutionContextSelector.ts +1 -1
  217. package/front_end/entrypoints/main/GlobalAiButton.ts +1 -1
  218. package/front_end/entrypoints/main/MainImpl.ts +1 -1
  219. package/front_end/entrypoints/main/SimpleApp.ts +1 -1
  220. package/front_end/entrypoints/main/globalAiButton.css +1 -1
  221. package/front_end/entrypoints/main/main-meta.ts +1 -1
  222. package/front_end/entrypoints/main/main.ts +1 -1
  223. package/front_end/entrypoints/ndb_app/ndb_app.ts +1 -1
  224. package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +1 -1
  225. package/front_end/entrypoints/node_app/NodeMain.ts +1 -1
  226. package/front_end/entrypoints/node_app/nodeConnectionsPanel.css +1 -1
  227. package/front_end/entrypoints/node_app/node_app.ts +1 -1
  228. package/front_end/entrypoints/rehydrated_devtools_app/rehydrated_devtools_app.ts +1 -1
  229. package/front_end/entrypoints/shell/shell.ts +1 -1
  230. package/front_end/entrypoints/visibility.gni +1 -1
  231. package/front_end/entrypoints/wasmparser_worker/WasmParserWorker.ts +3 -29
  232. package/front_end/entrypoints/wasmparser_worker/wasmparser_worker-entrypoint.ts +1 -1
  233. package/front_end/entrypoints/wasmparser_worker/wasmparser_worker.ts +1 -1
  234. package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
  235. package/front_end/entrypoints/worker_app/worker_app.ts +1 -1
  236. package/front_end/generated/ARIAProperties.js +1 -1
  237. package/front_end/generated/Deprecation.ts +1 -1
  238. package/front_end/generated/InspectorBackendCommands.js +3 -3
  239. package/front_end/generated/SupportedCSSProperties.js +4 -4
  240. package/front_end/generated/protocol-mapping.d.ts +1 -1
  241. package/front_end/generated/protocol-proxy-api.d.ts +1 -1
  242. package/front_end/generated/protocol.ts +22 -4
  243. package/front_end/global_typings/global_defs.d.ts +16 -2
  244. package/front_end/legacy/legacy-defs.d.ts +1 -1
  245. package/front_end/models/ai_assistance/AgentProject.ts +1 -1
  246. package/front_end/models/ai_assistance/AiHistoryStorage.ts +1 -1
  247. package/front_end/models/ai_assistance/AiUtils.ts +1 -1
  248. package/front_end/models/ai_assistance/ChangeManager.ts +1 -1
  249. package/front_end/models/ai_assistance/ConversationHandler.ts +1 -1
  250. package/front_end/models/ai_assistance/EvaluateAction.ts +1 -1
  251. package/front_end/models/ai_assistance/ExtensionScope.ts +1 -1
  252. package/front_end/models/ai_assistance/agents/AiAgent.ts +1 -1
  253. package/front_end/models/ai_assistance/agents/FileAgent.ts +1 -1
  254. package/front_end/models/ai_assistance/agents/NetworkAgent.ts +1 -1
  255. package/front_end/models/ai_assistance/agents/PatchAgent.ts +1 -1
  256. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +60 -197
  257. package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.ts +77 -9
  258. package/front_end/models/ai_assistance/agents/StylingAgent.ts +1 -1
  259. package/front_end/models/ai_assistance/ai_assistance.ts +4 -1
  260. package/front_end/models/ai_assistance/data_formatters/FileFormatter.ts +1 -1
  261. package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +1 -1
  262. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +1 -1
  263. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +77 -2
  264. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +83 -20
  265. package/front_end/models/ai_assistance/debug.ts +1 -1
  266. package/front_end/models/ai_assistance/injected.ts +1 -1
  267. package/front_end/{panels/timeline/utils → models/ai_assistance/performance}/AICallTree.ts +6 -9
  268. package/front_end/{panels/timeline/utils → models/ai_assistance/performance}/AIContext.ts +28 -7
  269. package/front_end/{panels/timeline/utils/InsightAIContext.ts → models/ai_assistance/performance/AIQueries.ts} +1 -1
  270. package/front_end/models/ai_code_completion/AiCodeCompletion.ts +1 -1
  271. package/front_end/models/ai_code_completion/ai_code_completion.ts +1 -1
  272. package/front_end/models/autofill_manager/AutofillManager.ts +1 -1
  273. package/front_end/models/autofill_manager/autofill_manager.ts +1 -1
  274. package/front_end/models/badges/Badge.ts +2 -1
  275. package/front_end/models/badges/StarterBadge.ts +1 -0
  276. package/front_end/models/bindings/CSSWorkspaceBinding.ts +1 -1
  277. package/front_end/models/bindings/CompilerScriptMapping.ts +3 -29
  278. package/front_end/models/bindings/ContentProviderBasedProject.ts +3 -29
  279. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +1 -1
  280. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -1
  281. package/front_end/models/bindings/DefaultScriptMapping.ts +3 -29
  282. package/front_end/models/bindings/FileUtils.ts +3 -29
  283. package/front_end/models/bindings/LiveLocation.ts +1 -1
  284. package/front_end/models/bindings/NetworkProject.ts +3 -29
  285. package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +3 -29
  286. package/front_end/models/bindings/ResourceMapping.ts +1 -1
  287. package/front_end/models/bindings/ResourceScriptMapping.ts +3 -29
  288. package/front_end/models/bindings/ResourceUtils.ts +1 -1
  289. package/front_end/models/bindings/SASSSourceMapping.ts +3 -29
  290. package/front_end/models/bindings/StylesSourceMapping.ts +3 -29
  291. package/front_end/models/bindings/TempFile.ts +3 -29
  292. package/front_end/models/bindings/bindings.ts +1 -1
  293. package/front_end/models/breakpoints/BreakpointManager.ts +3 -29
  294. package/front_end/models/breakpoints/breakpoints.ts +1 -1
  295. package/front_end/models/cpu_profile/CPUProfileDataModel.ts +1 -1
  296. package/front_end/models/cpu_profile/ProfileTreeModel.ts +2 -2
  297. package/front_end/models/cpu_profile/cpu_profile.ts +1 -1
  298. package/front_end/models/crux-manager/CrUXManager.ts +1 -1
  299. package/front_end/models/crux-manager/crux-manager.ts +1 -1
  300. package/front_end/models/elements/ElementUpdateRecord.ts +1 -1
  301. package/front_end/models/elements/elements.ts +1 -1
  302. package/front_end/models/emulation/DeviceModeModel.ts +1 -1
  303. package/front_end/models/emulation/EmulatedDevices.ts +1 -1
  304. package/front_end/models/emulation/emulation.ts +1 -1
  305. package/front_end/models/extensions/ExtensionAPI.ts +3 -29
  306. package/front_end/models/extensions/ExtensionEndpoint.ts +1 -1
  307. package/front_end/models/extensions/ExtensionPanel.ts +7 -29
  308. package/front_end/models/extensions/ExtensionServer.ts +3 -29
  309. package/front_end/models/extensions/ExtensionView.ts +3 -29
  310. package/front_end/models/extensions/HostUrlPattern.ts +1 -1
  311. package/front_end/models/extensions/LanguageExtensionEndpoint.ts +1 -1
  312. package/front_end/models/extensions/RecorderExtensionEndpoint.ts +1 -1
  313. package/front_end/models/extensions/RecorderPluginManager.ts +1 -1
  314. package/front_end/models/extensions/extensions.ts +1 -1
  315. package/front_end/models/formatter/FormatterWorkerPool.ts +1 -1
  316. package/front_end/models/formatter/ScriptFormatter.ts +3 -29
  317. package/front_end/models/formatter/formatter.ts +1 -1
  318. package/front_end/models/geometry/GeometryImpl.ts +3 -29
  319. package/front_end/models/geometry/geometry.ts +1 -1
  320. package/front_end/models/har/HARFormat.ts +1 -1
  321. package/front_end/models/har/Importer.ts +1 -1
  322. package/front_end/models/har/Log.ts +3 -29
  323. package/front_end/models/har/Writer.ts +1 -1
  324. package/front_end/models/har/har.ts +1 -1
  325. package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +8 -30
  326. package/front_end/models/heap_snapshot_model/heap_snapshot_model.ts +1 -1
  327. package/front_end/models/issues_manager/AttributionReportingIssue.ts +1 -1
  328. package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -1
  329. package/front_end/models/issues_manager/CheckFormsIssuesTrigger.ts +1 -1
  330. package/front_end/models/issues_manager/ClientHintIssue.ts +1 -1
  331. package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +1 -1
  332. package/front_end/models/issues_manager/ContrastCheckTrigger.ts +1 -1
  333. package/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts +1 -1
  334. package/front_end/models/issues_manager/CookieIssue.ts +1 -1
  335. package/front_end/models/issues_manager/CorsIssue.ts +1 -1
  336. package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +1 -1
  337. package/front_end/models/issues_manager/DeprecationIssue.ts +1 -1
  338. package/front_end/models/issues_manager/ElementAccessibilityIssue.ts +1 -1
  339. package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +1 -1
  340. package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +1 -1
  341. package/front_end/models/issues_manager/GenericIssue.ts +1 -1
  342. package/front_end/models/issues_manager/HeavyAdIssue.ts +1 -1
  343. package/front_end/models/issues_manager/Issue.ts +1 -1
  344. package/front_end/models/issues_manager/IssueResolver.ts +1 -1
  345. package/front_end/models/issues_manager/IssuesManager.ts +1 -1
  346. package/front_end/models/issues_manager/IssuesManagerEvents.ts +1 -1
  347. package/front_end/models/issues_manager/LowTextContrastIssue.ts +1 -1
  348. package/front_end/models/issues_manager/MarkdownIssueDescription.ts +1 -1
  349. package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
  350. package/front_end/models/issues_manager/PartitioningBlobURLIssue.ts +1 -1
  351. package/front_end/models/issues_manager/PropertyRuleIssue.ts +1 -1
  352. package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
  353. package/front_end/models/issues_manager/RelatedIssue.ts +1 -1
  354. package/front_end/models/issues_manager/SRIMessageSignatureIssue.ts +1 -1
  355. package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +1 -1
  356. package/front_end/models/issues_manager/SharedDictionaryIssue.ts +1 -1
  357. package/front_end/models/issues_manager/SourceFrameIssuesManager.ts +1 -1
  358. package/front_end/models/issues_manager/StylesheetLoadingIssue.ts +1 -1
  359. package/front_end/models/issues_manager/UnencodedDigestIssue.ts +1 -1
  360. package/front_end/models/issues_manager/UserReidentificationIssue.ts +1 -1
  361. package/front_end/models/issues_manager/issues_manager.ts +1 -1
  362. package/front_end/models/javascript_metadata/JavaScriptMetadata.ts +1 -1
  363. package/front_end/models/javascript_metadata/NativeFunctions.js +18 -13
  364. package/front_end/models/javascript_metadata/javascript_metadata.ts +1 -1
  365. package/front_end/models/live-metrics/LiveMetrics.ts +8 -2
  366. package/front_end/models/live-metrics/live-metrics.ts +1 -1
  367. package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +1 -1
  368. package/front_end/models/live-metrics/web-vitals-injected/OnEachLayoutShift.ts +1 -1
  369. package/front_end/models/live-metrics/web-vitals-injected/rollup.config.mjs +1 -1
  370. package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +1 -1
  371. package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +1 -1
  372. package/front_end/models/logs/LogManager.ts +1 -1
  373. package/front_end/models/logs/NetworkLog.ts +3 -29
  374. package/front_end/models/logs/RequestResolver.ts +1 -1
  375. package/front_end/models/logs/logs-meta.ts +1 -1
  376. package/front_end/models/logs/logs.ts +1 -1
  377. package/front_end/models/network_time_calculator/Calculator.ts +1 -1
  378. package/front_end/models/network_time_calculator/NetworkTimeCalculator.ts +1 -1
  379. package/front_end/models/network_time_calculator/RequestTimeRanges.ts +1 -1
  380. package/front_end/models/network_time_calculator/network_time_calculator.ts +1 -1
  381. package/front_end/models/persistence/Automapping.ts +1 -1
  382. package/front_end/models/persistence/AutomaticFileSystemManager.ts +1 -1
  383. package/front_end/models/persistence/AutomaticFileSystemWorkspaceBinding.ts +1 -1
  384. package/front_end/models/persistence/EditFileSystemView.ts +3 -29
  385. package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +3 -29
  386. package/front_end/models/persistence/IsolatedFileSystem.ts +3 -29
  387. package/front_end/models/persistence/IsolatedFileSystemManager.ts +3 -29
  388. package/front_end/models/persistence/NetworkPersistenceManager.ts +1 -1
  389. package/front_end/models/persistence/PersistenceActions.ts +1 -1
  390. package/front_end/models/persistence/PersistenceImpl.ts +1 -1
  391. package/front_end/models/persistence/PersistenceUtils.ts +1 -1
  392. package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
  393. package/front_end/models/persistence/editFileSystemView.css +1 -1
  394. package/front_end/models/persistence/persistence-meta.ts +1 -22
  395. package/front_end/models/persistence/persistence.ts +1 -3
  396. package/front_end/models/project_settings/ProjectSettingsModel.ts +1 -1
  397. package/front_end/models/project_settings/project_settings.ts +1 -1
  398. package/front_end/models/source_map_scopes/NamesResolver.ts +1 -1
  399. package/front_end/models/source_map_scopes/ScopeChainModel.ts +1 -1
  400. package/front_end/models/source_map_scopes/ScopeTreeCache.ts +1 -1
  401. package/front_end/models/source_map_scopes/source_map_scopes.ts +1 -1
  402. package/front_end/models/stack_trace/StackTrace.ts +1 -1
  403. package/front_end/models/stack_trace/StackTraceImpl.ts +1 -1
  404. package/front_end/models/stack_trace/Trie.ts +1 -1
  405. package/front_end/models/stack_trace/stack_trace.ts +1 -1
  406. package/front_end/models/stack_trace/stack_trace_impl.ts +1 -1
  407. package/front_end/models/text_utils/CodeMirrorUtils.ts +3 -29
  408. package/front_end/models/text_utils/ContentData.ts +7 -2
  409. package/front_end/models/text_utils/ContentProvider.ts +3 -29
  410. package/front_end/models/text_utils/StaticContentProvider.ts +1 -1
  411. package/front_end/models/text_utils/StreamingContentData.ts +1 -1
  412. package/front_end/models/text_utils/Text.ts +1 -1
  413. package/front_end/models/text_utils/TextCursor.ts +1 -1
  414. package/front_end/models/text_utils/TextRange.ts +3 -29
  415. package/front_end/models/text_utils/TextUtils.ts +3 -29
  416. package/front_end/models/text_utils/WasmDisassembly.ts +1 -1
  417. package/front_end/models/text_utils/text_utils.ts +1 -1
  418. package/front_end/{panels/timeline/utils → models/trace}/EntityMapper.ts +27 -24
  419. package/front_end/models/trace/EventsSerializer.ts +1 -1
  420. package/front_end/models/trace/LanternComputationData.ts +1 -1
  421. package/front_end/models/trace/ModelImpl.ts +1 -1
  422. package/front_end/{panels/timeline/utils/EntryName.ts → models/trace/Name.ts} +24 -22
  423. package/front_end/models/trace/Processor.ts +1 -1
  424. package/front_end/{panels/timeline/utils/EntryStyles.ts → models/trace/Styles.ts} +160 -185
  425. package/front_end/models/trace/extras/FilmStrip.ts +1 -1
  426. package/front_end/models/trace/extras/MainThreadActivity.ts +1 -1
  427. package/front_end/models/trace/extras/ScriptDuplication.ts +1 -1
  428. package/front_end/models/trace/extras/StackTraceForEvent.ts +1 -1
  429. package/front_end/models/trace/extras/ThirdParties.ts +1 -1
  430. package/front_end/models/trace/extras/TraceFilter.ts +1 -1
  431. package/front_end/models/trace/extras/TraceTree.ts +1 -1
  432. package/front_end/models/trace/extras/extras.ts +1 -1
  433. package/front_end/models/trace/handlers/AnimationFramesHandler.ts +1 -1
  434. package/front_end/models/trace/handlers/AnimationHandler.ts +1 -1
  435. package/front_end/models/trace/handlers/AsyncJSCallsHandler.ts +1 -1
  436. package/front_end/models/trace/handlers/AuctionWorkletsHandler.ts +1 -1
  437. package/front_end/models/trace/handlers/DOMStatsHandler.ts +1 -1
  438. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +1 -1
  439. package/front_end/models/trace/handlers/FlowsHandler.ts +1 -1
  440. package/front_end/models/trace/handlers/FramesHandler.ts +1 -1
  441. package/front_end/models/trace/handlers/GPUHandler.ts +1 -1
  442. package/front_end/models/trace/handlers/ImagePaintingHandler.ts +1 -1
  443. package/front_end/models/trace/handlers/InitiatorsHandler.ts +17 -24
  444. package/front_end/models/trace/handlers/InvalidationsHandler.ts +81 -48
  445. package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +1 -1
  446. package/front_end/models/trace/handlers/LargestTextPaintHandler.ts +1 -1
  447. package/front_end/models/trace/handlers/LayerTreeHandler.ts +1 -1
  448. package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +1 -1
  449. package/front_end/models/trace/handlers/MemoryHandler.ts +1 -1
  450. package/front_end/models/trace/handlers/MetaHandler.ts +1 -1
  451. package/front_end/models/trace/handlers/ModelHandlers.ts +1 -1
  452. package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +2 -2
  453. package/front_end/models/trace/handlers/PageFramesHandler.ts +1 -1
  454. package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +1 -1
  455. package/front_end/models/trace/handlers/RendererHandler.ts +5 -5
  456. package/front_end/models/trace/handlers/SamplesHandler.ts +1 -1
  457. package/front_end/models/trace/handlers/ScreenshotsHandler.ts +1 -1
  458. package/front_end/models/trace/handlers/ScriptsHandler.ts +1 -1
  459. package/front_end/models/trace/handlers/SelectorStatsHandler.ts +13 -13
  460. package/front_end/models/trace/handlers/Threads.ts +1 -1
  461. package/front_end/models/trace/handlers/UserInteractionsHandler.ts +1 -1
  462. package/front_end/models/trace/handlers/UserTimingsHandler.ts +1 -1
  463. package/front_end/models/trace/handlers/WarningsHandler.ts +2 -2
  464. package/front_end/models/trace/handlers/WorkersHandler.ts +1 -1
  465. package/front_end/models/trace/handlers/handlers.ts +1 -1
  466. package/front_end/models/trace/handlers/helpers.ts +1 -1
  467. package/front_end/models/trace/handlers/types.ts +1 -1
  468. package/front_end/models/trace/helpers/Extensions.ts +1 -1
  469. package/front_end/models/trace/helpers/Network.ts +1 -1
  470. package/front_end/models/trace/helpers/SamplesIntegrator.ts +1 -1
  471. package/front_end/models/trace/helpers/SyntheticEvents.ts +1 -1
  472. package/front_end/models/trace/helpers/Timing.ts +1 -1
  473. package/front_end/models/trace/helpers/Trace.ts +52 -23
  474. package/front_end/models/trace/helpers/TreeHelpers.ts +1 -1
  475. package/front_end/models/trace/helpers/helpers.ts +1 -1
  476. package/front_end/models/trace/insights/CLSCulprits.ts +1 -1
  477. package/front_end/models/trace/insights/Cache.ts +1 -1
  478. package/front_end/models/trace/insights/Common.ts +1 -1
  479. package/front_end/models/trace/insights/DOMSize.ts +5 -5
  480. package/front_end/models/trace/insights/DocumentLatency.ts +1 -1
  481. package/front_end/models/trace/insights/DuplicatedJavaScript.ts +1 -1
  482. package/front_end/models/trace/insights/FontDisplay.ts +1 -1
  483. package/front_end/models/trace/insights/ForcedReflow.ts +3 -3
  484. package/front_end/models/trace/insights/INPBreakdown.ts +1 -1
  485. package/front_end/models/trace/insights/ImageDelivery.ts +1 -1
  486. package/front_end/models/trace/insights/LCPBreakdown.ts +1 -1
  487. package/front_end/models/trace/insights/LCPDiscovery.ts +1 -1
  488. package/front_end/models/trace/insights/LegacyJavaScript.ts +1 -1
  489. package/front_end/models/trace/insights/Models.ts +1 -1
  490. package/front_end/models/trace/insights/ModernHTTP.ts +1 -1
  491. package/front_end/models/trace/insights/NetworkDependencyTree.ts +2 -2
  492. package/front_end/models/trace/insights/RenderBlocking.ts +1 -1
  493. package/front_end/models/trace/insights/SlowCSSSelector.ts +3 -3
  494. package/front_end/models/trace/insights/Statistics.ts +1 -1
  495. package/front_end/models/trace/insights/ThirdParties.ts +1 -1
  496. package/front_end/models/trace/insights/Viewport.ts +1 -1
  497. package/front_end/models/trace/insights/insights.ts +3 -1
  498. package/front_end/models/trace/insights/types.ts +1 -1
  499. package/front_end/models/trace/lantern/core/LanternError.ts +1 -1
  500. package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +1 -1
  501. package/front_end/models/trace/lantern/core/core.ts +1 -1
  502. package/front_end/models/trace/lantern/graph/BaseNode.ts +1 -1
  503. package/front_end/models/trace/lantern/graph/CPUNode.ts +1 -1
  504. package/front_end/models/trace/lantern/graph/NetworkNode.ts +1 -1
  505. package/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +1 -1
  506. package/front_end/models/trace/lantern/graph/graph.ts +1 -1
  507. package/front_end/models/trace/lantern/lantern.ts +1 -1
  508. package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.ts +1 -1
  509. package/front_end/models/trace/lantern/metrics/Interactive.ts +1 -1
  510. package/front_end/models/trace/lantern/metrics/LargestContentfulPaint.ts +1 -1
  511. package/front_end/models/trace/lantern/metrics/MaxPotentialFID.ts +1 -1
  512. package/front_end/models/trace/lantern/metrics/Metric.ts +1 -1
  513. package/front_end/models/trace/lantern/metrics/SpeedIndex.ts +1 -1
  514. package/front_end/models/trace/lantern/metrics/TBTUtils.ts +1 -1
  515. package/front_end/models/trace/lantern/metrics/TotalBlockingTime.ts +1 -1
  516. package/front_end/models/trace/lantern/metrics/metrics.ts +1 -1
  517. package/front_end/models/trace/lantern/simulation/ConnectionPool.ts +1 -1
  518. package/front_end/models/trace/lantern/simulation/Constants.ts +1 -1
  519. package/front_end/models/trace/lantern/simulation/DNSCache.ts +1 -1
  520. package/front_end/models/trace/lantern/simulation/SimulationTimingMap.ts +1 -1
  521. package/front_end/models/trace/lantern/simulation/Simulator.ts +1 -1
  522. package/front_end/models/trace/lantern/simulation/TCPConnection.ts +1 -1
  523. package/front_end/models/trace/lantern/simulation/simulation.ts +1 -1
  524. package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +1 -1
  525. package/front_end/models/trace/lantern/testing/testing.ts +1 -1
  526. package/front_end/models/trace/lantern/types/Lantern.ts +1 -1
  527. package/front_end/models/trace/lantern/types/types.ts +1 -1
  528. package/front_end/models/trace/trace.ts +7 -1
  529. package/front_end/models/trace/types/Configuration.ts +1 -1
  530. package/front_end/models/trace/types/Extensions.ts +1 -1
  531. package/front_end/models/trace/types/File.ts +1 -1
  532. package/front_end/models/trace/types/Overlays.ts +1 -1
  533. package/front_end/models/trace/types/Timing.ts +1 -1
  534. package/front_end/models/trace/types/TraceEvents.ts +9 -6
  535. package/front_end/models/trace/types/types.ts +1 -1
  536. package/front_end/{panels/timeline/utils → models/trace_source_maps_resolver}/SourceMapsResolver.ts +13 -15
  537. package/front_end/models/trace_source_maps_resolver/trace_source_maps_resolver.ts +5 -0
  538. package/front_end/models/visibility.gni +1 -1
  539. package/front_end/models/workspace/FileManager.ts +3 -29
  540. package/front_end/models/workspace/IgnoreListManager.ts +1 -1
  541. package/front_end/models/workspace/SearchConfig.ts +1 -1
  542. package/front_end/models/workspace/UISourceCode.ts +3 -29
  543. package/front_end/models/workspace/WorkspaceImpl.ts +3 -29
  544. package/front_end/models/workspace/workspace.ts +1 -1
  545. package/front_end/models/workspace_diff/WorkspaceDiff.ts +1 -1
  546. package/front_end/models/workspace_diff/workspace_diff.ts +1 -1
  547. package/front_end/panels/accessibility/ARIAAttributesView.ts +1 -1
  548. package/front_end/panels/accessibility/ARIAMetadata.ts +1 -1
  549. package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +1 -1
  550. package/front_end/panels/accessibility/AccessibilityNodeView.ts +1 -1
  551. package/front_end/panels/accessibility/AccessibilitySidebarView.ts +1 -1
  552. package/front_end/panels/accessibility/AccessibilityStrings.ts +1 -1
  553. package/front_end/panels/accessibility/AccessibilitySubPane.ts +1 -1
  554. package/front_end/panels/accessibility/SourceOrderView.ts +1 -1
  555. package/front_end/panels/accessibility/accessibility-meta.ts +1 -1
  556. package/front_end/panels/accessibility/accessibility.ts +1 -1
  557. package/front_end/panels/accessibility/accessibilityNode.css +1 -1
  558. package/front_end/panels/accessibility/accessibilityProperties.css +1 -1
  559. package/front_end/panels/accessibility/axBreadcrumbs.css +1 -1
  560. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +7 -8
  561. package/front_end/panels/ai_assistance/PatchWidget.ts +1 -1
  562. package/front_end/panels/ai_assistance/SelectWorkspaceDialog.ts +1 -1
  563. package/front_end/panels/ai_assistance/aiAssistancePanel.css +1 -1
  564. package/front_end/panels/ai_assistance/ai_assistance-meta.ts +1 -1
  565. package/front_end/panels/ai_assistance/ai_assistance.ts +1 -1
  566. package/front_end/panels/ai_assistance/components/ChatView.ts +2 -3
  567. package/front_end/panels/ai_assistance/components/ExploreWidget.ts +1 -1
  568. package/front_end/panels/ai_assistance/components/MarkdownRendererWithCodeBlock.ts +1 -1
  569. package/front_end/panels/ai_assistance/components/UserActionRow.ts +1 -1
  570. package/front_end/panels/ai_assistance/components/chatView.css +1 -1
  571. package/front_end/panels/ai_assistance/components/exploreWidget.css +1 -1
  572. package/front_end/panels/ai_assistance/components/userActionRow.css +1 -1
  573. package/front_end/panels/ai_assistance/selectWorkspaceDialog.css +1 -1
  574. package/front_end/panels/animation/AnimationGroupPreviewUI.ts +1 -1
  575. package/front_end/panels/animation/AnimationTimeline.ts +1 -1
  576. package/front_end/panels/animation/AnimationUI.ts +1 -1
  577. package/front_end/panels/animation/animation-meta.ts +1 -1
  578. package/front_end/panels/animation/animation.ts +1 -1
  579. package/front_end/panels/animation/animationTimeline.css +1 -1
  580. package/front_end/panels/application/AppManifestView.ts +1 -1
  581. package/front_end/panels/application/ApplicationPanelSidebar.ts +1 -1
  582. package/front_end/panels/application/ApplicationPanelTreeElement.ts +1 -1
  583. package/front_end/panels/application/BackForwardCacheTreeElement.ts +1 -1
  584. package/front_end/panels/application/BackgroundServiceModel.ts +1 -1
  585. package/front_end/panels/application/BackgroundServiceView.ts +1 -1
  586. package/front_end/panels/application/BounceTrackingMitigationsTreeElement.ts +1 -1
  587. package/front_end/panels/application/CookieItemsView.ts +1 -1
  588. package/front_end/panels/application/DOMStorageItemsView.ts +1 -1
  589. package/front_end/panels/application/DOMStorageModel.ts +1 -1
  590. package/front_end/panels/application/ExtensionStorageItemsView.ts +1 -1
  591. package/front_end/panels/application/ExtensionStorageModel.ts +1 -1
  592. package/front_end/panels/application/IndexedDBModel.ts +7 -31
  593. package/front_end/panels/application/IndexedDBViews.ts +3 -29
  594. package/front_end/panels/application/InterestGroupStorageModel.ts +3 -29
  595. package/front_end/panels/application/InterestGroupStorageView.ts +1 -1
  596. package/front_end/panels/application/InterestGroupTreeElement.ts +1 -1
  597. package/front_end/panels/application/KeyValueStorageItemsView.ts +1 -1
  598. package/front_end/panels/application/OpenedWindowDetailsView.ts +1 -1
  599. package/front_end/panels/application/PreloadingTreeElement.ts +1 -1
  600. package/front_end/panels/application/ReportingApiTreeElement.ts +1 -1
  601. package/front_end/panels/application/ReportingApiView.ts +1 -1
  602. package/front_end/panels/application/ResourcesPanel.ts +1 -1
  603. package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +1 -1
  604. package/front_end/panels/application/ServiceWorkerCacheViews.ts +1 -1
  605. package/front_end/panels/application/ServiceWorkerUpdateCycleView.ts +1 -1
  606. package/front_end/panels/application/ServiceWorkersView.ts +1 -1
  607. package/front_end/panels/application/SharedStorageEventsView.ts +1 -1
  608. package/front_end/panels/application/SharedStorageItemsView.ts +1 -1
  609. package/front_end/panels/application/SharedStorageListTreeElement.ts +1 -1
  610. package/front_end/panels/application/SharedStorageModel.ts +1 -1
  611. package/front_end/panels/application/SharedStorageTreeElement.ts +1 -1
  612. package/front_end/panels/application/StorageBucketsTreeElement.ts +1 -1
  613. package/front_end/panels/application/StorageItemsToolbar.ts +1 -1
  614. package/front_end/panels/application/StorageView.ts +1 -1
  615. package/front_end/panels/application/TrustTokensTreeElement.ts +1 -1
  616. package/front_end/panels/application/appManifestView.css +1 -1
  617. package/front_end/panels/application/application-meta.ts +1 -1
  618. package/front_end/panels/application/application.ts +1 -1
  619. package/front_end/panels/application/backgroundServiceView.css +1 -1
  620. package/front_end/panels/application/components/BackForwardCacheStrings.ts +1 -1
  621. package/front_end/panels/application/components/BackForwardCacheView.ts +1 -1
  622. package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +1 -1
  623. package/front_end/panels/application/components/EndpointsGrid.ts +1 -1
  624. package/front_end/panels/application/components/FrameDetailsView.ts +1 -1
  625. package/front_end/panels/application/components/InterestGroupAccessGrid.ts +1 -1
  626. package/front_end/panels/application/components/OriginTrialTreeView.ts +1 -1
  627. package/front_end/panels/application/components/PermissionsPolicySection.ts +1 -1
  628. package/front_end/panels/application/components/ProtocolHandlersView.ts +1 -1
  629. package/front_end/panels/application/components/ReportsGrid.ts +1 -1
  630. package/front_end/panels/application/components/ServiceWorkerRouterView.ts +1 -1
  631. package/front_end/panels/application/components/SharedStorageAccessGrid.ts +1 -1
  632. package/front_end/panels/application/components/SharedStorageMetadataView.ts +1 -1
  633. package/front_end/panels/application/components/StackTrace.ts +1 -1
  634. package/front_end/panels/application/components/StorageMetadataView.ts +1 -1
  635. package/front_end/panels/application/components/TrustTokensView.ts +1 -1
  636. package/front_end/panels/application/components/backForwardCacheView.css +1 -1
  637. package/front_end/panels/application/components/badge.css +1 -1
  638. package/front_end/panels/application/components/bounceTrackingMitigationsView.css +1 -1
  639. package/front_end/panels/application/components/components.ts +1 -1
  640. package/front_end/panels/application/components/frameDetailsReportView.css +1 -1
  641. package/front_end/panels/application/components/interestGroupAccessGrid.css +1 -1
  642. package/front_end/panels/application/components/originTrialTokenRows.css +1 -1
  643. package/front_end/panels/application/components/originTrialTreeView.css +1 -1
  644. package/front_end/panels/application/components/permissionsPolicySection.css +1 -1
  645. package/front_end/panels/application/components/protocolHandlersView.css +1 -1
  646. package/front_end/panels/application/components/reportingApiGrid.css +1 -1
  647. package/front_end/panels/application/components/serviceWorkerRouterView.css +1 -1
  648. package/front_end/panels/application/components/sharedStorageAccessGrid.css +1 -1
  649. package/front_end/panels/application/components/sharedStorageMetadataView.css +1 -1
  650. package/front_end/panels/application/components/stackTraceLinkButton.css +1 -1
  651. package/front_end/panels/application/components/stackTraceRow.css +1 -1
  652. package/front_end/panels/application/components/trustTokensView.css +1 -1
  653. package/front_end/panels/application/cookieItemsView.css +1 -1
  654. package/front_end/panels/application/indexedDBViews.css +3 -27
  655. package/front_end/panels/application/interestGroupStorageView.css +1 -1
  656. package/front_end/panels/application/openedWindowDetailsView.css +1 -1
  657. package/front_end/panels/application/preloading/PreloadingView.ts +1 -1
  658. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +1 -1
  659. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +1 -1
  660. package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +1 -1
  661. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +1 -1
  662. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +1 -1
  663. package/front_end/panels/application/preloading/components/PreloadingString.ts +1 -1
  664. package/front_end/panels/application/preloading/components/RuleSetDetailsView.css +1 -1
  665. package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +1 -1
  666. package/front_end/panels/application/preloading/components/RuleSetGrid.ts +1 -1
  667. package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +1 -1
  668. package/front_end/panels/application/preloading/components/components.ts +1 -1
  669. package/front_end/panels/application/preloading/components/preloadingDetailsReportView.css +1 -1
  670. package/front_end/panels/application/preloading/components/preloadingDisabledInfobar.css +1 -1
  671. package/front_end/panels/application/preloading/components/preloadingGrid.css +1 -1
  672. package/front_end/panels/application/preloading/components/ruleSetGrid.css +1 -1
  673. package/front_end/panels/application/preloading/components/usedPreloadingView.css +1 -1
  674. package/front_end/panels/application/preloading/helper/PreloadingForward.ts +1 -1
  675. package/front_end/panels/application/preloading/helper/helper.ts +1 -1
  676. package/front_end/panels/application/preloading/preloadingView.css +1 -1
  677. package/front_end/panels/application/preloading/preloadingViewDropDown.css +1 -1
  678. package/front_end/panels/application/resourcesSidebar.css +1 -1
  679. package/front_end/panels/application/serviceWorkerCacheViews.css +1 -1
  680. package/front_end/panels/application/serviceWorkerUpdateCycleView.css +1 -1
  681. package/front_end/panels/application/serviceWorkersView.css +1 -1
  682. package/front_end/panels/application/sharedStorageEventsView.css +1 -1
  683. package/front_end/panels/application/storageView.css +1 -1
  684. package/front_end/panels/autofill/AutofillView.ts +1 -1
  685. package/front_end/panels/autofill/autofill-meta.ts +1 -1
  686. package/front_end/panels/autofill/autofill.ts +1 -1
  687. package/front_end/panels/autofill/autofillView.css +1 -1
  688. package/front_end/panels/browser_debugger/CSPViolationBreakpointsSidebarPane.ts +1 -1
  689. package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +1 -1
  690. package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +3 -29
  691. package/front_end/panels/browser_debugger/EventListenerBreakpointsSidebarPane.ts +1 -1
  692. package/front_end/panels/browser_debugger/ObjectEventListenersSidebarPane.ts +1 -1
  693. package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +1 -1
  694. package/front_end/panels/browser_debugger/browser_debugger-meta.ts +1 -1
  695. package/front_end/panels/browser_debugger/browser_debugger.ts +1 -1
  696. package/front_end/panels/browser_debugger/categorizedBreakpointsSidebarPane.css +1 -1
  697. package/front_end/panels/browser_debugger/domBreakpointsSidebarPane.css +1 -1
  698. package/front_end/panels/browser_debugger/xhrBreakpointsSidebarPane.css +1 -1
  699. package/front_end/panels/changes/ChangesSidebar.ts +1 -1
  700. package/front_end/panels/changes/ChangesView.ts +1 -1
  701. package/front_end/panels/changes/CombinedDiffView.ts +1 -1
  702. package/front_end/panels/changes/changes-meta.ts +1 -1
  703. package/front_end/panels/changes/changes.ts +1 -1
  704. package/front_end/panels/changes/changesSidebar.css +1 -1
  705. package/front_end/panels/changes/changesView.css +1 -1
  706. package/front_end/panels/changes/combinedDiffView.css +1 -1
  707. package/front_end/panels/common/AiCodeCompletionDisclaimer.ts +1 -1
  708. package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +1 -1
  709. package/front_end/panels/common/AiCodeCompletionTeaser.ts +1 -1
  710. package/front_end/panels/common/BadgeNotification.ts +31 -4
  711. package/front_end/panels/common/FreDialog.ts +1 -1
  712. package/front_end/panels/common/GdpSignUpDialog.ts +5 -8
  713. package/front_end/panels/common/aiCodeCompletionDisclaimer.css +1 -1
  714. package/front_end/panels/common/aiCodeCompletionSummaryToolbar.css +1 -1
  715. package/front_end/panels/common/aiCodeCompletionTeaser.css +1 -1
  716. package/front_end/panels/common/badgeNotification.css +1 -3
  717. package/front_end/panels/common/common.css +1 -1
  718. package/front_end/panels/common/common.ts +2 -2
  719. package/front_end/panels/common/freDialog.css +1 -1
  720. package/front_end/panels/common/gdpSignUpDialog.css +7 -15
  721. package/front_end/panels/console/ConsoleContextSelector.ts +1 -1
  722. package/front_end/panels/console/ConsoleFilter.ts +1 -1
  723. package/front_end/panels/console/ConsoleFormat.ts +5 -2
  724. package/front_end/panels/console/ConsolePanel.ts +1 -1
  725. package/front_end/panels/console/ConsolePinPane.ts +1 -1
  726. package/front_end/panels/console/ConsolePrompt.ts +3 -2
  727. package/front_end/panels/console/ConsoleSidebar.ts +1 -1
  728. package/front_end/panels/console/ConsoleView.ts +5 -1
  729. package/front_end/panels/console/ConsoleViewMessage.ts +1 -1
  730. package/front_end/panels/console/ConsoleViewport.ts +3 -29
  731. package/front_end/panels/console/ErrorStackParser.ts +1 -1
  732. package/front_end/panels/console/console-meta.ts +1 -1
  733. package/front_end/panels/console/console.ts +1 -1
  734. package/front_end/panels/console/consoleContextSelector.css +1 -1
  735. package/front_end/panels/console/consolePinPane.css +1 -1
  736. package/front_end/panels/console/consolePrompt.css +1 -1
  737. package/front_end/panels/console/consoleSidebar.css +1 -1
  738. package/front_end/panels/console_counters/WarningErrorCounter.ts +1 -1
  739. package/front_end/panels/console_counters/console_counters-meta.ts +1 -1
  740. package/front_end/panels/console_counters/console_counters.ts +1 -1
  741. package/front_end/panels/coverage/CoverageDecorationManager.ts +1 -1
  742. package/front_end/panels/coverage/CoverageListView.ts +1 -1
  743. package/front_end/panels/coverage/CoverageModel.ts +1 -1
  744. package/front_end/panels/coverage/CoverageView.ts +1 -1
  745. package/front_end/panels/coverage/coverage-meta.ts +1 -1
  746. package/front_end/panels/coverage/coverage.ts +1 -1
  747. package/front_end/panels/coverage/coverageListView.css +1 -1
  748. package/front_end/panels/coverage/coverageView.css +1 -1
  749. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +1 -1
  750. package/front_end/panels/css_overview/CSSOverviewModel.ts +1 -1
  751. package/front_end/panels/css_overview/CSSOverviewPanel.ts +1 -1
  752. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -1
  753. package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +1 -1
  754. package/front_end/panels/css_overview/CSSOverviewStartView.ts +1 -1
  755. package/front_end/panels/css_overview/CSSOverviewUnusedDeclarations.ts +1 -1
  756. package/front_end/panels/css_overview/cssOverviewCompletedView.css +1 -1
  757. package/front_end/panels/css_overview/cssOverviewProcessingView.css +1 -1
  758. package/front_end/panels/css_overview/cssOverviewSidebarPanel.css +1 -1
  759. package/front_end/panels/css_overview/cssOverviewStartView.css +1 -1
  760. package/front_end/panels/css_overview/css_overview-meta.ts +1 -1
  761. package/front_end/panels/css_overview/css_overview.ts +1 -1
  762. package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +1 -1
  763. package/front_end/panels/developer_resources/DeveloperResourcesView.ts +1 -1
  764. package/front_end/panels/developer_resources/developerResourcesListView.css +1 -1
  765. package/front_end/panels/developer_resources/developerResourcesView.css +1 -1
  766. package/front_end/panels/developer_resources/developer_resources-meta.ts +1 -1
  767. package/front_end/panels/developer_resources/developer_resources.ts +1 -1
  768. package/front_end/panels/elements/AccessibilityTreeUtils.ts +1 -1
  769. package/front_end/panels/elements/AccessibilityTreeView.ts +1 -1
  770. package/front_end/panels/elements/CSSRuleValidator.ts +1 -1
  771. package/front_end/panels/elements/CSSRuleValidatorHelper.ts +1 -1
  772. package/front_end/panels/elements/CSSValueTraceView.ts +1 -1
  773. package/front_end/panels/elements/ClassesPaneWidget.ts +1 -1
  774. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +1 -1
  775. package/front_end/panels/elements/ComputedStyleModel.ts +1 -1
  776. package/front_end/panels/elements/ComputedStyleWidget.ts +1 -1
  777. package/front_end/panels/elements/DOMLinkifier.ts +1 -1
  778. package/front_end/panels/elements/DOMPath.ts +1 -1
  779. package/front_end/panels/elements/ElementIssueUtils.ts +1 -1
  780. package/front_end/panels/elements/ElementStatePaneWidget.ts +1 -1
  781. package/front_end/panels/elements/ElementsPanel.ts +5 -1
  782. package/front_end/panels/elements/ElementsSidebarPane.ts +1 -1
  783. package/front_end/panels/elements/ElementsTreeElement.ts +1 -1
  784. package/front_end/panels/elements/ElementsTreeOutline.ts +1 -1
  785. package/front_end/panels/elements/ElementsTreeOutlineRenderer.ts +1 -1
  786. package/front_end/panels/elements/EventListenersWidget.ts +1 -1
  787. package/front_end/panels/elements/ImagePreviewPopover.ts +1 -1
  788. package/front_end/panels/elements/InspectElementModeController.ts +3 -29
  789. package/front_end/panels/elements/LayersWidget.ts +1 -1
  790. package/front_end/panels/elements/LayoutPane.ts +1 -1
  791. package/front_end/panels/elements/MarkerDecorator.ts +1 -1
  792. package/front_end/panels/elements/MetricsSidebarPane.ts +1 -1
  793. package/front_end/panels/elements/NodeStackTraceWidget.ts +1 -1
  794. package/front_end/panels/elements/PlatformFontsWidget.ts +3 -29
  795. package/front_end/panels/elements/PropertiesWidget.ts +1 -1
  796. package/front_end/panels/elements/PropertyNameCategories.ts +1 -1
  797. package/front_end/panels/elements/PropertyRenderer.ts +1 -1
  798. package/front_end/panels/elements/ShortcutTreeElement.ts +1 -1
  799. package/front_end/panels/elements/StyleEditorWidget.ts +1 -1
  800. package/front_end/panels/elements/StylePropertiesSection.ts +5 -5
  801. package/front_end/panels/elements/StylePropertyHighlighter.ts +1 -1
  802. package/front_end/panels/elements/StylePropertyTreeElement.ts +1 -1
  803. package/front_end/panels/elements/StylePropertyUtils.ts +1 -1
  804. package/front_end/panels/elements/StylesSidebarPane.ts +1 -1
  805. package/front_end/panels/elements/TopLayerContainer.ts +1 -1
  806. package/front_end/panels/elements/WebCustomData.ts +1 -1
  807. package/front_end/panels/elements/accessibilityTreeView.css +1 -1
  808. package/front_end/panels/elements/classesPaneWidget.css +1 -1
  809. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +1 -1
  810. package/front_end/panels/elements/components/AdornerManager.ts +1 -1
  811. package/front_end/panels/elements/components/CSSHintDetailsView.ts +1 -1
  812. package/front_end/panels/elements/components/CSSPropertyDocsView.ts +1 -1
  813. package/front_end/panels/elements/components/CSSPropertyIconResolver.ts +1 -1
  814. package/front_end/panels/elements/components/CSSQuery.ts +1 -1
  815. package/front_end/panels/elements/components/CSSVariableValueView.ts +1 -1
  816. package/front_end/panels/elements/components/ComputedStyleProperty.ts +1 -1
  817. package/front_end/panels/elements/components/ComputedStyleTrace.ts +1 -1
  818. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -1
  819. package/front_end/panels/elements/components/ElementsBreadcrumbsUtils.ts +1 -1
  820. package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +1 -1
  821. package/front_end/panels/elements/components/Helper.ts +1 -1
  822. package/front_end/panels/elements/components/QueryContainer.ts +1 -1
  823. package/front_end/panels/elements/components/StylePropertyEditor.ts +1 -1
  824. package/front_end/panels/elements/components/accessibilityTreeNode.css +1 -1
  825. package/front_end/panels/elements/components/components.ts +1 -1
  826. package/front_end/panels/elements/components/computedStyleProperty.css +1 -1
  827. package/front_end/panels/elements/components/computedStyleTrace.css +1 -1
  828. package/front_end/panels/elements/components/cssHintDetailsView.css +1 -1
  829. package/front_end/panels/elements/components/cssPropertyDocsView.css +1 -1
  830. package/front_end/panels/elements/components/cssQuery.css +1 -1
  831. package/front_end/panels/elements/components/cssVariableValueView.css +1 -1
  832. package/front_end/panels/elements/components/elementsBreadcrumbs.css +1 -1
  833. package/front_end/panels/elements/components/elementsTreeExpandButton.css +1 -1
  834. package/front_end/panels/elements/components/queryContainer.css +1 -1
  835. package/front_end/panels/elements/components/stylePropertyEditor.css +1 -1
  836. package/front_end/panels/elements/computedStyleSidebarPane.css +1 -1
  837. package/front_end/panels/elements/cssValueTraceView.css +1 -1
  838. package/front_end/panels/elements/domLinkifier.css +1 -1
  839. package/front_end/panels/elements/elementStatePaneWidget.css +1 -1
  840. package/front_end/panels/elements/elements-meta.ts +1 -1
  841. package/front_end/panels/elements/elements.ts +1 -1
  842. package/front_end/panels/elements/elementsTreeOutline.css +1 -1
  843. package/front_end/panels/elements/layersWidget.css +1 -1
  844. package/front_end/panels/elements/layoutPane.css +1 -1
  845. package/front_end/panels/elements/metricsSidebarPane.css +1 -1
  846. package/front_end/panels/elements/nodeStackTraceWidget.css +1 -1
  847. package/front_end/panels/elements/platformFontsWidget.css +1 -1
  848. package/front_end/panels/elements/propertiesWidget.css +1 -1
  849. package/front_end/panels/elements/stylePropertiesTreeOutline.css +1 -1
  850. package/front_end/panels/elements/stylesSidebarPane.css +1 -1
  851. package/front_end/panels/emulation/AdvancedApp.ts +1 -1
  852. package/front_end/panels/emulation/DeviceModeToolbar.ts +1 -1
  853. package/front_end/panels/emulation/DeviceModeView.ts +1 -1
  854. package/front_end/panels/emulation/DeviceModeWrapper.ts +1 -1
  855. package/front_end/panels/emulation/InspectedPagePlaceholder.ts +1 -1
  856. package/front_end/panels/emulation/MediaQueryInspector.ts +1 -1
  857. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +1 -1
  858. package/front_end/panels/emulation/components/components.ts +1 -1
  859. package/front_end/panels/emulation/deviceModeView.css +1 -1
  860. package/front_end/panels/emulation/emulation-meta.ts +1 -1
  861. package/front_end/panels/emulation/emulation.ts +1 -1
  862. package/front_end/panels/emulation/inspectedPagePlaceholder.css +1 -1
  863. package/front_end/panels/emulation/mediaQueryInspector.css +1 -1
  864. package/front_end/panels/event_listeners/EventListenersUtils.ts +1 -1
  865. package/front_end/panels/event_listeners/EventListenersView.ts +1 -1
  866. package/front_end/panels/event_listeners/eventListenersView.css +1 -1
  867. package/front_end/panels/event_listeners/event_listeners.ts +1 -1
  868. package/front_end/panels/explain/ActionDelegate.ts +1 -1
  869. package/front_end/panels/explain/PromptBuilder.ts +1 -1
  870. package/front_end/panels/explain/components/ConsoleInsight.ts +1 -1
  871. package/front_end/panels/explain/components/consoleInsight.css +1 -1
  872. package/front_end/panels/explain/components/consoleInsightSourcesList.css +1 -1
  873. package/front_end/panels/explain/explain-meta.ts +1 -1
  874. package/front_end/panels/explain/explain.ts +1 -1
  875. package/front_end/panels/issues/AffectedBlockedByResponseView.ts +1 -1
  876. package/front_end/panels/issues/AffectedCookiesView.ts +1 -1
  877. package/front_end/panels/issues/AffectedDescendantsWithinSelectElementView.ts +1 -1
  878. package/front_end/panels/issues/AffectedDirectivesView.ts +1 -1
  879. package/front_end/panels/issues/AffectedDocumentsInQuirksModeView.ts +1 -1
  880. package/front_end/panels/issues/AffectedElementsView.ts +1 -1
  881. package/front_end/panels/issues/AffectedElementsWithLowContrastView.ts +1 -1
  882. package/front_end/panels/issues/AffectedHeavyAdView.ts +1 -1
  883. package/front_end/panels/issues/AffectedMetadataAllowedSitesView.ts +1 -1
  884. package/front_end/panels/issues/AffectedPartitioningBlobURLView.ts +1 -1
  885. package/front_end/panels/issues/AffectedResourcesView.ts +1 -1
  886. package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +1 -1
  887. package/front_end/panels/issues/AffectedSourcesView.ts +1 -1
  888. package/front_end/panels/issues/AffectedTrackingSitesView.ts +1 -1
  889. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +1 -1
  890. package/front_end/panels/issues/CorsIssueDetailsView.ts +1 -1
  891. package/front_end/panels/issues/GenericIssueDetailsView.ts +1 -1
  892. package/front_end/panels/issues/HiddenIssuesRow.ts +1 -1
  893. package/front_end/panels/issues/IssueAggregator.ts +1 -1
  894. package/front_end/panels/issues/IssueKindView.ts +1 -1
  895. package/front_end/panels/issues/IssueRevealer.ts +1 -1
  896. package/front_end/panels/issues/IssueView.ts +1 -1
  897. package/front_end/panels/issues/IssuesPane.ts +1 -1
  898. package/front_end/panels/issues/components/ElementsPanelLink.ts +1 -1
  899. package/front_end/panels/issues/components/HideIssuesMenu.ts +1 -1
  900. package/front_end/panels/issues/components/components.ts +1 -1
  901. package/front_end/panels/issues/components/elementsPanelLink.css +1 -1
  902. package/front_end/panels/issues/components/hideIssuesMenu.css +1 -1
  903. package/front_end/panels/issues/issues-meta.ts +1 -1
  904. package/front_end/panels/issues/issues.ts +1 -1
  905. package/front_end/panels/issues/issuesPane.css +1 -1
  906. package/front_end/panels/issues/issuesTree.css +1 -1
  907. package/front_end/panels/js_timeline/js_timeline-meta.ts +1 -1
  908. package/front_end/panels/layer_viewer/LayerDetailsView.ts +3 -29
  909. package/front_end/panels/layer_viewer/LayerTreeOutline.ts +3 -29
  910. package/front_end/panels/layer_viewer/LayerViewHost.ts +1 -1
  911. package/front_end/panels/layer_viewer/Layers3DView.ts +3 -29
  912. package/front_end/panels/layer_viewer/PaintProfilerView.ts +3 -29
  913. package/front_end/panels/layer_viewer/TransformController.ts +1 -1
  914. package/front_end/panels/layer_viewer/layerDetailsView.css +1 -1
  915. package/front_end/panels/layer_viewer/layerTreeOutline.css +1 -1
  916. package/front_end/panels/layer_viewer/layer_viewer-meta.ts +1 -1
  917. package/front_end/panels/layer_viewer/layer_viewer.ts +1 -1
  918. package/front_end/panels/layer_viewer/layers3DView.css +1 -1
  919. package/front_end/panels/layer_viewer/paintProfiler.css +1 -1
  920. package/front_end/panels/layers/LayerPaintProfilerView.ts +1 -1
  921. package/front_end/panels/layers/LayerTreeModel.ts +3 -29
  922. package/front_end/panels/layers/LayersPanel.ts +3 -29
  923. package/front_end/panels/layers/layers-meta.ts +1 -1
  924. package/front_end/panels/layers/layers.ts +1 -1
  925. package/front_end/panels/lighthouse/LighthouseController.ts +1 -1
  926. package/front_end/panels/lighthouse/LighthousePanel.ts +1 -1
  927. package/front_end/panels/lighthouse/LighthouseProtocolService.ts +1 -1
  928. package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +1 -1
  929. package/front_end/panels/lighthouse/LighthouseReportSelector.ts +1 -1
  930. package/front_end/panels/lighthouse/LighthouseReporterTypes.ts +1 -1
  931. package/front_end/panels/lighthouse/LighthouseStartView.ts +3 -2
  932. package/front_end/panels/lighthouse/LighthouseStatusView.ts +1 -1
  933. package/front_end/panels/lighthouse/LighthouseTimespanView.ts +1 -1
  934. package/front_end/panels/lighthouse/RadioSetting.ts +1 -1
  935. package/front_end/panels/lighthouse/lighthouse-meta.ts +1 -1
  936. package/front_end/panels/lighthouse/lighthouse.ts +1 -1
  937. package/front_end/panels/lighthouse/lighthouseDialog.css +1 -1
  938. package/front_end/panels/lighthouse/lighthousePanel.css +1 -1
  939. package/front_end/panels/lighthouse/lighthouseStartView.css +1 -1
  940. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +1 -1
  941. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +1 -1
  942. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +1 -1
  943. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +1 -1
  944. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspectorUtils.ts +1 -1
  945. package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +1 -1
  946. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +1 -1
  947. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.ts +1 -1
  948. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewerUtils.ts +1 -1
  949. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +1 -1
  950. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +1 -1
  951. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +1 -1
  952. package/front_end/panels/linear_memory_inspector/components/components.ts +1 -1
  953. package/front_end/panels/linear_memory_inspector/components/linearMemoryHighlightChipList.css +1 -1
  954. package/front_end/panels/linear_memory_inspector/components/linearMemoryInspector.css +1 -1
  955. package/front_end/panels/linear_memory_inspector/components/linearMemoryNavigator.css +1 -1
  956. package/front_end/panels/linear_memory_inspector/components/linearMemoryValueInterpreter.css +1 -1
  957. package/front_end/panels/linear_memory_inspector/components/linearMemoryViewer.css +1 -1
  958. package/front_end/panels/linear_memory_inspector/components/valueInterpreterDisplay.css +1 -1
  959. package/front_end/panels/linear_memory_inspector/components/valueInterpreterSettings.css +1 -1
  960. package/front_end/panels/linear_memory_inspector/linear_memory_inspector-meta.ts +1 -1
  961. package/front_end/panels/linear_memory_inspector/linear_memory_inspector.ts +1 -1
  962. package/front_end/panels/media/EventDisplayTable.ts +1 -1
  963. package/front_end/panels/media/EventTimelineView.ts +1 -1
  964. package/front_end/panels/media/MainView.ts +1 -1
  965. package/front_end/panels/media/MediaModel.ts +1 -1
  966. package/front_end/panels/media/PlayerDetailView.ts +1 -1
  967. package/front_end/panels/media/PlayerListView.ts +1 -1
  968. package/front_end/panels/media/PlayerMessagesView.ts +1 -1
  969. package/front_end/panels/media/PlayerPropertiesView.ts +1 -1
  970. package/front_end/panels/media/TickingFlameChart.ts +1 -1
  971. package/front_end/panels/media/TickingFlameChartHelpers.ts +1 -1
  972. package/front_end/panels/media/eventDisplayTable.css +1 -1
  973. package/front_end/panels/media/media-meta.ts +1 -1
  974. package/front_end/panels/media/media.ts +1 -1
  975. package/front_end/panels/media/playerListView.css +1 -1
  976. package/front_end/panels/media/playerMessagesView.css +1 -1
  977. package/front_end/panels/media/playerPropertiesView.css +1 -1
  978. package/front_end/panels/mobile_throttling/CalibrationController.ts +1 -1
  979. package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +1 -1
  980. package/front_end/panels/mobile_throttling/NetworkPanelIndicator.ts +1 -1
  981. package/front_end/panels/mobile_throttling/NetworkThrottlingSelector.ts +1 -1
  982. package/front_end/panels/mobile_throttling/ThrottlingManager.ts +1 -1
  983. package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +1 -37
  984. package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +1 -1
  985. package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +1 -1
  986. package/front_end/panels/mobile_throttling/mobile_throttling.ts +1 -1
  987. package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +1 -1
  988. package/front_end/panels/network/BinaryResourceView.ts +1 -1
  989. package/front_end/panels/network/BlockedURLsPane.ts +1 -1
  990. package/front_end/panels/network/EventSourceMessagesView.ts +1 -1
  991. package/front_end/panels/network/NetworkConfigView.ts +2 -2
  992. package/front_end/panels/network/NetworkDataGridNode.ts +1 -1
  993. package/front_end/panels/network/NetworkFrameGrouper.ts +1 -1
  994. package/front_end/panels/network/NetworkItemView.ts +3 -29
  995. package/front_end/panels/network/NetworkLogView.ts +3 -3
  996. package/front_end/panels/network/NetworkLogViewColumns.ts +1 -1
  997. package/front_end/panels/network/NetworkManageCustomHeadersView.ts +1 -1
  998. package/front_end/panels/network/NetworkOverview.ts +1 -1
  999. package/front_end/panels/network/NetworkPanel.ts +1 -1
  1000. package/front_end/panels/network/NetworkSearchScope.ts +1 -1
  1001. package/front_end/panels/network/NetworkWaterfallColumn.ts +1 -1
  1002. package/front_end/panels/network/RequestCookiesView.ts +3 -29
  1003. package/front_end/panels/network/RequestHTMLView.ts +3 -29
  1004. package/front_end/panels/network/RequestInitiatorView.ts +1 -1
  1005. package/front_end/panels/network/RequestPayloadView.ts +1 -1
  1006. package/front_end/panels/network/RequestPreviewView.ts +3 -29
  1007. package/front_end/panels/network/RequestResponseView.ts +3 -29
  1008. package/front_end/panels/network/RequestTimingView.ts +3 -29
  1009. package/front_end/panels/network/ResourceChunkView.ts +1 -1
  1010. package/front_end/panels/network/ResourceDirectSocketChunkView.ts +1 -1
  1011. package/front_end/panels/network/ResourceWebSocketFrameView.ts +1 -1
  1012. package/front_end/panels/network/SignedExchangeInfoView.ts +1 -1
  1013. package/front_end/panels/network/binaryResourceView.css +1 -1
  1014. package/front_end/panels/network/blockedURLsPane.css +1 -1
  1015. package/front_end/panels/network/components/DirectSocketConnectionView.ts +1 -1
  1016. package/front_end/panels/network/components/EditableSpan.css +1 -1
  1017. package/front_end/panels/network/components/EditableSpan.ts +1 -1
  1018. package/front_end/panels/network/components/HeaderSectionRow.css +1 -1
  1019. package/front_end/panels/network/components/HeaderSectionRow.ts +3 -4
  1020. package/front_end/panels/network/components/RequestHeaderSection.css +1 -1
  1021. package/front_end/panels/network/components/RequestHeaderSection.ts +1 -1
  1022. package/front_end/panels/network/components/RequestHeadersView.css +1 -1
  1023. package/front_end/panels/network/components/RequestHeadersView.ts +1 -1
  1024. package/front_end/panels/network/components/RequestTrustTokensView.css +1 -1
  1025. package/front_end/panels/network/components/RequestTrustTokensView.ts +1 -1
  1026. package/front_end/panels/network/components/ResponseHeaderSection.css +1 -1
  1027. package/front_end/panels/network/components/ResponseHeaderSection.ts +1 -1
  1028. package/front_end/panels/network/components/WebBundleInfoView.css +1 -1
  1029. package/front_end/panels/network/components/WebBundleInfoView.ts +1 -1
  1030. package/front_end/panels/network/components/components.ts +1 -1
  1031. package/front_end/panels/network/eventSourceMessagesView.css +1 -1
  1032. package/front_end/panels/network/forward/NetworkRequestId.ts +1 -1
  1033. package/front_end/panels/network/forward/UIFilter.ts +1 -1
  1034. package/front_end/panels/network/forward/UIRequestLocation.ts +1 -1
  1035. package/front_end/panels/network/forward/forward.ts +1 -1
  1036. package/front_end/panels/network/network-meta.ts +1 -1
  1037. package/front_end/panels/network/network.ts +1 -1
  1038. package/front_end/panels/network/networkConfigView.css +1 -1
  1039. package/front_end/panels/network/networkLogView.css +3 -27
  1040. package/front_end/panels/network/networkManageCustomHeadersView.css +1 -1
  1041. package/front_end/panels/network/networkTimingTable.css +1 -1
  1042. package/front_end/panels/network/networkWaterfallColumn.css +1 -1
  1043. package/front_end/panels/network/requestCookiesView.css +2 -2
  1044. package/front_end/panels/network/requestHTMLView.css +1 -1
  1045. package/front_end/panels/network/requestHeadersTree.css +1 -1
  1046. package/front_end/panels/network/requestInitiatorView.css +1 -1
  1047. package/front_end/panels/network/requestInitiatorViewTree.css +1 -1
  1048. package/front_end/panels/network/requestPayloadTree.css +1 -1
  1049. package/front_end/panels/network/requestPayloadView.css +1 -1
  1050. package/front_end/panels/network/resourceChunkView.css +1 -1
  1051. package/front_end/panels/network/signedExchangeInfoTree.css +1 -1
  1052. package/front_end/panels/network/signedExchangeInfoView.css +1 -1
  1053. package/front_end/panels/performance_monitor/PerformanceMonitor.ts +1 -1
  1054. package/front_end/panels/performance_monitor/performanceMonitor.css +1 -1
  1055. package/front_end/panels/performance_monitor/performance_monitor-meta.ts +1 -1
  1056. package/front_end/panels/performance_monitor/performance_monitor.ts +1 -1
  1057. package/front_end/panels/profiler/BottomUpProfileDataGrid.ts +1 -1
  1058. package/front_end/panels/profiler/ChildrenProvider.ts +1 -1
  1059. package/front_end/panels/profiler/HeapDetachedElementsDataGrid.ts +1 -1
  1060. package/front_end/panels/profiler/HeapDetachedElementsView.ts +1 -1
  1061. package/front_end/panels/profiler/HeapProfileView.ts +2 -4
  1062. package/front_end/panels/profiler/HeapProfilerPanel.ts +1 -1
  1063. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +3 -29
  1064. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +3 -29
  1065. package/front_end/panels/profiler/HeapSnapshotProxy.ts +3 -29
  1066. package/front_end/panels/profiler/HeapSnapshotView.ts +8 -30
  1067. package/front_end/panels/profiler/HeapTimelineOverview.ts +1 -1
  1068. package/front_end/panels/profiler/IsolateSelector.ts +1 -1
  1069. package/front_end/panels/profiler/LiveHeapProfileView.ts +1 -1
  1070. package/front_end/panels/profiler/ModuleUIStrings.ts +1 -1
  1071. package/front_end/panels/profiler/ProfileDataGrid.ts +5 -1
  1072. package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +7 -29
  1073. package/front_end/panels/profiler/ProfileHeader.ts +1 -1
  1074. package/front_end/panels/profiler/ProfileLauncherView.ts +3 -29
  1075. package/front_end/panels/profiler/ProfileSidebarTreeElement.ts +1 -1
  1076. package/front_end/panels/profiler/ProfileTypeRegistry.ts +1 -1
  1077. package/front_end/panels/profiler/ProfileView.ts +5 -1
  1078. package/front_end/panels/profiler/ProfilesPanel.ts +1 -1
  1079. package/front_end/panels/profiler/TopDownProfileDataGrid.ts +1 -1
  1080. package/front_end/panels/profiler/liveHeapProfile.css +1 -1
  1081. package/front_end/panels/profiler/profileLauncherView.css +1 -1
  1082. package/front_end/panels/profiler/profiler-meta.ts +1 -1
  1083. package/front_end/panels/profiler/profiler.ts +1 -1
  1084. package/front_end/panels/profiler/profilesSidebarTree.css +1 -1
  1085. package/front_end/panels/protocol_monitor/JSONEditor.css +1 -1
  1086. package/front_end/panels/protocol_monitor/JSONEditor.ts +1 -1
  1087. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +1 -1
  1088. package/front_end/panels/protocol_monitor/protocolMonitor.css +1 -1
  1089. package/front_end/panels/protocol_monitor/protocol_monitor-meta.ts +1 -1
  1090. package/front_end/panels/protocol_monitor/protocol_monitor.ts +1 -1
  1091. package/front_end/panels/recorder/RecorderController.ts +1 -1
  1092. package/front_end/panels/recorder/RecorderEvents.ts +1 -1
  1093. package/front_end/panels/recorder/RecorderPanel.ts +1 -1
  1094. package/front_end/panels/recorder/components/ControlButton.ts +1 -1
  1095. package/front_end/panels/recorder/components/CreateRecordingView.ts +3 -3
  1096. package/front_end/panels/recorder/components/ExtensionView.ts +1 -1
  1097. package/front_end/panels/recorder/components/RecordingListView.ts +1 -1
  1098. package/front_end/panels/recorder/components/RecordingView.ts +1 -1
  1099. package/front_end/panels/recorder/components/ReplaySection.ts +1 -1
  1100. package/front_end/panels/recorder/components/SelectButton.ts +50 -33
  1101. package/front_end/panels/recorder/components/StepEditor.ts +1 -1
  1102. package/front_end/panels/recorder/components/StepView.ts +1 -1
  1103. package/front_end/panels/recorder/components/TimelineSection.ts +2 -1
  1104. package/front_end/panels/recorder/components/components.ts +1 -1
  1105. package/front_end/panels/recorder/components/controlButton.css +1 -1
  1106. package/front_end/panels/recorder/components/createRecordingView.css +1 -1
  1107. package/front_end/panels/recorder/components/extensionView.css +1 -1
  1108. package/front_end/panels/recorder/components/recordingListView.css +1 -1
  1109. package/front_end/panels/recorder/components/recordingView.css +1 -1
  1110. package/front_end/panels/recorder/components/selectButton.css +7 -13
  1111. package/front_end/panels/recorder/components/startView.css +1 -1
  1112. package/front_end/panels/recorder/components/stepEditor.css +1 -1
  1113. package/front_end/panels/recorder/components/stepView.css +1 -1
  1114. package/front_end/panels/recorder/components/timelineSection.css +1 -1
  1115. package/front_end/panels/recorder/components/util.ts +1 -1
  1116. package/front_end/panels/recorder/controllers/SelectorPicker.ts +1 -1
  1117. package/front_end/panels/recorder/controllers/controllers.ts +1 -1
  1118. package/front_end/panels/recorder/converters/Converter.ts +1 -1
  1119. package/front_end/panels/recorder/converters/ExtensionConverter.ts +1 -1
  1120. package/front_end/panels/recorder/converters/JSONConverter.ts +1 -1
  1121. package/front_end/panels/recorder/converters/LighthouseConverter.ts +1 -1
  1122. package/front_end/panels/recorder/converters/PuppeteerConverter.ts +1 -1
  1123. package/front_end/panels/recorder/converters/PuppeteerFirefoxConverter.ts +1 -1
  1124. package/front_end/panels/recorder/converters/PuppeteerReplayConverter.ts +1 -1
  1125. package/front_end/panels/recorder/converters/converters.ts +1 -1
  1126. package/front_end/panels/recorder/extensions/ExtensionManager.ts +1 -1
  1127. package/front_end/panels/recorder/extensions/extensions.ts +1 -1
  1128. package/front_end/panels/recorder/injected/Logger.ts +1 -1
  1129. package/front_end/panels/recorder/injected/MonotonicArray.ts +1 -1
  1130. package/front_end/panels/recorder/injected/RecordingClient.ts +1 -1
  1131. package/front_end/panels/recorder/injected/SelectorComputer.ts +1 -1
  1132. package/front_end/panels/recorder/injected/SelectorPicker.ts +1 -1
  1133. package/front_end/panels/recorder/injected/Step.ts +1 -1
  1134. package/front_end/panels/recorder/injected/injected.ts +1 -1
  1135. package/front_end/panels/recorder/injected/rollup.config.mjs +1 -1
  1136. package/front_end/panels/recorder/injected/selectors/ARIASelector.ts +1 -1
  1137. package/front_end/panels/recorder/injected/selectors/CSSSelector.ts +1 -1
  1138. package/front_end/panels/recorder/injected/selectors/PierceSelector.ts +1 -1
  1139. package/front_end/panels/recorder/injected/selectors/Selector.ts +1 -1
  1140. package/front_end/panels/recorder/injected/selectors/TextSelector.ts +1 -1
  1141. package/front_end/panels/recorder/injected/selectors/XPath.ts +1 -1
  1142. package/front_end/panels/recorder/injected/util.ts +1 -1
  1143. package/front_end/panels/recorder/models/ConverterIds.ts +1 -1
  1144. package/front_end/panels/recorder/models/RecorderSettings.ts +1 -1
  1145. package/front_end/panels/recorder/models/RecorderShortcutHelper.ts +1 -1
  1146. package/front_end/panels/recorder/models/RecordingPlayer.ts +1 -1
  1147. package/front_end/panels/recorder/models/RecordingSession.ts +1 -1
  1148. package/front_end/panels/recorder/models/RecordingSettings.ts +1 -1
  1149. package/front_end/panels/recorder/models/RecordingStorage.ts +1 -1
  1150. package/front_end/panels/recorder/models/SDKUtils.ts +1 -1
  1151. package/front_end/panels/recorder/models/Schema.ts +1 -1
  1152. package/front_end/panels/recorder/models/SchemaUtils.ts +1 -1
  1153. package/front_end/panels/recorder/models/ScreenshotStorage.ts +1 -1
  1154. package/front_end/panels/recorder/models/ScreenshotUtils.ts +1 -1
  1155. package/front_end/panels/recorder/models/Section.ts +1 -1
  1156. package/front_end/panels/recorder/models/Tooltip.ts +1 -1
  1157. package/front_end/panels/recorder/models/models.ts +1 -1
  1158. package/front_end/panels/recorder/recorder-actions/recorder-actions.ts +1 -1
  1159. package/front_end/panels/recorder/recorder-meta.ts +1 -1
  1160. package/front_end/panels/recorder/recorder.ts +1 -1
  1161. package/front_end/panels/recorder/recorderController.css +1 -1
  1162. package/front_end/panels/recorder/testing/RecorderHelpers.ts +1 -1
  1163. package/front_end/panels/recorder/util/SharedObject.ts +1 -1
  1164. package/front_end/panels/recorder/util/util.ts +1 -1
  1165. package/front_end/panels/screencast/InputModel.ts +1 -1
  1166. package/front_end/panels/screencast/ScreencastApp.ts +1 -1
  1167. package/front_end/panels/screencast/ScreencastView.ts +3 -29
  1168. package/front_end/panels/screencast/screencast-meta.ts +1 -1
  1169. package/front_end/panels/screencast/screencast.ts +1 -1
  1170. package/front_end/panels/screencast/screencastView.css +3 -27
  1171. package/front_end/panels/search/SearchResultsPane.ts +1 -1
  1172. package/front_end/panels/search/SearchScope.ts +1 -1
  1173. package/front_end/panels/search/SearchView.ts +220 -206
  1174. package/front_end/panels/search/search.ts +1 -1
  1175. package/front_end/panels/search/searchResultsPane.css +1 -1
  1176. package/front_end/panels/search/searchView.css +1 -1
  1177. package/front_end/panels/security/CookieControlsTreeElement.ts +1 -1
  1178. package/front_end/panels/security/CookieControlsView.ts +1 -1
  1179. package/front_end/panels/security/CookieReportTreeElement.ts +1 -1
  1180. package/front_end/panels/security/CookieReportView.ts +1 -1
  1181. package/front_end/panels/security/IPProtectionTreeElement.ts +1 -1
  1182. package/front_end/panels/security/IPProtectionView.ts +1 -1
  1183. package/front_end/panels/security/OriginTreeElement.ts +1 -1
  1184. package/front_end/panels/security/SecurityModel.ts +1 -1
  1185. package/front_end/panels/security/SecurityPanel.ts +1 -1
  1186. package/front_end/panels/security/SecurityPanelSidebar.ts +1 -1
  1187. package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +1 -1
  1188. package/front_end/panels/security/cookieControlsView.css +1 -1
  1189. package/front_end/panels/security/cookieReportView.css +1 -1
  1190. package/front_end/panels/security/ipProtectionView.css +1 -1
  1191. package/front_end/panels/security/lockIcon.css +1 -1
  1192. package/front_end/panels/security/mainView.css +1 -1
  1193. package/front_end/panels/security/originView.css +1 -1
  1194. package/front_end/panels/security/security-meta.ts +1 -1
  1195. package/front_end/panels/security/security.ts +1 -1
  1196. package/front_end/panels/security/sidebar.css +1 -1
  1197. package/front_end/panels/sensors/LocationsSettingsTab.ts +1 -1
  1198. package/front_end/panels/sensors/SensorsView.ts +1 -1
  1199. package/front_end/panels/sensors/locationsSettingsTab.css +1 -1
  1200. package/front_end/panels/sensors/sensors-meta.ts +1 -1
  1201. package/front_end/panels/sensors/sensors.css +1 -1
  1202. package/front_end/panels/sensors/sensors.ts +1 -1
  1203. package/front_end/panels/settings/AISettingsTab.ts +1 -1
  1204. package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +1 -1
  1205. package/front_end/panels/settings/KeybindsSettingsTab.ts +2 -2
  1206. package/front_end/panels/settings/SettingsScreen.ts +4 -30
  1207. package/front_end/{models/persistence → panels/settings}/WorkspaceSettingsTab.ts +34 -31
  1208. package/front_end/panels/settings/aiSettingsTab.css +1 -1
  1209. package/front_end/panels/settings/components/SyncSection.ts +15 -8
  1210. package/front_end/panels/settings/components/components.ts +1 -1
  1211. package/front_end/panels/settings/components/syncSection.css +12 -5
  1212. package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +1 -1
  1213. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +1 -1
  1214. package/front_end/panels/settings/emulation/components/components.ts +1 -1
  1215. package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +1 -1
  1216. package/front_end/panels/settings/emulation/devicesSettingsTab.css +1 -1
  1217. package/front_end/panels/settings/emulation/emulation-meta.ts +1 -1
  1218. package/front_end/panels/settings/emulation/emulation.ts +1 -1
  1219. package/front_end/panels/settings/emulation/utils/StructuredHeaders.ts +1 -1
  1220. package/front_end/panels/settings/emulation/utils/UserAgentMetadata.ts +1 -1
  1221. package/front_end/panels/settings/emulation/utils/utils.ts +1 -1
  1222. package/front_end/panels/settings/frameworkIgnoreListSettingsTab.css +1 -1
  1223. package/front_end/panels/settings/keybindsSettingsTab.css +1 -1
  1224. package/front_end/panels/settings/settings-meta.ts +22 -1
  1225. package/front_end/panels/settings/settings.ts +3 -2
  1226. package/front_end/panels/settings/settingsScreen.css +1 -1
  1227. package/front_end/{models/persistence → panels/settings}/workspaceSettingsTab.css +1 -1
  1228. package/front_end/panels/snippets/ScriptSnippetFileSystem.ts +1 -1
  1229. package/front_end/panels/snippets/SnippetsQuickOpen.ts +1 -1
  1230. package/front_end/panels/snippets/snippets.ts +1 -1
  1231. package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -1
  1232. package/front_end/panels/sources/AiCodeCompletionPlugin.ts +4 -4
  1233. package/front_end/panels/sources/AiWarningInfobarPlugin.ts +1 -1
  1234. package/front_end/panels/sources/BreakpointEditDialog.ts +1 -1
  1235. package/front_end/panels/sources/BreakpointsView.ts +1 -1
  1236. package/front_end/panels/sources/BreakpointsViewUtils.ts +1 -1
  1237. package/front_end/panels/sources/CSSPlugin.ts +1 -1
  1238. package/front_end/panels/sources/CallStackSidebarPane.ts +1 -1
  1239. package/front_end/panels/sources/CategorizedBreakpointL10n.ts +1 -1
  1240. package/front_end/panels/sources/CoveragePlugin.ts +1 -1
  1241. package/front_end/panels/sources/DebuggerPausedMessage.ts +1 -1
  1242. package/front_end/panels/sources/DebuggerPlugin.ts +3 -29
  1243. package/front_end/panels/sources/EditingLocationHistoryManager.ts +3 -29
  1244. package/front_end/panels/sources/FilePathScoreFunction.ts +3 -29
  1245. package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +1 -1
  1246. package/front_end/panels/sources/GoToLineQuickOpen.ts +1 -1
  1247. package/front_end/panels/sources/InplaceFormatterEditorAction.ts +1 -1
  1248. package/front_end/panels/sources/NavigatorView.ts +3 -29
  1249. package/front_end/panels/sources/OpenFileQuickOpen.ts +1 -1
  1250. package/front_end/panels/sources/OutlineQuickOpen.ts +1 -1
  1251. package/front_end/panels/sources/Plugin.ts +1 -1
  1252. package/front_end/panels/sources/ProfilePlugin.ts +1 -1
  1253. package/front_end/panels/sources/ResourceOriginPlugin.ts +1 -1
  1254. package/front_end/panels/sources/ScopeChainSidebarPane.ts +1 -1
  1255. package/front_end/panels/sources/SearchSourcesView.ts +1 -1
  1256. package/front_end/panels/sources/SnippetsPlugin.ts +1 -1
  1257. package/front_end/panels/sources/SourcesNavigator.ts +3 -29
  1258. package/front_end/panels/sources/SourcesPanel.ts +1 -1
  1259. package/front_end/panels/sources/SourcesSearchScope.ts +3 -29
  1260. package/front_end/panels/sources/SourcesView.ts +5 -1
  1261. package/front_end/panels/sources/TabbedEditorContainer.ts +3 -29
  1262. package/front_end/panels/sources/ThreadsSidebarPane.ts +1 -1
  1263. package/front_end/panels/sources/UISourceCodeFrame.ts +5 -30
  1264. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +3 -3
  1265. package/front_end/panels/sources/breakpointEditDialog.css +1 -1
  1266. package/front_end/panels/sources/breakpointsView.css +1 -1
  1267. package/front_end/panels/sources/callStackSidebarPane.css +1 -1
  1268. package/front_end/panels/sources/components/HeadersView.css +1 -1
  1269. package/front_end/panels/sources/components/HeadersView.ts +1 -1
  1270. package/front_end/panels/sources/components/components.ts +1 -1
  1271. package/front_end/panels/sources/debuggerPausedMessage.css +1 -1
  1272. package/front_end/panels/sources/dialog.css +1 -1
  1273. package/front_end/panels/sources/navigatorView.css +1 -1
  1274. package/front_end/panels/sources/scopeChainSidebarPane.css +1 -1
  1275. package/front_end/panels/sources/sources-meta.ts +1 -1
  1276. package/front_end/panels/sources/sources.ts +1 -1
  1277. package/front_end/panels/sources/sourcesNavigator.css +1 -1
  1278. package/front_end/panels/sources/sourcesView.css +3 -27
  1279. package/front_end/panels/sources/threadsSidebarPane.css +1 -1
  1280. package/front_end/panels/sources/watchExpressionsSidebarPane.css +1 -1
  1281. package/front_end/panels/timeline/ActiveFilters.ts +1 -1
  1282. package/front_end/panels/timeline/AnimationsTrackAppender.ts +1 -1
  1283. package/front_end/panels/timeline/AnnotationHelpers.ts +3 -4
  1284. package/front_end/panels/timeline/AppenderUtils.ts +1 -1
  1285. package/front_end/panels/timeline/BenchmarkEvents.ts +1 -1
  1286. package/front_end/panels/timeline/CLSLinkifier.ts +1 -1
  1287. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +13 -10
  1288. package/front_end/panels/timeline/CountersGraph.ts +12 -38
  1289. package/front_end/panels/timeline/EasterEgg.d.ts +1 -1
  1290. package/front_end/panels/timeline/EntriesFilter.ts +1 -1
  1291. package/front_end/panels/timeline/EventsTimelineTreeView.ts +7 -8
  1292. package/front_end/panels/timeline/ExtensionTrackAppender.ts +1 -1
  1293. package/front_end/panels/timeline/GPUTrackAppender.ts +1 -1
  1294. package/front_end/panels/timeline/Initiators.ts +1 -1
  1295. package/front_end/panels/timeline/InteractionsTrackAppender.ts +2 -3
  1296. package/front_end/panels/timeline/IsolateSelector.ts +1 -1
  1297. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +1 -1
  1298. package/front_end/panels/timeline/ModificationsManager.ts +1 -1
  1299. package/front_end/panels/timeline/NetworkTrackAppender.ts +1 -1
  1300. package/front_end/panels/timeline/RecordingMetadata.ts +1 -1
  1301. package/front_end/panels/timeline/SaveFileFormatter.ts +1 -1
  1302. package/front_end/panels/timeline/StatusDialog.ts +1 -1
  1303. package/front_end/panels/timeline/TargetForEvent.ts +1 -1
  1304. package/front_end/panels/timeline/ThirdPartyTreeView.ts +3 -4
  1305. package/front_end/panels/timeline/ThreadAppender.ts +16 -8
  1306. package/front_end/panels/timeline/TimelineController.ts +1 -1
  1307. package/front_end/panels/timeline/TimelineDetailsView.ts +12 -12
  1308. package/front_end/panels/timeline/TimelineEventOverview.ts +16 -42
  1309. package/front_end/panels/timeline/TimelineFilters.ts +1 -1
  1310. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +11 -35
  1311. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +4 -5
  1312. package/front_end/panels/timeline/TimelineFlameChartView.ts +12 -7
  1313. package/front_end/panels/timeline/TimelineHistoryManager.ts +3 -3
  1314. package/front_end/panels/timeline/TimelineLayersView.ts +1 -1
  1315. package/front_end/panels/timeline/TimelineLoader.ts +1 -1
  1316. package/front_end/panels/timeline/TimelineMiniMap.ts +1 -1
  1317. package/front_end/panels/timeline/TimelinePaintProfilerView.ts +1 -1
  1318. package/front_end/panels/timeline/TimelinePanel.ts +37 -22
  1319. package/front_end/panels/timeline/TimelineSelection.ts +1 -1
  1320. package/front_end/panels/timeline/TimelineSelectorStatsView.ts +9 -11
  1321. package/front_end/panels/timeline/TimelineTreeView.ts +18 -9
  1322. package/front_end/panels/timeline/TimelineUIUtils.ts +36 -33
  1323. package/front_end/panels/timeline/TimingsTrackAppender.ts +2 -1
  1324. package/front_end/panels/timeline/TracingLayerTree.ts +1 -1
  1325. package/front_end/panels/timeline/TrackConfiguration.ts +1 -1
  1326. package/front_end/panels/timeline/UIDevtoolsController.ts +8 -34
  1327. package/front_end/panels/timeline/UIDevtoolsUtils.ts +26 -69
  1328. package/front_end/panels/timeline/components/Breadcrumbs.ts +1 -1
  1329. package/front_end/panels/timeline/components/BreadcrumbsUI.ts +1 -1
  1330. package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +1 -1
  1331. package/front_end/panels/timeline/components/DetailsView.ts +1 -1
  1332. package/front_end/panels/timeline/components/ExportTraceOptions.ts +1 -1
  1333. package/front_end/panels/timeline/components/FieldSettingsDialog.ts +1 -1
  1334. package/front_end/panels/timeline/components/IgnoreListSetting.ts +1 -1
  1335. package/front_end/panels/timeline/components/InteractionBreakdown.ts +1 -1
  1336. package/front_end/panels/timeline/components/LayoutShiftDetails.ts +2 -3
  1337. package/front_end/panels/timeline/components/LiveMetricsView.ts +6 -4
  1338. package/front_end/panels/timeline/components/MetricCard.ts +1 -1
  1339. package/front_end/panels/timeline/components/MetricCompareStrings.ts +1 -1
  1340. package/front_end/panels/timeline/components/NetworkRequestDetails.ts +6 -7
  1341. package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +2 -2
  1342. package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +1 -1
  1343. package/front_end/panels/timeline/components/OriginMap.ts +1 -1
  1344. package/front_end/panels/timeline/components/RelatedInsightChips.ts +1 -1
  1345. package/front_end/panels/timeline/components/Sidebar.ts +1 -1
  1346. package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +7 -8
  1347. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +1 -1
  1348. package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +3 -3
  1349. package/front_end/panels/timeline/components/TimelineSummary.ts +1 -1
  1350. package/front_end/panels/timeline/components/Utils.ts +1 -1
  1351. package/front_end/panels/timeline/components/breadcrumbsUI.css +1 -1
  1352. package/front_end/panels/timeline/components/components.ts +1 -1
  1353. package/front_end/panels/timeline/components/cpuThrottlingSelector.css +1 -1
  1354. package/front_end/panels/timeline/components/exportTraceOptions.css +1 -1
  1355. package/front_end/panels/timeline/components/fieldSettingsDialog.css +1 -1
  1356. package/front_end/panels/timeline/components/ignoreListSetting.css +1 -1
  1357. package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +7 -7
  1358. package/front_end/panels/timeline/components/insights/CLSCulprits.ts +1 -1
  1359. package/front_end/panels/timeline/components/insights/Cache.ts +1 -1
  1360. package/front_end/panels/timeline/components/insights/Checklist.ts +1 -1
  1361. package/front_end/panels/timeline/components/insights/DOMSize.ts +1 -1
  1362. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +1 -1
  1363. package/front_end/panels/timeline/components/insights/DuplicatedJavaScript.ts +1 -1
  1364. package/front_end/panels/timeline/components/insights/EventRef.ts +1 -1
  1365. package/front_end/panels/timeline/components/insights/FontDisplay.ts +1 -1
  1366. package/front_end/panels/timeline/components/insights/ForcedReflow.ts +1 -1
  1367. package/front_end/panels/timeline/components/insights/Helpers.ts +1 -1
  1368. package/front_end/panels/timeline/components/insights/INPBreakdown.ts +1 -1
  1369. package/front_end/panels/timeline/components/insights/ImageDelivery.ts +1 -1
  1370. package/front_end/panels/timeline/components/insights/LCPBreakdown.ts +1 -1
  1371. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +1 -1
  1372. package/front_end/panels/timeline/components/insights/LegacyJavaScript.ts +1 -1
  1373. package/front_end/panels/timeline/components/insights/ModernHTTP.ts +1 -1
  1374. package/front_end/panels/timeline/components/insights/NetworkDependencyTree.ts +1 -1
  1375. package/front_end/panels/timeline/components/insights/NodeLink.ts +1 -1
  1376. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +1 -1
  1377. package/front_end/panels/timeline/components/insights/ScriptRef.ts +1 -1
  1378. package/front_end/panels/timeline/components/insights/SidebarInsight.ts +1 -1
  1379. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +1 -1
  1380. package/front_end/panels/timeline/components/insights/Table.ts +1 -1
  1381. package/front_end/panels/timeline/components/insights/ThirdParties.ts +1 -1
  1382. package/front_end/panels/timeline/components/insights/Viewport.ts +1 -1
  1383. package/front_end/panels/timeline/components/insights/baseInsightComponent.css +1 -1
  1384. package/front_end/panels/timeline/components/insights/checklist.css +1 -1
  1385. package/front_end/panels/timeline/components/insights/insights.ts +1 -1
  1386. package/front_end/panels/timeline/components/insights/networkDependencyTreeInsight.css +1 -1
  1387. package/front_end/panels/timeline/components/insights/table.css +1 -1
  1388. package/front_end/panels/timeline/components/insights/types.ts +1 -1
  1389. package/front_end/panels/timeline/components/interactionBreakdown.css +1 -1
  1390. package/front_end/panels/timeline/components/layoutShiftDetails.css +1 -1
  1391. package/front_end/panels/timeline/components/liveMetricsView.css +1 -1
  1392. package/front_end/panels/timeline/components/metricCard.css +1 -1
  1393. package/front_end/panels/timeline/components/metricValueStyles.css +1 -1
  1394. package/front_end/panels/timeline/components/networkRequestDetails.css +1 -1
  1395. package/front_end/panels/timeline/components/networkRequestTooltip.css +1 -1
  1396. package/front_end/panels/timeline/components/networkThrottlingSelector.css +1 -1
  1397. package/front_end/panels/timeline/components/originMap.css +1 -1
  1398. package/front_end/panels/timeline/components/relatedInsightChips.css +1 -1
  1399. package/front_end/panels/timeline/components/sidebarAnnotationsTab.css +1 -1
  1400. package/front_end/panels/timeline/components/sidebarInsightsTab.css +1 -1
  1401. package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +1 -1
  1402. package/front_end/panels/timeline/components/timelineSummary.css +1 -1
  1403. package/front_end/panels/timeline/enable-easter-egg.js +1 -1
  1404. package/front_end/panels/timeline/extensions/ExtensionUI.ts +1 -1
  1405. package/front_end/panels/timeline/extensions/extensions.ts +1 -1
  1406. package/front_end/panels/timeline/overlays/OverlaysImpl.ts +5 -5
  1407. package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +1 -1
  1408. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +3 -4
  1409. package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +1 -1
  1410. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +1 -1
  1411. package/front_end/panels/timeline/overlays/components/components.ts +1 -1
  1412. package/front_end/panels/timeline/overlays/components/entriesLinkOverlay.css +1 -1
  1413. package/front_end/panels/timeline/overlays/components/entryLabelOverlay.css +1 -1
  1414. package/front_end/panels/timeline/overlays/components/timeRangeOverlay.css +1 -1
  1415. package/front_end/panels/timeline/overlays/components/timespanBreakdownOverlay.css +1 -1
  1416. package/front_end/panels/timeline/overlays/overlays.ts +1 -1
  1417. package/front_end/panels/timeline/thirdPartyTreeView.css +1 -1
  1418. package/front_end/panels/timeline/timeline-meta.ts +1 -1
  1419. package/front_end/panels/timeline/timeline.ts +1 -1
  1420. package/front_end/panels/timeline/timelineDetailsView.css +1 -1
  1421. package/front_end/panels/timeline/timelineFlameChartView.css +1 -1
  1422. package/front_end/panels/timeline/timelineFlamechartPopover.css +1 -1
  1423. package/front_end/panels/timeline/timelineHistoryManager.css +1 -1
  1424. package/front_end/panels/timeline/timelineMiniMap.css +1 -1
  1425. package/front_end/panels/timeline/timelinePaintProfiler.css +1 -1
  1426. package/front_end/panels/timeline/timelineSelectorStatsView.css +2 -2
  1427. package/front_end/panels/timeline/timelineStatusDialog.css +1 -1
  1428. package/front_end/panels/timeline/timelineTreeView.css +1 -1
  1429. package/front_end/panels/timeline/utils/EntryNodes.ts +1 -1
  1430. package/front_end/panels/timeline/utils/Helpers.ts +2 -3
  1431. package/front_end/panels/timeline/utils/IgnoreList.ts +3 -4
  1432. package/front_end/panels/timeline/utils/ImageCache.ts +1 -1
  1433. package/front_end/panels/timeline/utils/Treemap.ts +1 -1
  1434. package/front_end/panels/timeline/utils/utils.ts +1 -17
  1435. package/front_end/panels/utils/utils.ts +1 -1
  1436. package/front_end/panels/visibility.gni +1 -1
  1437. package/front_end/panels/web_audio/WebAudioModel.ts +1 -1
  1438. package/front_end/panels/web_audio/WebAudioView.ts +1 -1
  1439. package/front_end/panels/web_audio/webAudio.css +1 -1
  1440. package/front_end/panels/web_audio/web_audio-meta.ts +1 -1
  1441. package/front_end/panels/web_audio/web_audio.ts +1 -1
  1442. package/front_end/panels/webauthn/WebauthnPane.ts +1 -1
  1443. package/front_end/panels/webauthn/webauthn-meta.ts +1 -1
  1444. package/front_end/panels/webauthn/webauthn.ts +1 -1
  1445. package/front_end/panels/webauthn/webauthnPane.css +1 -1
  1446. package/front_end/panels/whats_new/ReleaseNoteText.ts +1 -1
  1447. package/front_end/panels/whats_new/ReleaseNoteView.ts +1 -1
  1448. package/front_end/panels/whats_new/WhatsNewImpl.ts +1 -1
  1449. package/front_end/panels/whats_new/releaseNoteView.css +1 -1
  1450. package/front_end/panels/whats_new/whats_new-meta.ts +1 -1
  1451. package/front_end/panels/whats_new/whats_new.ts +1 -1
  1452. package/front_end/services/puppeteer/PuppeteerConnection.ts +1 -1
  1453. package/front_end/services/puppeteer/puppeteer.ts +1 -1
  1454. package/front_end/services/trace_bounds/TraceBounds.ts +1 -1
  1455. package/front_end/services/trace_bounds/trace_bounds.ts +1 -1
  1456. package/front_end/{panels/timeline/utils → services/tracing}/FreshRecording.ts +2 -2
  1457. package/front_end/services/tracing/PerformanceTracing.ts +1 -1
  1458. package/front_end/services/tracing/TracingManager.ts +1 -1
  1459. package/front_end/services/tracing/tracing.ts +3 -1
  1460. package/front_end/services/window_bounds/WindowBoundsService.ts +1 -1
  1461. package/front_end/services/window_bounds/window_bounds.ts +1 -1
  1462. package/front_end/third_party/chromium/README.chromium +1 -1
  1463. package/front_end/third_party/puppeteer/README.chromium +2 -2
  1464. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +12 -1
  1465. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
  1466. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js +13 -0
  1467. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
  1468. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts +10 -3
  1469. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts.map +1 -1
  1470. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js +50 -2
  1471. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js.map +1 -1
  1472. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +5 -3
  1473. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
  1474. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
  1475. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.d.ts.map +1 -1
  1476. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js.map +1 -1
  1477. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts +2 -3
  1478. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts.map +1 -1
  1479. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js.map +1 -1
  1480. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts +8 -7
  1481. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts.map +1 -1
  1482. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js.map +1 -1
  1483. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Deserializer.d.ts +1 -1
  1484. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Deserializer.d.ts.map +1 -1
  1485. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts +1 -1
  1486. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  1487. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
  1488. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +1 -35
  1489. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map +1 -1
  1490. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts +1 -1
  1491. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts.map +1 -1
  1492. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts +1 -1
  1493. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
  1494. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPResponse.d.ts +1 -1
  1495. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPResponse.d.ts.map +1 -1
  1496. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Input.d.ts +1 -1
  1497. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Input.d.ts.map +1 -1
  1498. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/JSHandle.d.ts +1 -1
  1499. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/JSHandle.d.ts.map +1 -1
  1500. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts +1 -1
  1501. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts.map +1 -1
  1502. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +3 -1
  1503. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
  1504. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.d.ts +1 -1
  1505. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.d.ts.map +1 -1
  1506. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js +1 -1
  1507. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js.map +1 -1
  1508. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Serializer.d.ts +1 -1
  1509. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Serializer.d.ts.map +1 -1
  1510. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.d.ts +1 -1
  1511. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.d.ts.map +1 -1
  1512. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts +1 -1
  1513. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  1514. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js +3 -2
  1515. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  1516. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Connection.d.ts +4 -193
  1517. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Connection.d.ts.map +1 -1
  1518. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts +14 -3
  1519. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts.map +1 -1
  1520. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts +1 -1
  1521. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts.map +1 -1
  1522. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.d.ts +1 -1
  1523. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.d.ts.map +1 -1
  1524. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts +1 -1
  1525. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  1526. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.d.ts +1 -1
  1527. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
  1528. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.d.ts +1 -1
  1529. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.d.ts.map +1 -1
  1530. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  1531. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +2 -5
  1532. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
  1533. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  1534. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js +1 -1
  1535. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
  1536. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts +8 -0
  1537. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
  1538. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js +3 -1
  1539. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js.map +1 -1
  1540. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +0 -1
  1541. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts.map +1 -1
  1542. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js +0 -1
  1543. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js.map +1 -1
  1544. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/{cdp → common}/AriaQueryHandler.d.ts +2 -2
  1545. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.d.ts.map +1 -0
  1546. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/{cdp → common}/AriaQueryHandler.js +1 -1
  1547. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js.map +1 -0
  1548. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +1 -1
  1549. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  1550. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Cookie.d.ts +0 -39
  1551. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Cookie.d.ts.map +1 -1
  1552. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.d.ts.map +1 -1
  1553. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js +1 -1
  1554. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js.map +1 -1
  1555. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts +1 -0
  1556. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts.map +1 -1
  1557. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js +1 -0
  1558. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js.map +1 -1
  1559. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts +0 -3
  1560. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -1
  1561. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js +0 -3
  1562. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -1
  1563. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
  1564. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
  1565. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/index-browser.d.ts +1 -1
  1566. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/index-browser.d.ts.map +1 -1
  1567. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
  1568. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +2 -2
  1569. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +2 -2
  1570. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
  1571. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.d.ts +19 -6
  1572. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.d.ts.map +1 -1
  1573. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.js +22 -13
  1574. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.js.map +1 -1
  1575. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +33 -44
  1576. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +124 -58
  1577. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +12 -1
  1578. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
  1579. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js +13 -0
  1580. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
  1581. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts +10 -3
  1582. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts.map +1 -1
  1583. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js +50 -2
  1584. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js.map +1 -1
  1585. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +5 -3
  1586. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
  1587. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
  1588. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BidiOverCdp.d.ts.map +1 -1
  1589. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BidiOverCdp.js.map +1 -1
  1590. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts +2 -3
  1591. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts.map +1 -1
  1592. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js.map +1 -1
  1593. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts +8 -7
  1594. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts.map +1 -1
  1595. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js.map +1 -1
  1596. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Deserializer.d.ts +1 -1
  1597. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Deserializer.d.ts.map +1 -1
  1598. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts +1 -1
  1599. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  1600. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
  1601. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js +1 -2
  1602. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js.map +1 -1
  1603. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts +1 -1
  1604. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts.map +1 -1
  1605. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts +1 -1
  1606. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
  1607. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPResponse.d.ts +1 -1
  1608. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPResponse.d.ts.map +1 -1
  1609. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Input.d.ts +1 -1
  1610. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Input.d.ts.map +1 -1
  1611. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/JSHandle.d.ts +1 -1
  1612. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/JSHandle.d.ts.map +1 -1
  1613. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts +1 -1
  1614. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts.map +1 -1
  1615. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +3 -1
  1616. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
  1617. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.d.ts +1 -1
  1618. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.d.ts.map +1 -1
  1619. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js +1 -1
  1620. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js.map +1 -1
  1621. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Serializer.d.ts +1 -1
  1622. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Serializer.d.ts.map +1 -1
  1623. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.d.ts +1 -1
  1624. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.d.ts.map +1 -1
  1625. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts +1 -1
  1626. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  1627. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js +3 -2
  1628. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  1629. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Connection.d.ts +4 -193
  1630. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Connection.d.ts.map +1 -1
  1631. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.d.ts +14 -3
  1632. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.d.ts.map +1 -1
  1633. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts +1 -1
  1634. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts.map +1 -1
  1635. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.d.ts +1 -1
  1636. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.d.ts.map +1 -1
  1637. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts +1 -1
  1638. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  1639. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.d.ts +1 -1
  1640. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
  1641. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/util.d.ts +1 -1
  1642. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/util.d.ts.map +1 -1
  1643. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  1644. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +2 -5
  1645. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
  1646. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  1647. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js +1 -1
  1648. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
  1649. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts +8 -0
  1650. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
  1651. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js +3 -1
  1652. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js.map +1 -1
  1653. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +0 -1
  1654. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts.map +1 -1
  1655. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js +0 -1
  1656. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js.map +1 -1
  1657. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/{cdp → common}/AriaQueryHandler.d.ts +2 -2
  1658. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.d.ts.map +1 -0
  1659. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/{cdp → common}/AriaQueryHandler.js +1 -1
  1660. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js.map +1 -0
  1661. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +1 -1
  1662. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  1663. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Cookie.d.ts +0 -39
  1664. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Cookie.d.ts.map +1 -1
  1665. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/GetQueryHandler.d.ts.map +1 -1
  1666. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/GetQueryHandler.js +1 -1
  1667. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/GetQueryHandler.js.map +1 -1
  1668. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts +1 -0
  1669. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts.map +1 -1
  1670. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js +1 -0
  1671. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js.map +1 -1
  1672. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts +0 -3
  1673. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -1
  1674. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js +0 -3
  1675. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -1
  1676. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
  1677. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
  1678. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/index-browser.d.ts +1 -1
  1679. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/index-browser.d.ts.map +1 -1
  1680. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts +1 -1
  1681. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +2 -2
  1682. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +2 -2
  1683. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.d.ts +19 -6
  1684. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.d.ts.map +1 -1
  1685. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.js +22 -10
  1686. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.js.map +1 -1
  1687. package/front_end/third_party/puppeteer/package/lib/types.d.ts +34 -45
  1688. package/front_end/third_party/puppeteer/package/package.json +3 -2
  1689. package/front_end/third_party/puppeteer/package/src/api/Browser.ts +21 -1
  1690. package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +64 -3
  1691. package/front_end/third_party/puppeteer/package/src/api/Page.ts +5 -3
  1692. package/front_end/third_party/puppeteer/package/src/bidi/BidiOverCdp.ts +10 -12
  1693. package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +3 -3
  1694. package/front_end/third_party/puppeteer/package/src/bidi/BrowserContext.ts +1 -1
  1695. package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +13 -13
  1696. package/front_end/third_party/puppeteer/package/src/bidi/Deserializer.ts +1 -1
  1697. package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +1 -1
  1698. package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +2 -5
  1699. package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +1 -1
  1700. package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +1 -1
  1701. package/front_end/third_party/puppeteer/package/src/bidi/HTTPResponse.ts +1 -1
  1702. package/front_end/third_party/puppeteer/package/src/bidi/Input.ts +1 -1
  1703. package/front_end/third_party/puppeteer/package/src/bidi/JSHandle.ts +1 -1
  1704. package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +4 -2
  1705. package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +2 -2
  1706. package/front_end/third_party/puppeteer/package/src/bidi/Serializer.ts +1 -1
  1707. package/front_end/third_party/puppeteer/package/src/bidi/core/Browser.ts +1 -1
  1708. package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +2 -2
  1709. package/front_end/third_party/puppeteer/package/src/bidi/core/Connection.ts +4 -205
  1710. package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +1 -1
  1711. package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +1 -1
  1712. package/front_end/third_party/puppeteer/package/src/bidi/core/Session.ts +1 -1
  1713. package/front_end/third_party/puppeteer/package/src/bidi/core/UserContext.ts +1 -1
  1714. package/front_end/third_party/puppeteer/package/src/bidi/core/UserPrompt.ts +1 -1
  1715. package/front_end/third_party/puppeteer/package/src/bidi/util.ts +1 -1
  1716. package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +3 -5
  1717. package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +1 -1
  1718. package/front_end/third_party/puppeteer/package/src/cdp/NetworkManager.ts +11 -2
  1719. package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +0 -1
  1720. package/front_end/third_party/puppeteer/package/src/{cdp → common}/AriaQueryHandler.ts +3 -2
  1721. package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +1 -1
  1722. package/front_end/third_party/puppeteer/package/src/common/Cookie.ts +0 -39
  1723. package/front_end/third_party/puppeteer/package/src/common/GetQueryHandler.ts +1 -2
  1724. package/front_end/third_party/puppeteer/package/src/common/common.ts +1 -0
  1725. package/front_end/third_party/puppeteer/package/src/common/util.ts +0 -4
  1726. package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
  1727. package/front_end/third_party/puppeteer/package/src/index-browser.ts +1 -1
  1728. package/front_end/third_party/puppeteer/package/src/revisions.ts +2 -2
  1729. package/front_end/third_party/puppeteer/package/src/util/disposable.ts +30 -12
  1730. package/front_end/third_party/puppeteer/puppeteer-tsconfig.json +1 -1
  1731. package/front_end/third_party/puppeteer-replay/README.chromium +2 -2
  1732. package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.cjs +7 -1
  1733. package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.cjs.map +1 -1
  1734. package/front_end/third_party/puppeteer-replay/package/lib/main.js +7 -1
  1735. package/front_end/third_party/puppeteer-replay/package/lib/main.js.map +1 -1
  1736. package/front_end/third_party/puppeteer-replay/package/package.json +3 -3
  1737. package/front_end/ui/components/adorners/Adorner.ts +1 -1
  1738. package/front_end/ui/components/adorners/adorner.css +1 -1
  1739. package/front_end/ui/components/adorners/adorners.ts +1 -1
  1740. package/front_end/ui/components/buttons/Button.ts +1 -1
  1741. package/front_end/ui/components/buttons/FloatingButton.ts +1 -1
  1742. package/front_end/ui/components/buttons/button.css +1 -1
  1743. package/front_end/ui/components/buttons/buttons.ts +1 -1
  1744. package/front_end/ui/components/buttons/floatingButton.css +1 -1
  1745. package/front_end/ui/components/buttons/textButton.css +1 -1
  1746. package/front_end/ui/components/cards/Card.ts +1 -1
  1747. package/front_end/ui/components/cards/card.css +1 -1
  1748. package/front_end/ui/components/cards/cards.ts +1 -1
  1749. package/front_end/ui/components/chrome_link/ChromeLink.ts +1 -1
  1750. package/front_end/ui/components/chrome_link/chromeLink.css +1 -1
  1751. package/front_end/ui/components/chrome_link/chrome_link.ts +1 -1
  1752. package/front_end/ui/components/code_highlighter/CodeHighlighter.ts +1 -1
  1753. package/front_end/ui/components/code_highlighter/codeHighlighter.css +1 -1
  1754. package/front_end/ui/components/code_highlighter/code_highlighter.ts +1 -1
  1755. package/front_end/ui/components/copy_to_clipboard/copyToClipboard.ts +1 -1
  1756. package/front_end/ui/components/copy_to_clipboard/copy_to_clipboard.ts +1 -1
  1757. package/front_end/ui/components/dialogs/ButtonDialog.ts +1 -1
  1758. package/front_end/ui/components/dialogs/Dialog.ts +1 -1
  1759. package/front_end/ui/components/dialogs/ShortcutDialog.ts +1 -1
  1760. package/front_end/ui/components/dialogs/buttonDialog.css +1 -1
  1761. package/front_end/ui/components/dialogs/dialog.css +1 -1
  1762. package/front_end/ui/components/dialogs/dialogs.ts +1 -1
  1763. package/front_end/ui/components/dialogs/shortcutDialog.css +1 -1
  1764. package/front_end/ui/components/diff_view/DiffView.ts +1 -1
  1765. package/front_end/ui/components/diff_view/diffView.css +1 -1
  1766. package/front_end/ui/components/diff_view/diff_view.ts +1 -1
  1767. package/front_end/ui/components/docs/breadcrumbs_perf/initial-breadcrumb-perf.html +1 -1
  1768. package/front_end/ui/components/docs/breadcrumbs_perf/initial-breadcrumb-perf.ts +1 -1
  1769. package/front_end/ui/components/docs/breadcrumbs_perf/nested-breadcrumbs-perf.html +1 -1
  1770. package/front_end/ui/components/docs/breadcrumbs_perf/nested-breadcrumbs-perf.ts +1 -1
  1771. package/front_end/ui/components/docs/button/basic.html +1 -1
  1772. package/front_end/ui/components/docs/button/basic.ts +1 -1
  1773. package/front_end/ui/components/docs/color_swatch/basic.html +1 -1
  1774. package/front_end/ui/components/docs/color_swatch/basic.ts +1 -1
  1775. package/front_end/ui/components/docs/color_swatch/change-color.html +1 -1
  1776. package/front_end/ui/components/docs/color_swatch/change-color.ts +1 -1
  1777. package/front_end/ui/components/docs/combo_box/basic.html +1 -1
  1778. package/front_end/ui/components/docs/combo_box/basic.ts +1 -1
  1779. package/front_end/ui/components/docs/component_docs.ts +1 -1
  1780. package/front_end/ui/components/docs/component_docs_styles.css +1 -1
  1781. package/front_end/ui/components/docs/computed_style_property/basic.html +1 -1
  1782. package/front_end/ui/components/docs/computed_style_property/basic.ts +1 -1
  1783. package/front_end/ui/components/docs/computed_style_property/traceable.html +1 -1
  1784. package/front_end/ui/components/docs/computed_style_property/traceable.ts +1 -1
  1785. package/front_end/ui/components/docs/computed_style_trace/basic.html +1 -1
  1786. package/front_end/ui/components/docs/computed_style_trace/basic.ts +1 -1
  1787. package/front_end/ui/components/docs/console_insight/basic.html +1 -1
  1788. package/front_end/ui/components/docs/console_insight/basic.ts +1 -1
  1789. package/front_end/ui/components/docs/console_insight/error.html +1 -1
  1790. package/front_end/ui/components/docs/console_insight/error.ts +1 -1
  1791. package/front_end/ui/components/docs/console_insight/loading.html +1 -1
  1792. package/front_end/ui/components/docs/console_insight/loading.ts +1 -1
  1793. package/front_end/ui/components/docs/context_menu/basic.html +1 -1
  1794. package/front_end/ui/components/docs/context_menu/basic.ts +1 -1
  1795. package/front_end/ui/components/docs/create_breadcrumbs.ts +1 -1
  1796. package/front_end/ui/components/docs/elements_breadcrumbs/basic.html +1 -1
  1797. package/front_end/ui/components/docs/elements_breadcrumbs/basic.ts +1 -1
  1798. package/front_end/ui/components/docs/elements_breadcrumbs/helpers.ts +1 -1
  1799. package/front_end/ui/components/docs/elements_breadcrumbs/scroll-to-active-element.html +1 -1
  1800. package/front_end/ui/components/docs/elements_breadcrumbs/scroll-to-active-element.ts +1 -1
  1801. package/front_end/ui/components/docs/elements_breadcrumbs/scroll.html +1 -1
  1802. package/front_end/ui/components/docs/elements_breadcrumbs/scroll.ts +1 -1
  1803. package/front_end/ui/components/docs/expandable_list/basic.html +1 -1
  1804. package/front_end/ui/components/docs/expandable_list/basic.ts +1 -1
  1805. package/front_end/ui/components/docs/icon_button/basic.html +1 -1
  1806. package/front_end/ui/components/docs/icon_button/basic.ts +1 -1
  1807. package/front_end/ui/components/docs/icon_component/basic.html +1 -1
  1808. package/front_end/ui/components/docs/icon_component/basic.ts +1 -1
  1809. package/front_end/ui/components/docs/input/basic.html +1 -1
  1810. package/front_end/ui/components/docs/input/basic.ts +1 -1
  1811. package/front_end/ui/components/docs/issue_counter/basic.html +1 -1
  1812. package/front_end/ui/components/docs/issue_counter/basic.ts +1 -1
  1813. package/front_end/ui/components/docs/issue_link_icon/basic.html +1 -1
  1814. package/front_end/ui/components/docs/issue_link_icon/basic.ts +1 -1
  1815. package/front_end/ui/components/docs/legacy_color_invert/basic.html +1 -1
  1816. package/front_end/ui/components/docs/legacy_color_invert/basic.ts +1 -1
  1817. package/front_end/ui/components/docs/linear_memory_inspector/basic.html +1 -1
  1818. package/front_end/ui/components/docs/linear_memory_inspector/basic.ts +1 -1
  1819. package/front_end/ui/components/docs/linkifier/simple-url.html +1 -1
  1820. package/front_end/ui/components/docs/linkifier/simple-url.ts +1 -1
  1821. package/front_end/ui/components/docs/markdown_image/basic.html +1 -1
  1822. package/front_end/ui/components/docs/markdown_image/basic.ts +1 -1
  1823. package/front_end/ui/components/docs/markdown_link/basic.html +1 -1
  1824. package/front_end/ui/components/docs/markdown_link/basic.ts +1 -1
  1825. package/front_end/ui/components/docs/markdown_view/basic.html +1 -1
  1826. package/front_end/ui/components/docs/markdown_view/basic.ts +1 -1
  1827. package/front_end/ui/components/docs/markdown_view/code-block.html +1 -1
  1828. package/front_end/ui/components/docs/markdown_view/code-block.ts +1 -1
  1829. package/front_end/ui/components/docs/menu/basic.html +2 -2
  1830. package/front_end/ui/components/docs/menu/basic.ts +1 -1
  1831. package/front_end/ui/components/docs/panel_feedback/basic.html +1 -1
  1832. package/front_end/ui/components/docs/panel_feedback/basic.ts +1 -1
  1833. package/front_end/ui/components/docs/panel_feedback/button.html +1 -1
  1834. package/front_end/ui/components/docs/panel_feedback/button.ts +1 -1
  1835. package/front_end/ui/components/docs/panel_introduction_steps/basic.html +1 -1
  1836. package/front_end/ui/components/docs/panel_introduction_steps/basic.ts +1 -1
  1837. package/front_end/ui/components/docs/perf_piechart/basic-with-legend.html +1 -1
  1838. package/front_end/ui/components/docs/perf_piechart/basic-with-legend.ts +1 -1
  1839. package/front_end/ui/components/docs/perf_piechart/basic-without-legend.html +1 -1
  1840. package/front_end/ui/components/docs/perf_piechart/basic-without-legend.ts +1 -1
  1841. package/front_end/ui/components/docs/radio_button/basic.html +1 -1
  1842. package/front_end/ui/components/docs/radio_button/basic.ts +1 -1
  1843. package/front_end/ui/components/docs/recorder_control_button/basic.html +1 -1
  1844. package/front_end/ui/components/docs/recorder_control_button/basic.ts +1 -1
  1845. package/front_end/ui/components/docs/recorder_create_recording_view/basic.html +1 -1
  1846. package/front_end/ui/components/docs/recorder_create_recording_view/basic.ts +1 -1
  1847. package/front_end/ui/components/docs/recorder_recording_list_view/basic.html +1 -1
  1848. package/front_end/ui/components/docs/recorder_recording_list_view/basic.ts +1 -1
  1849. package/front_end/ui/components/docs/recorder_select_button/basic.html +1 -1
  1850. package/front_end/ui/components/docs/recorder_select_button/basic.ts +1 -1
  1851. package/front_end/ui/components/docs/recorder_split_view/basic.html +1 -1
  1852. package/front_end/ui/components/docs/recorder_split_view/basic.ts +1 -1
  1853. package/front_end/ui/components/docs/report/basic.html +1 -1
  1854. package/front_end/ui/components/docs/report/basic.ts +1 -1
  1855. package/front_end/ui/components/docs/request_link_icon/basic.html +1 -1
  1856. package/front_end/ui/components/docs/request_link_icon/basic.ts +1 -1
  1857. package/front_end/ui/components/docs/select_menu/basic.html +1 -1
  1858. package/front_end/ui/components/docs/select_menu/basic.ts +1 -1
  1859. package/front_end/ui/components/docs/select_menu/wide-option.html +1 -1
  1860. package/front_end/ui/components/docs/select_menu/wide-option.ts +1 -1
  1861. package/front_end/ui/components/docs/slider/basic.html +1 -1
  1862. package/front_end/ui/components/docs/slider/basic.ts +1 -1
  1863. package/front_end/ui/components/docs/snackbars/basic.html +1 -1
  1864. package/front_end/ui/components/docs/snackbars/basic.ts +1 -1
  1865. package/front_end/ui/components/docs/spinners/basic.html +1 -1
  1866. package/front_end/ui/components/docs/spinners/basic.ts +1 -1
  1867. package/front_end/ui/components/docs/style_property_editor/flex.html +1 -2
  1868. package/front_end/ui/components/docs/style_property_editor/flex.ts +1 -1
  1869. package/front_end/ui/components/docs/style_property_editor/grid.html +1 -1
  1870. package/front_end/ui/components/docs/style_property_editor/grid.ts +1 -1
  1871. package/front_end/ui/components/docs/survey_link/basic.html +1 -1
  1872. package/front_end/ui/components/docs/survey_link/basic.ts +1 -1
  1873. package/front_end/ui/components/docs/switch/basic.html +1 -1
  1874. package/front_end/ui/components/docs/switch/basic.ts +1 -1
  1875. package/front_end/ui/components/docs/text_prompt/basic.html +2 -2
  1876. package/front_end/ui/components/docs/text_prompt/basic.ts +1 -1
  1877. package/front_end/ui/components/docs/theme_colors/basic.html +1 -1
  1878. package/front_end/ui/components/docs/theme_colors/basic.ts +1 -1
  1879. package/front_end/ui/components/docs/toggle_dark_mode.ts +1 -1
  1880. package/front_end/ui/components/docs/toggle_fonts.ts +1 -1
  1881. package/front_end/ui/components/docs/tooltip/basic.html +1 -1
  1882. package/front_end/ui/components/docs/tooltip/basic.ts +1 -1
  1883. package/front_end/ui/components/docs/tree_outline/basic.html +1 -1
  1884. package/front_end/ui/components/docs/tree_outline/basic.ts +1 -1
  1885. package/front_end/ui/components/docs/tree_outline/custom-renderers.html +1 -1
  1886. package/front_end/ui/components/docs/tree_outline/custom-renderers.ts +1 -1
  1887. package/front_end/ui/components/docs/tree_outline/lazy-children.html +1 -1
  1888. package/front_end/ui/components/docs/tree_outline/lazy-children.ts +1 -1
  1889. package/front_end/ui/components/docs/tree_outline/sample-data.ts +1 -1
  1890. package/front_end/ui/components/docs/user_agent_client_hints/basic.html +1 -1
  1891. package/front_end/ui/components/docs/user_agent_client_hints/basic.ts +1 -1
  1892. package/front_end/ui/components/expandable_list/ExpandableList.ts +1 -1
  1893. package/front_end/ui/components/expandable_list/expandableList.css +1 -1
  1894. package/front_end/ui/components/expandable_list/expandable_list.ts +1 -1
  1895. package/front_end/ui/components/helpers/component-server-setup.ts +1 -1
  1896. package/front_end/ui/components/helpers/directives.ts +1 -1
  1897. package/front_end/ui/components/helpers/get-root-node.ts +1 -1
  1898. package/front_end/ui/components/helpers/helpers.ts +1 -1
  1899. package/front_end/ui/components/helpers/scheduled-render.ts +1 -1
  1900. package/front_end/ui/components/highlighting/HighlightManager.ts +1 -1
  1901. package/front_end/ui/components/highlighting/highlighting.ts +1 -1
  1902. package/front_end/ui/components/icon_button/FileSourceIcon.ts +1 -1
  1903. package/front_end/ui/components/icon_button/Icon.ts +1 -1
  1904. package/front_end/ui/components/icon_button/IconButton.ts +1 -1
  1905. package/front_end/ui/components/icon_button/fileSourceIcon.css +1 -1
  1906. package/front_end/ui/components/icon_button/icon.css +1 -1
  1907. package/front_end/ui/components/icon_button/iconButton.css +1 -1
  1908. package/front_end/ui/components/icon_button/icon_button.ts +1 -1
  1909. package/front_end/ui/components/input/checkbox.css +1 -1
  1910. package/front_end/ui/components/input/input.ts +1 -1
  1911. package/front_end/ui/components/input/textInput.css +1 -1
  1912. package/front_end/ui/components/issue_counter/IssueCounter.ts +1 -1
  1913. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +1 -1
  1914. package/front_end/ui/components/issue_counter/issueCounter.css +1 -1
  1915. package/front_end/ui/components/issue_counter/issueLinkIcon.css +1 -1
  1916. package/front_end/ui/components/issue_counter/issue_counter.ts +1 -1
  1917. package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -1
  1918. package/front_end/ui/components/legacy_wrapper/legacy_wrapper.ts +1 -1
  1919. package/front_end/ui/components/linkifier/LinkifierImpl.ts +1 -1
  1920. package/front_end/ui/components/linkifier/LinkifierUtils.ts +1 -1
  1921. package/front_end/ui/components/linkifier/linkifier.ts +1 -1
  1922. package/front_end/ui/components/linkifier/linkifierImpl.css +1 -1
  1923. package/front_end/ui/components/markdown_view/CodeBlock.ts +1 -1
  1924. package/front_end/ui/components/markdown_view/MarkdownImage.ts +1 -1
  1925. package/front_end/ui/components/markdown_view/MarkdownImagesMap.ts +1 -1
  1926. package/front_end/ui/components/markdown_view/MarkdownLink.ts +1 -1
  1927. package/front_end/ui/components/markdown_view/MarkdownLinksMap.ts +1 -1
  1928. package/front_end/ui/components/markdown_view/MarkdownView.ts +1 -1
  1929. package/front_end/ui/components/markdown_view/codeBlock.css +1 -1
  1930. package/front_end/ui/components/markdown_view/markdownImage.css +1 -1
  1931. package/front_end/ui/components/markdown_view/markdownLink.css +1 -1
  1932. package/front_end/ui/components/markdown_view/markdownView.css +1 -1
  1933. package/front_end/ui/components/markdown_view/markdown_view.ts +1 -1
  1934. package/front_end/ui/components/menus/Menu.ts +1 -1
  1935. package/front_end/ui/components/menus/SelectMenu.ts +1 -1
  1936. package/front_end/ui/components/menus/menu.css +1 -1
  1937. package/front_end/ui/components/menus/menuGroup.css +1 -1
  1938. package/front_end/ui/components/menus/menuItem.css +1 -1
  1939. package/front_end/ui/components/menus/menus.ts +1 -1
  1940. package/front_end/ui/components/menus/selectMenu.css +1 -1
  1941. package/front_end/ui/components/menus/selectMenuButton.css +1 -1
  1942. package/front_end/ui/components/node_text/NodeText.ts +1 -1
  1943. package/front_end/ui/components/node_text/nodeText.css +1 -1
  1944. package/front_end/ui/components/node_text/node_text.ts +1 -1
  1945. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +1 -1
  1946. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +1 -1
  1947. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +1 -1
  1948. package/front_end/ui/components/panel_feedback/panelFeedback.css +1 -5
  1949. package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -1
  1950. package/front_end/ui/components/panel_feedback/previewToggle.css +1 -1
  1951. package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +1 -1
  1952. package/front_end/ui/components/panel_introduction_steps/panelIntroductionSteps.css +1 -1
  1953. package/front_end/ui/components/panel_introduction_steps/panel_introduction_steps.ts +1 -1
  1954. package/front_end/ui/components/render_coordinator/render_coordinator.ts +1 -1
  1955. package/front_end/ui/components/report_view/ReportView.ts +1 -1
  1956. package/front_end/ui/components/report_view/report.css +1 -1
  1957. package/front_end/ui/components/report_view/reportKey.css +1 -1
  1958. package/front_end/ui/components/report_view/reportSection.css +1 -1
  1959. package/front_end/ui/components/report_view/reportSectionDivider.css +1 -1
  1960. package/front_end/ui/components/report_view/reportSectionHeader.css +1 -1
  1961. package/front_end/ui/components/report_view/reportValue.css +1 -1
  1962. package/front_end/ui/components/report_view/report_view.ts +1 -1
  1963. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +1 -1
  1964. package/front_end/ui/components/request_link_icon/requestLinkIcon.css +1 -1
  1965. package/front_end/ui/components/request_link_icon/request_link_icon.ts +1 -1
  1966. package/front_end/ui/components/settings/SettingCheckbox.ts +10 -2
  1967. package/front_end/ui/components/settings/SettingDeprecationWarning.ts +1 -1
  1968. package/front_end/ui/components/settings/settingCheckbox.css +1 -1
  1969. package/front_end/ui/components/settings/settingDeprecationWarning.css +1 -1
  1970. package/front_end/ui/components/settings/settings.ts +1 -1
  1971. package/front_end/ui/components/snackbars/Snackbar.ts +1 -1
  1972. package/front_end/ui/components/snackbars/snackbar.css +1 -1
  1973. package/front_end/ui/components/snackbars/snackbars.ts +1 -1
  1974. package/front_end/ui/components/spinners/Spinner.ts +1 -1
  1975. package/front_end/ui/components/spinners/spinner.css +1 -1
  1976. package/front_end/ui/components/spinners/spinners.ts +1 -1
  1977. package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +1 -1
  1978. package/front_end/ui/components/srgb_overlay/srgbOverlay.css +1 -1
  1979. package/front_end/ui/components/srgb_overlay/srgb_overlay.ts +1 -1
  1980. package/front_end/ui/components/suggestion_input/SuggestionInput.ts +1 -1
  1981. package/front_end/ui/components/suggestion_input/suggestionInput.css +1 -1
  1982. package/front_end/ui/components/suggestion_input/suggestion_input.ts +1 -1
  1983. package/front_end/ui/components/survey_link/SurveyLink.ts +1 -1
  1984. package/front_end/ui/components/survey_link/surveyLink.css +1 -1
  1985. package/front_end/ui/components/survey_link/survey_link.ts +1 -1
  1986. package/front_end/ui/components/switch/SwitchImpl.ts +1 -1
  1987. package/front_end/ui/components/switch/switch.css +1 -1
  1988. package/front_end/ui/components/switch/switch.ts +1 -1
  1989. package/front_end/ui/components/text_editor/AiCodeCompletionTeaserPlaceholder.ts +1 -1
  1990. package/front_end/ui/components/text_editor/AutocompleteHistory.ts +1 -1
  1991. package/front_end/ui/components/text_editor/ExecutionPositionHighlighter.ts +1 -1
  1992. package/front_end/ui/components/text_editor/TextEditor.ts +1 -1
  1993. package/front_end/ui/components/text_editor/TextEditorHistory.ts +1 -1
  1994. package/front_end/ui/components/text_editor/config.ts +1 -1
  1995. package/front_end/ui/components/text_editor/cursor_tooltip.ts +1 -1
  1996. package/front_end/ui/components/text_editor/javascript.ts +1 -1
  1997. package/front_end/ui/components/text_editor/position.ts +1 -1
  1998. package/front_end/ui/components/text_editor/textEditor.css +1 -1
  1999. package/front_end/ui/components/text_editor/text_editor.ts +1 -1
  2000. package/front_end/ui/components/text_editor/theme.ts +1 -1
  2001. package/front_end/ui/components/text_prompt/TextPrompt.ts +1 -1
  2002. package/front_end/ui/components/text_prompt/textPrompt.css +1 -1
  2003. package/front_end/ui/components/text_prompt/text_prompt.ts +1 -1
  2004. package/front_end/ui/components/tooltips/Tooltip.ts +1 -1
  2005. package/front_end/ui/components/tooltips/tooltip.css +1 -1
  2006. package/front_end/ui/components/tooltips/tooltips.ts +1 -1
  2007. package/front_end/ui/components/tree_outline/TreeOutline.ts +1 -1
  2008. package/front_end/ui/components/tree_outline/TreeOutlineUtils.ts +1 -1
  2009. package/front_end/ui/components/tree_outline/treeOutline.css +1 -1
  2010. package/front_end/ui/components/tree_outline/tree_outline.ts +1 -1
  2011. package/front_end/ui/components/visibility.gni +1 -1
  2012. package/front_end/ui/legacy/ARIAUtils.ts +1 -1
  2013. package/front_end/ui/legacy/ActionRegistration.ts +1 -1
  2014. package/front_end/ui/legacy/ActionRegistry.ts +1 -1
  2015. package/front_end/ui/legacy/Context.ts +1 -1
  2016. package/front_end/ui/legacy/ContextFlavorListener.ts +1 -1
  2017. package/front_end/ui/legacy/ContextMenu.ts +3 -29
  2018. package/front_end/ui/legacy/Dialog.ts +41 -42
  2019. package/front_end/ui/legacy/DockController.ts +3 -29
  2020. package/front_end/ui/legacy/DropTarget.ts +1 -1
  2021. package/front_end/ui/legacy/EmptyWidget.ts +3 -29
  2022. package/front_end/ui/legacy/FilterBar.ts +3 -29
  2023. package/front_end/ui/legacy/FilterSuggestionBuilder.ts +1 -1
  2024. package/front_end/ui/legacy/ForwardedInputEventHandler.ts +1 -1
  2025. package/front_end/ui/legacy/Fragment.ts +1 -1
  2026. package/front_end/ui/legacy/GlassPane.ts +1 -1
  2027. package/front_end/ui/legacy/Infobar.ts +1 -1
  2028. package/front_end/ui/legacy/InplaceEditor.ts +1 -1
  2029. package/front_end/ui/legacy/InspectorView.ts +10 -38
  2030. package/front_end/ui/legacy/KeyboardShortcut.ts +1 -1
  2031. package/front_end/ui/legacy/ListControl.ts +1 -1
  2032. package/front_end/ui/legacy/ListModel.ts +1 -1
  2033. package/front_end/ui/legacy/ListWidget.ts +1 -1
  2034. package/front_end/ui/legacy/Panel.ts +1 -1
  2035. package/front_end/ui/legacy/PopoverHelper.ts +3 -29
  2036. package/front_end/ui/legacy/ProgressIndicator.ts +3 -29
  2037. package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +1 -1
  2038. package/front_end/ui/legacy/ReportView.ts +1 -1
  2039. package/front_end/ui/legacy/ResizerWidget.ts +1 -1
  2040. package/front_end/ui/legacy/RootView.ts +1 -1
  2041. package/front_end/ui/legacy/SearchableView.ts +74 -56
  2042. package/front_end/ui/legacy/SettingsUI.ts +8 -34
  2043. package/front_end/ui/legacy/ShortcutRegistry.ts +1 -1
  2044. package/front_end/ui/legacy/SoftContextMenu.ts +7 -30
  2045. package/front_end/ui/legacy/SoftDropDown.ts +1 -1
  2046. package/front_end/ui/legacy/SplitWidget.ts +3 -29
  2047. package/front_end/ui/legacy/SuggestBox.ts +3 -29
  2048. package/front_end/ui/legacy/TabbedPane.ts +16 -46
  2049. package/front_end/ui/legacy/TargetCrashedScreen.ts +1 -1
  2050. package/front_end/ui/legacy/TextPrompt.ts +1 -1
  2051. package/front_end/ui/legacy/ThrottledWidget.ts +1 -1
  2052. package/front_end/ui/legacy/Toolbar.ts +8 -30
  2053. package/front_end/ui/legacy/Tooltip.ts +1 -1
  2054. package/front_end/ui/legacy/Treeoutline.ts +1 -1
  2055. package/front_end/ui/legacy/UIUtils.ts +1 -8
  2056. package/front_end/ui/legacy/View.ts +1 -1
  2057. package/front_end/ui/legacy/ViewManager.ts +1 -1
  2058. package/front_end/ui/legacy/ViewRegistration.ts +1 -1
  2059. package/front_end/ui/legacy/Widget.ts +1 -1
  2060. package/front_end/ui/legacy/XElement.ts +1 -1
  2061. package/front_end/ui/legacy/XLink.ts +1 -1
  2062. package/front_end/ui/legacy/XWidget.ts +1 -1
  2063. package/front_end/ui/legacy/ZoomManager.ts +1 -1
  2064. package/front_end/ui/legacy/checkboxTextLabel.css +1 -1
  2065. package/front_end/ui/legacy/components/color_picker/ColorFormatSpec.ts +1 -1
  2066. package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +1 -1
  2067. package/front_end/ui/legacy/components/color_picker/ContrastInfo.ts +1 -1
  2068. package/front_end/ui/legacy/components/color_picker/ContrastOverlay.ts +1 -1
  2069. package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +1 -1
  2070. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +2 -5
  2071. package/front_end/ui/legacy/components/color_picker/color_picker.ts +1 -1
  2072. package/front_end/ui/legacy/components/color_picker/spectrum.css +1 -1
  2073. package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +1 -1
  2074. package/front_end/ui/legacy/components/cookie_table/cookie_table.ts +1 -1
  2075. package/front_end/ui/legacy/components/cookie_table/cookiesTable.css +2 -2
  2076. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +5 -6
  2077. package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +1 -1
  2078. package/front_end/ui/legacy/components/data_grid/ShowMoreDataGridNode.ts +3 -29
  2079. package/front_end/ui/legacy/components/data_grid/SortableDataGrid.ts +1 -1
  2080. package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +1 -1
  2081. package/front_end/ui/legacy/components/data_grid/dataGrid.css +1 -1
  2082. package/front_end/ui/legacy/components/data_grid/data_grid.ts +1 -1
  2083. package/front_end/ui/legacy/components/inline_editor/AnimationTimingModel.ts +1 -1
  2084. package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +1 -1
  2085. package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +1 -1
  2086. package/front_end/ui/legacy/components/inline_editor/BezierUI.ts +1 -1
  2087. package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +1 -1
  2088. package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +1 -1
  2089. package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +1 -1
  2090. package/front_end/ui/legacy/components/inline_editor/CSSAngleUtils.ts +1 -1
  2091. package/front_end/ui/legacy/components/inline_editor/CSSLinearEasingModel.ts +1 -1
  2092. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +1 -1
  2093. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +1 -1
  2094. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +1 -1
  2095. package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +1 -1
  2096. package/front_end/ui/legacy/components/inline_editor/FontEditorUnitConverter.ts +1 -1
  2097. package/front_end/ui/legacy/components/inline_editor/FontEditorUtils.ts +1 -1
  2098. package/front_end/ui/legacy/components/inline_editor/InlineEditorUtils.ts +1 -1
  2099. package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +1 -1
  2100. package/front_end/ui/legacy/components/inline_editor/SwatchPopoverHelper.ts +1 -1
  2101. package/front_end/ui/legacy/components/inline_editor/Swatches.ts +1 -1
  2102. package/front_end/ui/legacy/components/inline_editor/animationNameSwatch.css +1 -1
  2103. package/front_end/ui/legacy/components/inline_editor/bezierEditor.css +1 -1
  2104. package/front_end/ui/legacy/components/inline_editor/colorMixSwatch.css +1 -1
  2105. package/front_end/ui/legacy/components/inline_editor/colorSwatch.css +1 -1
  2106. package/front_end/ui/legacy/components/inline_editor/cssAngle.css +1 -1
  2107. package/front_end/ui/legacy/components/inline_editor/cssAngleEditor.css +1 -1
  2108. package/front_end/ui/legacy/components/inline_editor/cssAngleSwatch.css +1 -1
  2109. package/front_end/ui/legacy/components/inline_editor/cssShadowEditor.css +1 -1
  2110. package/front_end/ui/legacy/components/inline_editor/cssShadowSwatch.css +1 -1
  2111. package/front_end/ui/legacy/components/inline_editor/fontEditor.css +1 -1
  2112. package/front_end/ui/legacy/components/inline_editor/inline_editor.ts +1 -1
  2113. package/front_end/ui/legacy/components/inline_editor/linkSwatch.css +1 -1
  2114. package/front_end/ui/legacy/components/inline_editor/swatchPopover.css +1 -1
  2115. package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +1 -1
  2116. package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.ts +1 -1
  2117. package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +3 -29
  2118. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +1 -1
  2119. package/front_end/ui/legacy/components/object_ui/RemoteObjectPreviewFormatter.ts +1 -1
  2120. package/front_end/ui/legacy/components/object_ui/customPreviewComponent.css +1 -1
  2121. package/front_end/ui/legacy/components/object_ui/objectPopover.css +1 -1
  2122. package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +1 -1
  2123. package/front_end/ui/legacy/components/object_ui/objectValue.css +1 -1
  2124. package/front_end/ui/legacy/components/object_ui/object_ui-meta.ts +1 -1
  2125. package/front_end/ui/legacy/components/object_ui/object_ui.ts +1 -1
  2126. package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +1 -1
  2127. package/front_end/ui/legacy/components/perf_ui/CanvasHelper.ts +1 -1
  2128. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +3 -3
  2129. package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +3 -3
  2130. package/front_end/ui/legacy/components/perf_ui/Font.ts +1 -1
  2131. package/front_end/ui/legacy/components/perf_ui/GCActionDelegate.ts +1 -1
  2132. package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +2 -5
  2133. package/front_end/ui/legacy/components/perf_ui/LiveHeapProfile.ts +1 -1
  2134. package/front_end/ui/legacy/components/perf_ui/NetworkPriorities.ts +1 -1
  2135. package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +6 -32
  2136. package/front_end/ui/legacy/components/perf_ui/PieChart.ts +1 -1
  2137. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +1 -1
  2138. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +1 -1
  2139. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +5 -31
  2140. package/front_end/ui/legacy/components/perf_ui/chartViewport.css +1 -1
  2141. package/front_end/ui/legacy/components/perf_ui/filmStripView.css +1 -1
  2142. package/front_end/ui/legacy/components/perf_ui/flameChart.css +1 -1
  2143. package/front_end/ui/legacy/components/perf_ui/overviewGrid.css +1 -1
  2144. package/front_end/ui/legacy/components/perf_ui/perf_ui-meta.ts +1 -1
  2145. package/front_end/ui/legacy/components/perf_ui/perf_ui.ts +1 -1
  2146. package/front_end/ui/legacy/components/perf_ui/pieChart.css +1 -1
  2147. package/front_end/ui/legacy/components/perf_ui/timelineGrid.css +1 -1
  2148. package/front_end/ui/legacy/components/perf_ui/timelineOverviewInfo.css +1 -1
  2149. package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +1 -1
  2150. package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +1 -1
  2151. package/front_end/ui/legacy/components/quick_open/HelpQuickOpen.ts +1 -1
  2152. package/front_end/ui/legacy/components/quick_open/QuickOpen.ts +1 -1
  2153. package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +1 -1
  2154. package/front_end/ui/legacy/components/quick_open/quick_open-meta.ts +1 -1
  2155. package/front_end/ui/legacy/components/quick_open/quick_open.ts +1 -1
  2156. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +1 -1
  2157. package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -1
  2158. package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -1
  2159. package/front_end/ui/legacy/components/source_frame/JSONView.ts +13 -39
  2160. package/front_end/ui/legacy/components/source_frame/PreviewFactory.ts +1 -1
  2161. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +1 -1
  2162. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +7 -29
  2163. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +1 -1
  2164. package/front_end/ui/legacy/components/source_frame/XMLView.ts +7 -3
  2165. package/front_end/ui/legacy/components/source_frame/fontView.css +1 -1
  2166. package/front_end/ui/legacy/components/source_frame/imageView.css +1 -1
  2167. package/front_end/ui/legacy/components/source_frame/jsonView.css +1 -1
  2168. package/front_end/ui/legacy/components/source_frame/resourceSourceFrame.css +1 -1
  2169. package/front_end/ui/legacy/components/source_frame/source_frame-meta.ts +1 -1
  2170. package/front_end/ui/legacy/components/source_frame/source_frame.ts +1 -1
  2171. package/front_end/ui/legacy/components/source_frame/xmlTree.css +1 -1
  2172. package/front_end/ui/legacy/components/source_frame/xmlView.css +1 -1
  2173. package/front_end/ui/legacy/components/utils/ImagePreview.ts +1 -1
  2174. package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +1 -1
  2175. package/front_end/ui/legacy/components/utils/Linkifier.ts +4 -33
  2176. package/front_end/ui/legacy/components/utils/Reload.ts +1 -1
  2177. package/front_end/ui/legacy/components/utils/TargetDetachedDialog.ts +1 -1
  2178. package/front_end/ui/legacy/components/utils/imagePreview.css +1 -1
  2179. package/front_end/ui/legacy/components/utils/jsUtils.css +1 -1
  2180. package/front_end/ui/legacy/components/utils/utils.ts +1 -1
  2181. package/front_end/ui/legacy/confirmDialog.css +1 -1
  2182. package/front_end/ui/legacy/dialog.css +1 -1
  2183. package/front_end/ui/legacy/dropTarget.css +1 -1
  2184. package/front_end/ui/legacy/emptyWidget.css +1 -1
  2185. package/front_end/ui/legacy/filter.css +3 -27
  2186. package/front_end/ui/legacy/glassPane.css +1 -1
  2187. package/front_end/ui/legacy/infobar.css +1 -1
  2188. package/front_end/ui/legacy/inlineButton.css +1 -1
  2189. package/front_end/ui/legacy/inspectorCommon.css +1 -1
  2190. package/front_end/ui/legacy/legacy.ts +1 -1
  2191. package/front_end/ui/legacy/listWidget.css +1 -1
  2192. package/front_end/ui/legacy/popover.css +1 -1
  2193. package/front_end/ui/legacy/progressIndicator.css +1 -1
  2194. package/front_end/ui/legacy/remoteDebuggingTerminatedScreen.css +1 -1
  2195. package/front_end/ui/legacy/reportView.css +1 -1
  2196. package/front_end/ui/legacy/rootView.css +1 -1
  2197. package/front_end/ui/legacy/searchableView.css +1 -5
  2198. package/front_end/ui/legacy/smallBubble.css +1 -1
  2199. package/front_end/ui/legacy/softContextMenu.css +1 -1
  2200. package/front_end/ui/legacy/softDropDown.css +1 -1
  2201. package/front_end/ui/legacy/softDropDownButton.css +1 -1
  2202. package/front_end/ui/legacy/suggestBox.css +3 -27
  2203. package/front_end/ui/legacy/targetCrashedScreen.css +1 -1
  2204. package/front_end/ui/legacy/textPrompt.css +1 -1
  2205. package/front_end/ui/legacy/theme_support/ThemeSupport.ts +1 -1
  2206. package/front_end/ui/legacy/theme_support/theme_support.ts +1 -1
  2207. package/front_end/ui/legacy/toolbar.css +1 -1
  2208. package/front_end/ui/legacy/treeoutline.css +1 -1
  2209. package/front_end/ui/legacy/viewContainers.css +1 -1
  2210. package/front_end/ui/legacy/visibility.gni +1 -1
  2211. package/front_end/ui/lit/i18n-template.ts +1 -1
  2212. package/front_end/ui/lit/lit.ts +1 -1
  2213. package/front_end/ui/lit/strip-whitespace.ts +1 -1
  2214. package/front_end/ui/lit/visibility.gni +1 -1
  2215. package/front_end/ui/visual_logging/Debugging.ts +1 -1
  2216. package/front_end/ui/visual_logging/DomState.ts +1 -1
  2217. package/front_end/ui/visual_logging/KnownContextValues.ts +3 -1
  2218. package/front_end/ui/visual_logging/Loggable.ts +1 -1
  2219. package/front_end/ui/visual_logging/LoggingConfig.ts +1 -1
  2220. package/front_end/ui/visual_logging/LoggingDriver.ts +1 -1
  2221. package/front_end/ui/visual_logging/LoggingEvents.ts +1 -1
  2222. package/front_end/ui/visual_logging/LoggingState.ts +1 -1
  2223. package/front_end/ui/visual_logging/NonDomState.ts +1 -1
  2224. package/front_end/ui/visual_logging/visual_logging-testing.ts +1 -1
  2225. package/front_end/ui/visual_logging/visual_logging.ts +1 -1
  2226. package/front_end/visibility.gni +1 -1
  2227. package/inspector_overlay/common.css +1 -1
  2228. package/inspector_overlay/common.ts +1 -1
  2229. package/inspector_overlay/css_grid_label_helpers.ts +1 -1
  2230. package/inspector_overlay/debug/main.html +1 -1
  2231. package/inspector_overlay/debug/tool_highlight_bottom_arrow.html +1 -1
  2232. package/inspector_overlay/debug/tool_highlight_explicit_grid.html +1 -1
  2233. package/inspector_overlay/debug/tool_highlight_flex.html +1 -1
  2234. package/inspector_overlay/debug/tool_highlight_flex_alignment.html +1 -1
  2235. package/inspector_overlay/debug/tool_highlight_flex_baseline.html +1 -1
  2236. package/inspector_overlay/debug/tool_highlight_flex_gap.html +1 -1
  2237. package/inspector_overlay/debug/tool_highlight_flex_item_base_size.html +1 -1
  2238. package/inspector_overlay/debug/tool_highlight_flex_multiple.html +1 -1
  2239. package/inspector_overlay/debug/tool_highlight_flex_transformed.html +1 -1
  2240. package/inspector_overlay/debug/tool_highlight_fullpage_grid.html +1 -1
  2241. package/inspector_overlay/debug/tool_highlight_grid.html +1 -1
  2242. package/inspector_overlay/debug/tool_highlight_grid_multiple.html +1 -1
  2243. package/inspector_overlay/debug/tool_highlight_grid_rtl.html +1 -1
  2244. package/inspector_overlay/debug/tool_highlight_grid_sizes.html +1 -1
  2245. package/inspector_overlay/debug/tool_highlight_grid_transformed.html +1 -1
  2246. package/inspector_overlay/debug/tool_highlight_grid_vertical.html +1 -1
  2247. package/inspector_overlay/debug/tool_highlight_huge_grid.html +1 -1
  2248. package/inspector_overlay/debug/tool_highlight_implicit_grid.html +1 -1
  2249. package/inspector_overlay/debug/tool_highlight_named_areas_grid.html +1 -1
  2250. package/inspector_overlay/debug/tool_highlight_named_lines_grid.html +1 -1
  2251. package/inspector_overlay/debug/tool_highlight_narrow_tracks_grid.html +1 -1
  2252. package/inspector_overlay/debug/tool_highlight_rulers.html +1 -1
  2253. package/inspector_overlay/debug/tool_highlight_subpixel_grid.html +1 -1
  2254. package/inspector_overlay/debug/tool_highlight_top_arrow.html +1 -1
  2255. package/inspector_overlay/debug/tool_highlight_with_persistent_grid.html +1 -1
  2256. package/inspector_overlay/debug/tool_paused.html +1 -1
  2257. package/inspector_overlay/debug/tool_persistent_flex.html +1 -3
  2258. package/inspector_overlay/debug/tool_persistent_isolated_element.html +1 -5
  2259. package/inspector_overlay/debug/tool_persistent_scroll_snap.html +1 -5
  2260. package/inspector_overlay/debug/tool_screenshot.html +1 -1
  2261. package/inspector_overlay/debug/tool_source_order.html +1 -1
  2262. package/inspector_overlay/debug/tool_viewport_size.html +1 -1
  2263. package/inspector_overlay/debug/tool_window_controls.html +2 -2
  2264. package/inspector_overlay/debug/tool_window_controls_overlay.html +2 -2
  2265. package/inspector_overlay/drag_resize_handler.ts +1 -1
  2266. package/inspector_overlay/highlight_common.ts +1 -1
  2267. package/inspector_overlay/highlight_container_query.ts +1 -1
  2268. package/inspector_overlay/highlight_flex_common.ts +1 -1
  2269. package/inspector_overlay/highlight_grid_common.ts +1 -1
  2270. package/inspector_overlay/highlight_isolated_element.ts +1 -1
  2271. package/inspector_overlay/highlight_scroll_snap.ts +1 -1
  2272. package/inspector_overlay/loadCSS.rollup.js +1 -1
  2273. package/inspector_overlay/main.ts +1 -1
  2274. package/inspector_overlay/testing/InspectorOverlayHelpers.ts +1 -1
  2275. package/inspector_overlay/tool_grid.css +1 -1
  2276. package/inspector_overlay/tool_highlight.css +1 -1
  2277. package/inspector_overlay/tool_highlight.ts +1 -1
  2278. package/inspector_overlay/tool_paused.css +1 -1
  2279. package/inspector_overlay/tool_paused.ts +1 -1
  2280. package/inspector_overlay/tool_persistent.ts +1 -1
  2281. package/inspector_overlay/tool_screenshot.css +1 -1
  2282. package/inspector_overlay/tool_screenshot.ts +1 -1
  2283. package/inspector_overlay/tool_source_order.css +1 -1
  2284. package/inspector_overlay/tool_source_order.ts +1 -1
  2285. package/inspector_overlay/tool_viewport_size.ts +1 -1
  2286. package/inspector_overlay/tool_window_controls.css +1 -1
  2287. package/inspector_overlay/tool_window_controls.ts +1 -1
  2288. package/package.json +1 -1
  2289. package/front_end/Images/src/gdp-logo-standalone.svg +0 -9
  2290. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.d.ts.map +0 -1
  2291. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js.map +0 -1
  2292. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.d.ts.map +0 -1
  2293. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js.map +0 -1
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2012 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2012 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  import * as Common from '../../core/common/common.js';
32
6
  import type * as Platform from '../../core/platform/platform.js';
@@ -1,4 +1,4 @@
1
- // Copyright 2014 The Chromium Authors. All rights reserved.
1
+ // Copyright 2014 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2012 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2012 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  import * as Common from '../../core/common/common.js';
32
6
  import * as SDK from '../../core/sdk/sdk.js';
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2012 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2012 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  import type * as Common from '../../core/common/common.js';
32
6
  import type * as Platform from '../../core/platform/platform.js';
@@ -1,4 +1,4 @@
1
- // Copyright 2017 The Chromium Authors. All rights reserved.
1
+ // Copyright 2017 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2012 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2012 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  import * as Common from '../../core/common/common.js';
32
6
  import * as i18n from '../../core/i18n/i18n.js';
@@ -1,4 +1,4 @@
1
- // Copyright 2021 The Chromium Authors. All rights reserved.
1
+ // Copyright 2021 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2012 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2012 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  import * as Common from '../../core/common/common.js';
32
6
  import type * as Platform from '../../core/platform/platform.js';
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2012 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2012 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  import * as Common from '../../core/common/common.js';
32
6
  import type * as Platform from '../../core/platform/platform.js';
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2013 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2013 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  import * as Common from '../../core/common/common.js';
32
6
 
@@ -1,4 +1,4 @@
1
- // Copyright 2019 The Chromium Authors. All rights reserved.
1
+ // Copyright 2019 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2011 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2011 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  import * as Common from '../../core/common/common.js';
32
6
  import type * as Platform from '../../core/platform/platform.js';
@@ -1,4 +1,4 @@
1
- // Copyright 2023 The Chromium Authors. All rights reserved.
1
+ // Copyright 2023 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2014 The Chromium Authors. All rights reserved.
1
+ // Copyright 2014 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2016 The Chromium Authors. All rights reserved.
1
+ // Copyright 2016 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -12,7 +12,7 @@ export class ProfileNode {
12
12
  total: number;
13
13
  id: number;
14
14
  parent: ProfileNode|null;
15
- children: ProfileNode[];
15
+ children: this[];
16
16
  functionName: string;
17
17
  depth!: number;
18
18
  deoptReason!: string|null;
@@ -1,4 +1,4 @@
1
- // Copyright 2023 The Chromium Authors. All rights reserved.
1
+ // Copyright 2023 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2024 The Chromium Authors. All rights reserved.
1
+ // Copyright 2024 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2024 The Chromium Authors. All rights reserved.
1
+ // Copyright 2024 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2021 The Chromium Authors. All rights reserved.
1
+ // Copyright 2021 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2025 The Chromium Authors. All rights reserved.
1
+ // Copyright 2025 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2015 The Chromium Authors. All rights reserved.
1
+ // Copyright 2015 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2014 The Chromium Authors. All rights reserved.
1
+ // Copyright 2014 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2021 The Chromium Authors. All rights reserved.
1
+ // Copyright 2021 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2012 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2012 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  import type * as PublicAPI from '../../../extension-api/ExtensionAPI'; // eslint-disable-line rulesdir/es-modules-import
32
6
  import type * as Platform from '../../core/platform/platform.js';
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Chromium Authors. All rights reserved.
1
+ // Copyright 2022 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2012 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2012 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
  /* eslint-disable rulesdir/no-imperative-dom-api */
31
5
 
32
6
  // TODO(crbug.com/442509324): remove UI dependency
@@ -95,6 +69,10 @@ export class ExtensionPanel extends UI.Panel.Panel implements UI.SearchableView.
95
69
  return false;
96
70
  }
97
71
 
72
+ supportsWholeWordSearch(): boolean {
73
+ return false;
74
+ }
75
+
98
76
  supportsRegexSearch(): boolean {
99
77
  return false;
100
78
  }
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2011 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2011 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  // TODO(crbug.com/1172300) Ignored during the jsdoc to ts migration
32
6
  /* eslint-disable @typescript-eslint/naming-convention */
@@ -1,32 +1,6 @@
1
- /*
2
- * Copyright (C) 2012 Google Inc. All rights reserved.
3
- *
4
- * Redistribution and use in source and binary forms, with or without
5
- * modification, are permitted provided that the following conditions are
6
- * met:
7
- *
8
- * * Redistributions of source code must retain the above copyright
9
- * notice, this list of conditions and the following disclaimer.
10
- * * Redistributions in binary form must reproduce the above
11
- * copyright notice, this list of conditions and the following disclaimer
12
- * in the documentation and/or other materials provided with the
13
- * distribution.
14
- * * Neither the name of Google Inc. nor the names of its
15
- * contributors may be used to endorse or promote products derived from
16
- * this software without specific prior written permission.
17
- *
18
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
- */
1
+ // Copyright 2012 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
30
4
 
31
5
  // TODO(crbug.com/442509324): remove UI dependency
32
6
  // eslint-disable-next-line rulesdir/no-imports-in-directory
@@ -1,4 +1,4 @@
1
- // Copyright 2023 The Chromium Authors. All rights reserved.
1
+ // Copyright 2023 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2020 The Chromium Authors. All rights reserved.
1
+ // Copyright 2020 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Chromium Authors. All rights reserved.
1
+ // Copyright 2022 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2022 The Chromium Authors. All rights reserved.
1
+ // Copyright 2022 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2019 The Chromium Authors. All rights reserved.
1
+ // Copyright 2019 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4
 
@@ -1,4 +1,4 @@
1
- // Copyright 2016 The Chromium Authors. All rights reserved.
1
+ // Copyright 2016 The Chromium Authors
2
2
  // Use of this source code is governed by a BSD-style license that can be
3
3
  // found in the LICENSE file.
4
4