chrome-devtools-frontend 1.0.1473514 → 1.0.1510180

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 (2447) hide show
  1. package/.geminiignore +6 -0
  2. package/.stylelintignore +0 -1
  3. package/AUTHORS +3 -0
  4. package/WATCHLISTS +0 -4
  5. package/config/owner/COMMON_OWNERS +3 -0
  6. package/docs/README.md +2 -2
  7. package/docs/architecture_of_devtools.md +8 -8
  8. package/docs/committers_policy.md +2 -0
  9. package/docs/contributing/README.md +29 -5
  10. package/docs/contributing/changes.md +1 -1
  11. package/docs/contributing/images/quickstart-vscode-tsversion.png +0 -0
  12. package/docs/contributing/infrastructure.md +89 -0
  13. package/docs/cookbook/localization.md +86 -79
  14. package/docs/get_the_code.md +9 -9
  15. package/docs/styleguide/ux/components.md +190 -2
  16. package/docs/styleguide/ux/glossary.md +16 -0
  17. package/docs/styleguide/ux/images/context-menu-example.png +0 -0
  18. package/docs/ui_engineering.md +80 -19
  19. package/eslint.config.mjs +93 -18
  20. package/extension-api/ExtensionAPI.d.ts +3 -0
  21. package/front_end/Images/generate-css-vars.js +1 -1
  22. package/front_end/Images/readme.md +1 -2
  23. package/front_end/Images/rollup.config.mjs +12 -1
  24. package/front_end/Images/src/baseline-high-availability.svg +17 -0
  25. package/front_end/Images/src/baseline-limited-availability.svg +19 -0
  26. package/front_end/Images/src/baseline-low-availability.svg +31 -0
  27. package/front_end/Images/src/bucket.svg +4 -0
  28. package/front_end/Images/src/gdp-logo-standalone.svg +9 -0
  29. package/front_end/Images/src/label-auto.svg +3 -0
  30. package/front_end/Images/src/shield.svg +3 -0
  31. package/front_end/Images/src/smart-assistant.svg +3 -1
  32. package/front_end/Images/src/speculative-loads.svg +1 -0
  33. package/front_end/Images/src/text-analysis.svg +3 -0
  34. package/front_end/Tests.js +78 -230
  35. package/front_end/application_tokens.css +7 -1
  36. package/front_end/core/common/Base64.ts +3 -3
  37. package/front_end/core/common/Color.ts +38 -0
  38. package/front_end/core/common/Debouncer.ts +3 -3
  39. package/front_end/core/common/Gzip.ts +72 -0
  40. package/front_end/core/common/ResourceType.ts +29 -29
  41. package/front_end/core/common/ReturnToPanel.ts +15 -0
  42. package/front_end/core/common/Revealer.ts +10 -10
  43. package/front_end/core/common/SettingRegistration.ts +22 -22
  44. package/front_end/core/common/Settings.ts +99 -8
  45. package/front_end/core/common/SimpleHistoryManager.ts +0 -17
  46. package/front_end/core/common/common.ts +4 -0
  47. package/front_end/core/host/AidaClient.ts +187 -31
  48. package/front_end/core/host/GdpClient.ts +151 -0
  49. package/front_end/core/host/InspectorFrontendHost.ts +64 -48
  50. package/front_end/core/host/InspectorFrontendHostAPI.ts +40 -1
  51. package/front_end/core/host/ResourceLoader.ts +15 -15
  52. package/front_end/core/host/UserMetrics.ts +26 -37
  53. package/front_end/core/host/host.ts +2 -0
  54. package/front_end/core/i18n/NumberFormatter.ts +9 -9
  55. package/front_end/core/i18n/collect-ui-strings.js +3 -3
  56. package/front_end/core/i18n/time-utilities.ts +3 -14
  57. package/front_end/core/platform/Brand.ts +8 -1
  58. package/front_end/core/platform/DevToolsPath.ts +1 -1
  59. package/front_end/core/platform/StringUtilities.ts +34 -8
  60. package/front_end/core/protocol_client/InspectorBackend.ts +9 -9
  61. package/front_end/core/root/Runtime.ts +66 -8
  62. package/front_end/core/sdk/AnimationModel.ts +1 -95
  63. package/front_end/core/sdk/AutofillModel.ts +8 -2
  64. package/front_end/core/sdk/CPUProfilerModel.ts +2 -2
  65. package/front_end/core/sdk/CSSContainerQuery.ts +3 -1
  66. package/front_end/core/sdk/CSSMatchedStyles.ts +232 -68
  67. package/front_end/core/sdk/CSSModel.ts +20 -7
  68. package/front_end/core/sdk/CSSPropertyParser.ts +19 -11
  69. package/front_end/core/sdk/CSSPropertyParserMatchers.ts +297 -86
  70. package/front_end/core/sdk/CSSRule.ts +44 -44
  71. package/front_end/core/sdk/CSSStyleSheetHeader.ts +7 -6
  72. package/front_end/core/sdk/ChildTargetManager.ts +1 -1
  73. package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +3 -8
  74. package/front_end/core/sdk/Connections.ts +17 -30
  75. package/front_end/core/sdk/ConsoleModel.ts +9 -9
  76. package/front_end/core/sdk/DOMModel.ts +103 -16
  77. package/front_end/core/sdk/DebuggerModel.ts +55 -11
  78. package/front_end/core/sdk/EmulationModel.ts +13 -0
  79. package/front_end/core/sdk/EventBreakpointsModel.ts +2 -2
  80. package/front_end/core/sdk/FrameAssociated.ts +4 -1
  81. package/front_end/core/sdk/IOModel.ts +28 -2
  82. package/front_end/core/sdk/NetworkManager.ts +137 -105
  83. package/front_end/core/sdk/NetworkRequest.ts +747 -616
  84. package/front_end/core/sdk/OverlayModel.ts +4 -8
  85. package/front_end/core/sdk/PageResourceLoader.ts +32 -13
  86. package/front_end/core/sdk/PreloadingModel.ts +1 -0
  87. package/front_end/core/sdk/RehydratingConnection.ts +13 -14
  88. package/front_end/core/sdk/RemoteObject.ts +0 -3
  89. package/front_end/core/sdk/Resource.ts +0 -5
  90. package/front_end/core/sdk/RuntimeModel.ts +2 -1
  91. package/front_end/core/sdk/Script.ts +7 -8
  92. package/front_end/core/sdk/ServerTiming.ts +12 -12
  93. package/front_end/core/sdk/ServiceWorkerCacheModel.ts +7 -3
  94. package/front_end/core/sdk/ServiceWorkerManager.ts +14 -18
  95. package/front_end/core/sdk/SourceMap.ts +24 -13
  96. package/front_end/core/sdk/SourceMapCache.ts +54 -0
  97. package/front_end/core/sdk/SourceMapFunctionRanges.ts +15 -9
  98. package/front_end/core/sdk/SourceMapManager.ts +20 -7
  99. package/front_end/core/sdk/SourceMapScopeChainEntry.ts +14 -14
  100. package/front_end/core/sdk/SourceMapScopesInfo.ts +26 -25
  101. package/front_end/core/sdk/StorageBucketsModel.ts +4 -0
  102. package/front_end/core/sdk/Target.ts +2 -2
  103. package/front_end/core/sdk/TargetManager.ts +1 -1
  104. package/front_end/core/sdk/sdk-meta.ts +86 -86
  105. package/front_end/core/sdk/sdk.ts +2 -2
  106. package/front_end/design_system_tokens.css +1 -1
  107. package/front_end/devtools_compatibility.js +201 -178
  108. package/front_end/entrypoints/inspector_main/InspectorMain.ts +12 -0
  109. package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +3 -3
  110. package/front_end/entrypoints/inspector_main/RenderingOptions.ts +1 -1
  111. package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +1 -1
  112. package/front_end/entrypoints/js_app/js_app.ts +3 -3
  113. package/front_end/entrypoints/lighthouse_worker/LighthouseWorkerService.ts +1 -1
  114. package/front_end/entrypoints/main/GlobalAiButton.ts +211 -0
  115. package/front_end/entrypoints/main/MainImpl.ts +158 -47
  116. package/front_end/entrypoints/main/globalAiButton.css +72 -0
  117. package/front_end/entrypoints/main/main-meta.ts +97 -42
  118. package/front_end/entrypoints/main/main.ts +2 -0
  119. package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +6 -6
  120. package/front_end/entrypoints/node_app/NodeMain.ts +8 -7
  121. package/front_end/entrypoints/node_app/node_app.ts +5 -5
  122. package/front_end/entrypoints/wasmparser_worker/WasmParserWorker.ts +1 -1
  123. package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
  124. package/front_end/generated/Deprecation.ts +7 -29
  125. package/front_end/generated/InspectorBackendCommands.js +185 -168
  126. package/front_end/generated/SupportedCSSProperties.js +275 -173
  127. package/front_end/generated/protocol-mapping.d.ts +691 -605
  128. package/front_end/generated/protocol-proxy-api.d.ts +785 -670
  129. package/front_end/generated/protocol.ts +11868 -11502
  130. package/front_end/global_typings/global_defs.d.ts +5 -0
  131. package/front_end/models/ai_assistance/AiHistoryStorage.snapshot.txt +66 -0
  132. package/front_end/models/ai_assistance/AiHistoryStorage.ts +95 -6
  133. package/front_end/models/ai_assistance/AiUtils.ts +1 -1
  134. package/front_end/models/ai_assistance/ConversationHandler.ts +360 -0
  135. package/front_end/models/ai_assistance/ExtensionScope.ts +4 -16
  136. package/front_end/models/ai_assistance/README.md +79 -0
  137. package/front_end/models/ai_assistance/agents/AiAgent.ts +77 -98
  138. package/front_end/models/ai_assistance/agents/FileAgent.ts +1 -7
  139. package/front_end/models/ai_assistance/agents/NetworkAgent.ts +23 -22
  140. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +1130 -120
  141. package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.ts +75 -5
  142. package/front_end/models/ai_assistance/agents/StylingAgent.ts +322 -340
  143. package/front_end/models/ai_assistance/ai_assistance.ts +4 -1
  144. package/front_end/models/ai_assistance/data_formatters/FileFormatter.ts +4 -1
  145. package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +8 -5
  146. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +890 -0
  147. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +724 -104
  148. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +905 -0
  149. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +377 -0
  150. package/front_end/models/ai_assistance/data_formatters/Types.ts +9 -0
  151. package/front_end/models/ai_assistance/debug.ts +1 -1
  152. package/front_end/models/ai_assistance/injected.ts +1 -1
  153. package/front_end/models/ai_code_completion/AiCodeCompletion.ts +401 -0
  154. package/front_end/models/ai_code_completion/ai_code_completion.ts +6 -0
  155. package/front_end/models/ai_code_completion/debug.ts +30 -0
  156. package/front_end/models/autofill_manager/AutofillManager.ts +16 -20
  157. package/front_end/models/bindings/CSSWorkspaceBinding.ts +0 -4
  158. package/front_end/models/bindings/CompilerScriptMapping.ts +12 -5
  159. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +92 -25
  160. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +94 -21
  161. package/front_end/models/bindings/FileUtils.ts +6 -22
  162. package/front_end/models/bindings/LiveLocation.ts +0 -5
  163. package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +0 -4
  164. package/front_end/models/bindings/ResourceMapping.ts +0 -4
  165. package/front_end/models/bindings/ResourceScriptMapping.ts +10 -4
  166. package/front_end/models/bindings/SASSSourceMapping.ts +1 -1
  167. package/front_end/models/bindings/StylesSourceMapping.ts +0 -5
  168. package/front_end/models/bindings/bindings.ts +0 -2
  169. package/front_end/models/cpu_profile/CPUProfileDataModel.ts +4 -2
  170. package/front_end/models/elements/ElementUpdateRecord.ts +101 -0
  171. package/{scripts/eslint_rules/tests/utils/RuleTester.ts → front_end/models/elements/elements.ts} +4 -5
  172. package/front_end/models/emulation/DeviceModeModel.ts +18 -35
  173. package/front_end/models/emulation/EmulatedDevices.ts +12 -12
  174. package/front_end/models/extensions/ExtensionAPI.ts +9 -5
  175. package/front_end/models/extensions/ExtensionPanel.ts +11 -8
  176. package/front_end/models/extensions/ExtensionServer.ts +116 -31
  177. package/front_end/models/extensions/ExtensionView.ts +5 -1
  178. package/front_end/models/extensions/LanguageExtensionEndpoint.ts +14 -7
  179. package/front_end/{ui/legacy/Geometry.ts → models/geometry/GeometryImpl.ts} +4 -4
  180. package/front_end/models/geometry/geometry.ts +5 -0
  181. package/front_end/models/har/HARFormat.ts +1 -1
  182. package/front_end/models/har/Importer.ts +35 -1
  183. package/front_end/models/har/Writer.ts +2 -2
  184. package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -1
  185. package/front_end/models/issues_manager/ClientHintIssue.ts +1 -1
  186. package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +5 -5
  187. package/front_end/models/issues_manager/CookieIssue.ts +2 -2
  188. package/front_end/models/issues_manager/CorsIssue.ts +3 -3
  189. package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +2 -2
  190. package/front_end/models/issues_manager/{SelectElementAccessibilityIssue.ts → ElementAccessibilityIssue.ts} +29 -21
  191. package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +1 -1
  192. package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +1 -1
  193. package/front_end/models/issues_manager/GenericIssue.ts +4 -4
  194. package/front_end/models/issues_manager/HeavyAdIssue.ts +1 -1
  195. package/front_end/models/issues_manager/Issue.ts +6 -6
  196. package/front_end/models/issues_manager/IssuesManager.ts +8 -3
  197. package/front_end/models/issues_manager/LowTextContrastIssue.ts +1 -1
  198. package/front_end/models/issues_manager/MarkdownIssueDescription.ts +1 -1
  199. package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
  200. package/front_end/models/issues_manager/PartitioningBlobURLIssue.ts +2 -2
  201. package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
  202. package/front_end/models/issues_manager/SRIMessageSignatureIssue.ts +3 -3
  203. package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +1 -1
  204. package/front_end/models/issues_manager/SharedDictionaryIssue.ts +1 -1
  205. package/front_end/models/issues_manager/UnencodedDigestIssue.ts +88 -0
  206. package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderValueNotInnerList.md +1 -1
  207. package/front_end/models/issues_manager/descriptions/sriValidationFailedIntegrityMismatch.md +1 -3
  208. package/front_end/models/issues_manager/descriptions/summaryElementAccessibilityInteractiveContentSummaryDescendant.md +3 -0
  209. package/front_end/models/issues_manager/descriptions/unencodedDigestIncorrectDigestLength.md +12 -0
  210. package/front_end/models/issues_manager/descriptions/unencodedDigestIncorrectDigestType.md +17 -0
  211. package/front_end/models/issues_manager/descriptions/unencodedDigestMalformedDictionary.md +14 -0
  212. package/front_end/models/issues_manager/descriptions/unencodedDigestUnknownAlgorithm.md +15 -0
  213. package/front_end/models/issues_manager/descriptions/userReidentificationBlocked.md +1 -1
  214. package/front_end/models/issues_manager/issues_manager.ts +4 -2
  215. package/front_end/models/javascript_metadata/NativeFunctions.js +205 -131
  216. package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +1 -1
  217. package/front_end/models/live-metrics/web-vitals-injected/rollup.config.mjs +1 -1
  218. package/front_end/models/logs/NetworkLog.ts +74 -83
  219. package/front_end/models/logs/logs-meta.ts +4 -4
  220. package/front_end/models/network_time_calculator/Calculator.ts +14 -0
  221. package/front_end/{panels/network → models/network_time_calculator}/NetworkTimeCalculator.ts +39 -44
  222. package/front_end/models/network_time_calculator/network_time_calculator.ts +6 -0
  223. package/front_end/models/persistence/AutomaticFileSystemManager.ts +14 -21
  224. package/front_end/models/persistence/EditFileSystemView.ts +10 -6
  225. package/front_end/models/persistence/IsolatedFileSystem.ts +27 -9
  226. package/front_end/models/persistence/IsolatedFileSystemManager.ts +16 -3
  227. package/front_end/models/persistence/NetworkPersistenceManager.ts +9 -3
  228. package/front_end/models/persistence/PersistenceActions.ts +28 -15
  229. package/front_end/models/persistence/PersistenceImpl.ts +7 -4
  230. package/front_end/models/persistence/PersistenceUtils.ts +12 -7
  231. package/front_end/models/persistence/PlatformFileSystem.ts +11 -2
  232. package/front_end/models/persistence/WorkspaceSettingsTab.ts +12 -6
  233. package/front_end/models/persistence/editFileSystemView.css +17 -15
  234. package/front_end/models/persistence/persistence-meta.ts +12 -10
  235. package/front_end/models/persistence/workspaceSettingsTab.css +29 -27
  236. package/front_end/models/project_settings/ProjectSettingsModel.ts +2 -2
  237. package/front_end/models/source_map_scopes/NamesResolver.ts +1 -1
  238. package/front_end/models/stack_trace/README.md +14 -0
  239. package/front_end/models/stack_trace/StackTrace.ts +53 -0
  240. package/front_end/models/stack_trace/StackTraceImpl.ts +85 -0
  241. package/front_end/models/stack_trace/StackTraceModel.ts +128 -0
  242. package/front_end/models/stack_trace/Trie.ts +154 -0
  243. package/front_end/models/stack_trace/stack_trace.ts +9 -0
  244. package/front_end/models/stack_trace/stack_trace_impl.ts +13 -0
  245. package/front_end/models/text_utils/ContentProvider.ts +1 -3
  246. package/front_end/models/text_utils/StaticContentProvider.ts +1 -5
  247. package/front_end/models/text_utils/TextUtils.ts +2 -3
  248. package/front_end/models/trace/LanternComputationData.ts +1 -0
  249. package/front_end/models/trace/ModelImpl.ts +19 -7
  250. package/front_end/models/trace/Processor.ts +52 -62
  251. package/front_end/models/trace/extras/ThirdParties.ts +2 -3
  252. package/front_end/models/trace/extras/TraceTree.ts +7 -6
  253. package/front_end/models/trace/extras/extras.ts +0 -2
  254. package/front_end/models/trace/handlers/AnimationFramesHandler.ts +20 -11
  255. package/front_end/models/trace/handlers/AnimationHandler.ts +4 -4
  256. package/front_end/models/trace/handlers/AsyncJSCallsHandler.ts +8 -9
  257. package/front_end/models/trace/handlers/AuctionWorkletsHandler.ts +10 -10
  258. package/front_end/models/trace/handlers/DOMStatsHandler.ts +2 -2
  259. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +66 -57
  260. package/front_end/models/trace/handlers/FlowsHandler.ts +10 -10
  261. package/front_end/models/trace/handlers/FramesHandler.ts +46 -37
  262. package/front_end/models/trace/handlers/GPUHandler.ts +2 -2
  263. package/front_end/models/trace/handlers/ImagePaintingHandler.ts +54 -11
  264. package/front_end/models/trace/handlers/InitiatorsHandler.ts +36 -14
  265. package/front_end/models/trace/handlers/InvalidationsHandler.ts +6 -6
  266. package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +4 -3
  267. package/front_end/models/trace/handlers/LargestTextPaintHandler.ts +2 -2
  268. package/front_end/models/trace/handlers/LayerTreeHandler.ts +10 -10
  269. package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +49 -45
  270. package/front_end/models/trace/handlers/MemoryHandler.ts +2 -2
  271. package/front_end/models/trace/handlers/MetaHandler.ts +23 -22
  272. package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +102 -53
  273. package/front_end/models/trace/handlers/PageFramesHandler.ts +2 -2
  274. package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +5 -5
  275. package/front_end/models/trace/handlers/RendererHandler.ts +24 -31
  276. package/front_end/models/trace/handlers/SamplesHandler.ts +19 -21
  277. package/front_end/models/trace/handlers/ScreenshotsHandler.ts +8 -8
  278. package/front_end/models/trace/handlers/ScriptsHandler.ts +10 -6
  279. package/front_end/models/trace/handlers/SelectorStatsHandler.ts +67 -2
  280. package/front_end/models/trace/handlers/UserInteractionsHandler.ts +18 -16
  281. package/front_end/models/trace/handlers/UserTimingsHandler.ts +71 -34
  282. package/front_end/models/trace/handlers/WarningsHandler.ts +12 -12
  283. package/front_end/models/trace/handlers/WorkersHandler.ts +6 -6
  284. package/front_end/models/trace/handlers/helpers.ts +19 -14
  285. package/front_end/models/trace/handlers/types.ts +5 -1
  286. package/front_end/models/trace/helpers/Extensions.ts +10 -10
  287. package/front_end/models/trace/helpers/SamplesIntegrator.ts +24 -33
  288. package/front_end/models/trace/helpers/SyntheticEvents.ts +2 -2
  289. package/front_end/models/trace/helpers/Timing.ts +66 -3
  290. package/front_end/models/trace/helpers/Trace.ts +49 -21
  291. package/front_end/models/trace/helpers/TreeHelpers.ts +1 -1
  292. package/front_end/models/trace/insights/CLSCulprits.ts +85 -23
  293. package/front_end/models/trace/insights/Cache.ts +12 -0
  294. package/front_end/models/trace/insights/Common.ts +56 -22
  295. package/front_end/models/trace/insights/DOMSize.ts +48 -1
  296. package/front_end/models/trace/insights/DocumentLatency.ts +59 -4
  297. package/front_end/models/trace/insights/DuplicatedJavaScript.ts +15 -4
  298. package/front_end/models/trace/insights/FontDisplay.ts +8 -0
  299. package/front_end/models/trace/insights/ForcedReflow.ts +29 -4
  300. package/front_end/models/trace/insights/{InteractionToNextPaint.ts → INPBreakdown.ts} +63 -16
  301. package/front_end/models/trace/insights/ImageDelivery.ts +39 -7
  302. package/front_end/models/trace/insights/LCPBreakdown.ts +255 -0
  303. package/front_end/models/trace/insights/LCPDiscovery.ts +84 -8
  304. package/front_end/models/trace/insights/LegacyJavaScript.ts +14 -4
  305. package/front_end/models/trace/insights/Models.ts +2 -2
  306. package/front_end/models/trace/insights/ModernHTTP.ts +35 -18
  307. package/front_end/models/trace/insights/NetworkDependencyTree.ts +45 -13
  308. package/front_end/models/trace/insights/RenderBlocking.ts +13 -1
  309. package/front_end/models/trace/insights/SlowCSSSelector.ts +46 -27
  310. package/front_end/models/trace/insights/ThirdParties.ts +40 -0
  311. package/front_end/models/trace/insights/Viewport.ts +41 -3
  312. package/front_end/models/trace/insights/types.ts +5 -2
  313. package/front_end/models/trace/lantern/graph/BaseNode.ts +1 -1
  314. package/front_end/models/trace/lantern/simulation/SimulationTimingMap.ts +1 -1
  315. package/front_end/models/trace/trace.ts +0 -2
  316. package/front_end/models/trace/types/Configuration.ts +8 -0
  317. package/front_end/models/trace/types/Extensions.ts +46 -15
  318. package/front_end/models/trace/types/File.ts +5 -2
  319. package/front_end/models/trace/types/Overlays.ts +138 -0
  320. package/front_end/models/trace/types/Timing.ts +1 -0
  321. package/front_end/models/trace/types/TraceEvents.ts +96 -63
  322. package/front_end/models/trace/types/types.ts +1 -0
  323. package/front_end/models/workspace/FileManager.ts +6 -3
  324. package/front_end/models/{bindings → workspace}/IgnoreListManager.ts +36 -33
  325. package/front_end/models/workspace/UISourceCode.ts +17 -7
  326. package/front_end/models/workspace/WorkspaceImpl.ts +1 -1
  327. package/front_end/models/workspace/workspace.ts +2 -0
  328. package/front_end/models/workspace_diff/WorkspaceDiff.ts +7 -2
  329. package/front_end/panels/accessibility/ARIAAttributesView.ts +18 -64
  330. package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +12 -9
  331. package/front_end/panels/accessibility/AccessibilityNodeView.ts +31 -28
  332. package/front_end/panels/accessibility/AccessibilitySidebarView.ts +8 -12
  333. package/front_end/panels/accessibility/AccessibilityStrings.ts +87 -87
  334. package/front_end/panels/accessibility/AccessibilitySubPane.ts +6 -6
  335. package/front_end/panels/accessibility/SourceOrderView.ts +95 -61
  336. package/front_end/panels/accessibility/accessibilityProperties.css +5 -0
  337. package/front_end/panels/ai_assistance/AiAssistancePanel.snapshot.txt +32 -0
  338. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +308 -340
  339. package/front_end/panels/ai_assistance/PatchWidget.ts +31 -30
  340. package/front_end/panels/ai_assistance/SelectWorkspaceDialog.ts +31 -20
  341. package/front_end/panels/ai_assistance/aiAssistancePanel.css +1 -0
  342. package/front_end/panels/ai_assistance/ai_assistance-meta.ts +40 -20
  343. package/front_end/panels/ai_assistance/components/ChatView.ts +99 -46
  344. package/front_end/panels/ai_assistance/components/ExploreWidget.ts +10 -24
  345. package/front_end/panels/ai_assistance/components/UserActionRow.ts +25 -3
  346. package/front_end/panels/ai_assistance/components/chatView.css +0 -9
  347. package/front_end/panels/ai_assistance/components/exploreWidget.css +104 -102
  348. package/front_end/panels/ai_assistance/components/userActionRow.css +95 -94
  349. package/front_end/panels/ai_assistance/selectWorkspaceDialog.css +70 -69
  350. package/front_end/panels/animation/AnimationGroupPreviewUI.ts +1 -10
  351. package/front_end/panels/animation/AnimationTimeline.ts +183 -169
  352. package/front_end/panels/animation/AnimationUI.ts +6 -5
  353. package/front_end/panels/animation/animation.ts +0 -2
  354. package/front_end/panels/animation/animationTimeline.css +0 -67
  355. package/front_end/panels/application/AppManifestView.ts +158 -139
  356. package/front_end/panels/application/ApplicationPanelSidebar.ts +53 -54
  357. package/front_end/panels/application/BackForwardCacheTreeElement.ts +1 -1
  358. package/front_end/panels/application/BackgroundServiceView.ts +46 -44
  359. package/front_end/panels/application/CookieItemsView.ts +13 -14
  360. package/front_end/panels/application/DOMStorageItemsView.ts +5 -5
  361. package/front_end/panels/application/ExtensionStorageItemsView.ts +3 -3
  362. package/front_end/panels/application/IndexedDBModel.ts +3 -0
  363. package/front_end/panels/application/IndexedDBViews.ts +58 -32
  364. package/front_end/panels/application/InterestGroupStorageModel.ts +3 -0
  365. package/front_end/panels/application/InterestGroupStorageView.ts +4 -4
  366. package/front_end/panels/application/InterestGroupTreeElement.ts +1 -1
  367. package/front_end/panels/application/KeyValueStorageItemsView.ts +12 -11
  368. package/front_end/panels/application/OpenedWindowDetailsView.ts +18 -18
  369. package/front_end/panels/application/PreloadingTreeElement.ts +5 -5
  370. package/front_end/panels/application/ReportingApiTreeElement.ts +1 -1
  371. package/front_end/panels/application/ReportingApiView.ts +153 -50
  372. package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +5 -5
  373. package/front_end/panels/application/ServiceWorkerCacheViews.ts +20 -17
  374. package/front_end/panels/application/ServiceWorkerUpdateCycleView.ts +7 -7
  375. package/front_end/panels/application/ServiceWorkersView.ts +40 -76
  376. package/front_end/panels/application/SharedStorageEventsView.ts +10 -20
  377. package/front_end/panels/application/SharedStorageItemsView.ts +11 -11
  378. package/front_end/panels/application/SharedStorageListTreeElement.ts +1 -1
  379. package/front_end/panels/application/SharedStorageModel.ts +3 -0
  380. package/front_end/panels/application/StorageBucketsTreeElement.ts +4 -4
  381. package/front_end/panels/application/StorageItemsToolbar.ts +7 -7
  382. package/front_end/panels/application/StorageView.ts +15 -13
  383. package/front_end/panels/application/application-meta.ts +7 -7
  384. package/front_end/panels/application/application.ts +0 -2
  385. package/front_end/panels/application/components/BackForwardCacheStrings.ts +14 -9
  386. package/front_end/panels/application/components/BackForwardCacheView.ts +11 -37
  387. package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +1 -0
  388. package/front_end/panels/application/components/EndpointsGrid.ts +6 -2
  389. package/front_end/panels/application/components/FrameDetailsView.ts +88 -57
  390. package/front_end/panels/application/components/InterestGroupAccessGrid.ts +9 -10
  391. package/front_end/panels/application/components/OriginTrialTreeView.ts +13 -22
  392. package/front_end/panels/application/components/PermissionsPolicySection.ts +11 -16
  393. package/front_end/panels/application/components/ProtocolHandlersView.ts +10 -10
  394. package/front_end/panels/application/components/ReportsGrid.ts +10 -11
  395. package/front_end/panels/application/components/SharedStorageAccessGrid.ts +107 -101
  396. package/front_end/panels/application/components/SharedStorageMetadataView.ts +8 -8
  397. package/front_end/panels/application/components/StackTrace.ts +6 -12
  398. package/front_end/panels/application/components/StorageMetadataView.ts +22 -26
  399. package/front_end/panels/application/components/TrustTokensView.ts +3 -3
  400. package/front_end/panels/application/components/frameDetailsReportView.css +1 -1
  401. package/front_end/panels/application/components/sharedStorageAccessGrid.css +19 -17
  402. package/front_end/panels/application/preloading/PreloadingView.ts +29 -24
  403. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +9 -9
  404. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +22 -22
  405. package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +28 -29
  406. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +5 -7
  407. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +4 -4
  408. package/front_end/panels/application/preloading/components/PreloadingString.ts +34 -34
  409. package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +4 -10
  410. package/front_end/panels/application/preloading/components/RuleSetGrid.ts +10 -10
  411. package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +22 -23
  412. package/front_end/panels/application/resourcesSidebar.css +0 -4
  413. package/front_end/panels/autofill/AutofillView.ts +212 -217
  414. package/front_end/panels/autofill/autofill-meta.ts +3 -4
  415. package/front_end/panels/autofill/autofillView.css +85 -82
  416. package/front_end/panels/browser_debugger/CSPViolationBreakpointsSidebarPane.ts +5 -6
  417. package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +219 -206
  418. package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +27 -27
  419. package/front_end/panels/browser_debugger/EventListenerBreakpointsSidebarPane.ts +9 -6
  420. package/front_end/panels/browser_debugger/ObjectEventListenersSidebarPane.ts +3 -2
  421. package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +16 -14
  422. package/front_end/panels/browser_debugger/browser_debugger-meta.ts +17 -17
  423. package/front_end/panels/browser_debugger/browser_debugger.ts +2 -0
  424. package/front_end/panels/browser_debugger/categorizedBreakpointsSidebarPane.css +1 -1
  425. package/front_end/panels/changes/ChangesSidebar.ts +7 -7
  426. package/front_end/panels/changes/ChangesView.ts +6 -5
  427. package/front_end/panels/changes/CombinedDiffView.ts +2 -2
  428. package/front_end/panels/common/AiCodeCompletionDisclaimer.ts +186 -0
  429. package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +139 -0
  430. package/front_end/panels/common/AiCodeCompletionTeaser.ts +258 -0
  431. package/front_end/panels/common/BadgeNotification.ts +121 -0
  432. package/front_end/panels/common/FreDialog.ts +140 -0
  433. package/front_end/panels/common/aiCodeCompletionDisclaimer.css +57 -0
  434. package/front_end/panels/common/aiCodeCompletionSummaryToolbar.css +101 -0
  435. package/front_end/panels/common/aiCodeCompletionTeaser.css +42 -0
  436. package/front_end/panels/common/badgeNotification.css +74 -0
  437. package/front_end/panels/common/common.css +0 -83
  438. package/front_end/panels/common/common.ts +11 -108
  439. package/front_end/panels/common/freDialog.css +88 -0
  440. package/front_end/panels/console/ConsoleContextSelector.ts +5 -5
  441. package/front_end/panels/console/ConsolePanel.ts +1 -2
  442. package/front_end/panels/console/ConsolePinPane.ts +9 -9
  443. package/front_end/panels/console/ConsolePrompt.ts +187 -19
  444. package/front_end/panels/console/ConsoleSidebar.ts +170 -207
  445. package/front_end/panels/console/ConsoleView.ts +154 -62
  446. package/front_end/panels/console/ConsoleViewMessage.ts +80 -84
  447. package/front_end/panels/console/console-meta.ts +27 -27
  448. package/front_end/panels/console/consoleSidebar.css +2 -0
  449. package/front_end/panels/console/consoleView.css +22 -15
  450. package/front_end/panels/console_counters/WarningErrorCounter.ts +133 -100
  451. package/front_end/panels/coverage/CoverageListView.ts +30 -30
  452. package/front_end/panels/coverage/CoverageView.ts +35 -34
  453. package/front_end/panels/coverage/coverage-meta.ts +7 -7
  454. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +51 -50
  455. package/front_end/panels/css_overview/CSSOverviewPanel.ts +1 -1
  456. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +3 -3
  457. package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +3 -3
  458. package/front_end/panels/css_overview/CSSOverviewStartView.ts +8 -8
  459. package/front_end/panels/css_overview/CSSOverviewUnusedDeclarations.ts +7 -7
  460. package/front_end/panels/css_overview/cssOverviewCompletedView.css +289 -287
  461. package/front_end/panels/css_overview/cssOverviewSidebarPanel.css +43 -42
  462. package/front_end/panels/css_overview/cssOverviewStartView.css +68 -66
  463. package/front_end/panels/css_overview/css_overview-meta.ts +2 -2
  464. package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +14 -14
  465. package/front_end/panels/developer_resources/DeveloperResourcesView.ts +5 -5
  466. package/front_end/panels/developer_resources/developerResourcesListView.css +19 -18
  467. package/front_end/panels/developer_resources/developerResourcesView.css +32 -30
  468. package/front_end/panels/elements/AccessibilityTreeView.ts +2 -1
  469. package/front_end/panels/elements/CSSRuleValidator.ts +41 -94
  470. package/front_end/panels/elements/CSSRuleValidatorHelper.ts +8 -0
  471. package/front_end/panels/elements/CSSValueTraceView.ts +1 -2
  472. package/front_end/panels/elements/ClassesPaneWidget.ts +5 -3
  473. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +18 -9
  474. package/front_end/panels/elements/ComputedStyleWidget.ts +4 -3
  475. package/front_end/panels/elements/DOMLinkifier.ts +6 -4
  476. package/front_end/panels/elements/ElementIssueUtils.ts +14 -9
  477. package/front_end/panels/elements/ElementStatePaneWidget.ts +3 -3
  478. package/front_end/panels/elements/ElementsPanel.ts +105 -187
  479. package/front_end/panels/elements/ElementsSidebarPane.ts +1 -1
  480. package/front_end/panels/elements/ElementsTreeElement.ts +446 -86
  481. package/front_end/panels/elements/ElementsTreeOutline.ts +425 -258
  482. package/front_end/panels/elements/ElementsTreeOutlineRenderer.ts +83 -0
  483. package/front_end/panels/elements/EventListenersWidget.ts +112 -78
  484. package/front_end/panels/elements/ImagePreviewPopover.ts +1 -1
  485. package/front_end/panels/elements/InspectElementModeController.ts +13 -2
  486. package/front_end/panels/elements/LayersWidget.ts +95 -63
  487. package/front_end/panels/elements/LayoutPane.ts +593 -0
  488. package/front_end/panels/elements/MarkerDecorator.ts +2 -2
  489. package/front_end/panels/elements/MetricsSidebarPane.ts +6 -6
  490. package/front_end/panels/elements/NodeStackTraceWidget.ts +16 -14
  491. package/front_end/panels/elements/PlatformFontsWidget.ts +8 -8
  492. package/front_end/panels/elements/PropertiesWidget.ts +2 -2
  493. package/front_end/panels/elements/PropertyRenderer.ts +8 -11
  494. package/front_end/panels/elements/ShortcutTreeElement.ts +157 -0
  495. package/front_end/panels/elements/StyleEditorWidget.ts +1 -1
  496. package/front_end/panels/elements/StylePropertiesSection.ts +42 -44
  497. package/front_end/panels/elements/StylePropertyHighlighter.ts +9 -11
  498. package/front_end/panels/elements/StylePropertyTreeElement.ts +275 -108
  499. package/front_end/panels/elements/StylesSidebarPane.ts +47 -48
  500. package/front_end/panels/elements/TopLayerContainer.ts +8 -7
  501. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +1 -1
  502. package/front_end/panels/elements/components/AdornerManager.ts +15 -0
  503. package/front_end/panels/elements/components/CSSHintDetailsView.ts +1 -1
  504. package/front_end/panels/elements/components/CSSPropertyDocsView.ts +188 -5
  505. package/front_end/panels/elements/components/CSSPropertyIconResolver.ts +2 -2
  506. package/front_end/panels/elements/components/CSSVariableValueView.ts +5 -5
  507. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +2 -7
  508. package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +1 -1
  509. package/front_end/panels/elements/components/QueryContainer.ts +1 -4
  510. package/front_end/panels/elements/components/components.ts +0 -4
  511. package/front_end/panels/elements/components/cssPropertyDocsView.css +12 -1
  512. package/front_end/panels/elements/components/cssVariableValueView.css +1 -0
  513. package/front_end/panels/elements/domLinkifier.css +36 -35
  514. package/front_end/panels/elements/elementStatePaneWidget.css +46 -45
  515. package/front_end/panels/elements/elements-meta.ts +4 -13
  516. package/front_end/panels/elements/elements.ts +4 -3
  517. package/front_end/panels/elements/elementsTreeOutline.css +2 -1
  518. package/front_end/panels/elements/layersWidget.css +2 -11
  519. package/front_end/panels/elements/layoutPane.css +145 -0
  520. package/front_end/panels/elements/metricsSidebarPane.css +1 -1
  521. package/front_end/panels/elements/nodeStackTraceWidget.css +5 -4
  522. package/front_end/panels/elements/platformFontsWidget.css +32 -31
  523. package/front_end/panels/elements/stylePropertiesTreeOutline.css +2 -2
  524. package/front_end/panels/elements/stylesSidebarPane.css +1 -0
  525. package/front_end/panels/emulation/DeviceModeToolbar.ts +13 -50
  526. package/front_end/panels/emulation/DeviceModeView.ts +9 -9
  527. package/front_end/panels/emulation/InspectedPagePlaceholder.ts +1 -1
  528. package/front_end/panels/emulation/MediaQueryInspector.ts +4 -2
  529. package/front_end/panels/emulation/emulation-meta.ts +7 -7
  530. package/front_end/panels/event_listeners/EventListenersView.ts +34 -31
  531. package/front_end/panels/explain/PromptBuilder.ts +3 -1
  532. package/front_end/panels/explain/components/ConsoleInsight.ts +13 -34
  533. package/front_end/panels/explain/explain-meta.ts +3 -3
  534. package/front_end/panels/issues/AffectedBlockedByResponseView.ts +4 -4
  535. package/front_end/panels/issues/AffectedCookiesView.ts +6 -6
  536. package/front_end/panels/issues/AffectedDescendantsWithinSelectElementView.ts +6 -6
  537. package/front_end/panels/issues/AffectedDirectivesView.ts +9 -9
  538. package/front_end/panels/issues/AffectedDocumentsInQuirksModeView.ts +4 -4
  539. package/front_end/panels/issues/AffectedElementsView.ts +1 -1
  540. package/front_end/panels/issues/AffectedElementsWithLowContrastView.ts +6 -6
  541. package/front_end/panels/issues/AffectedHeavyAdView.ts +7 -7
  542. package/front_end/panels/issues/AffectedMetadataAllowedSitesView.ts +1 -1
  543. package/front_end/panels/issues/AffectedResourcesView.ts +6 -6
  544. package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +10 -10
  545. package/front_end/panels/issues/AffectedSourcesView.ts +1 -1
  546. package/front_end/panels/issues/AffectedTrackingSitesView.ts +1 -1
  547. package/front_end/panels/issues/CorsIssueDetailsView.ts +27 -27
  548. package/front_end/panels/issues/GenericIssueDetailsView.ts +3 -3
  549. package/front_end/panels/issues/HiddenIssuesRow.ts +55 -29
  550. package/front_end/panels/issues/IssueAggregator.ts +5 -11
  551. package/front_end/panels/issues/IssueKindView.ts +2 -2
  552. package/front_end/panels/issues/IssueView.ts +13 -13
  553. package/front_end/panels/issues/IssuesPane.ts +5 -4
  554. package/front_end/panels/issues/components/HideIssuesMenu.ts +1 -1
  555. package/front_end/panels/issues/issues-meta.ts +2 -2
  556. package/front_end/panels/js_timeline/js_timeline-meta.ts +6 -6
  557. package/front_end/panels/layer_viewer/LayerDetailsView.ts +43 -41
  558. package/front_end/panels/layer_viewer/LayerTreeOutline.ts +7 -7
  559. package/front_end/panels/layer_viewer/LayerViewHost.ts +1 -1
  560. package/front_end/panels/layer_viewer/Layers3DView.ts +28 -22
  561. package/front_end/panels/layer_viewer/PaintProfilerView.ts +9 -9
  562. package/front_end/panels/layer_viewer/TransformController.ts +14 -8
  563. package/front_end/panels/layer_viewer/layer_viewer-meta.ts +9 -9
  564. package/front_end/panels/layers/LayerTreeModel.ts +5 -5
  565. package/front_end/panels/layers/LayersPanel.ts +3 -3
  566. package/front_end/panels/layers/layers-meta.ts +2 -2
  567. package/front_end/panels/lighthouse/LighthouseController.ts +27 -27
  568. package/front_end/panels/lighthouse/LighthousePanel.ts +7 -7
  569. package/front_end/panels/lighthouse/LighthouseProtocolService.ts +31 -33
  570. package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +4 -2
  571. package/front_end/panels/lighthouse/LighthouseReportSelector.ts +2 -4
  572. package/front_end/panels/lighthouse/LighthouseStartView.ts +4 -3
  573. package/front_end/panels/lighthouse/LighthouseStatusView.ts +33 -32
  574. package/front_end/panels/lighthouse/LighthouseTimespanView.ts +2 -1
  575. package/front_end/panels/lighthouse/lighthouse-meta.ts +1 -1
  576. package/front_end/panels/lighthouse/lighthousePanel.css +9 -0
  577. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +2 -2
  578. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +5 -6
  579. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +6 -10
  580. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +3 -3
  581. package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +6 -6
  582. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +2 -2
  583. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +6 -7
  584. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +1 -1
  585. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +1 -1
  586. package/front_end/panels/linear_memory_inspector/linear_memory_inspector-meta.ts +2 -2
  587. package/front_end/panels/media/EventDisplayTable.ts +5 -7
  588. package/front_end/panels/media/EventTimelineView.ts +4 -4
  589. package/front_end/panels/media/MainView.ts +52 -22
  590. package/front_end/panels/media/MediaModel.ts +4 -4
  591. package/front_end/panels/media/PlayerDetailView.ts +8 -8
  592. package/front_end/panels/media/PlayerListView.ts +15 -8
  593. package/front_end/panels/media/PlayerMessagesView.ts +15 -17
  594. package/front_end/panels/media/PlayerPropertiesView.ts +66 -51
  595. package/front_end/panels/media/TickingFlameChart.ts +6 -5
  596. package/front_end/panels/media/media-meta.ts +3 -3
  597. package/front_end/panels/mobile_throttling/CalibrationController.ts +3 -4
  598. package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +3 -3
  599. package/front_end/panels/mobile_throttling/NetworkPanelIndicator.ts +4 -4
  600. package/front_end/panels/mobile_throttling/NetworkThrottlingSelector.ts +189 -51
  601. package/front_end/panels/mobile_throttling/ThrottlingManager.ts +114 -126
  602. package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +8 -8
  603. package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +178 -143
  604. package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +6 -6
  605. package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +30 -36
  606. package/front_end/panels/network/BinaryResourceView.ts +7 -7
  607. package/front_end/panels/network/BlockedURLsPane.ts +18 -17
  608. package/front_end/panels/network/EventSourceMessagesView.ts +9 -10
  609. package/front_end/panels/network/NetworkConfigView.ts +19 -17
  610. package/front_end/panels/network/NetworkDataGridNode.ts +133 -95
  611. package/front_end/panels/network/NetworkItemView.ts +81 -81
  612. package/front_end/panels/network/NetworkLogView.ts +217 -145
  613. package/front_end/panels/network/NetworkLogViewColumns.ts +66 -71
  614. package/front_end/panels/network/NetworkManageCustomHeadersView.ts +5 -5
  615. package/front_end/panels/network/NetworkOverview.ts +6 -4
  616. package/front_end/panels/network/NetworkPanel.ts +72 -71
  617. package/front_end/panels/network/NetworkSearchScope.ts +1 -1
  618. package/front_end/panels/network/NetworkWaterfallColumn.ts +7 -17
  619. package/front_end/panels/network/RequestCookiesView.ts +10 -11
  620. package/front_end/panels/network/RequestHTMLView.ts +2 -2
  621. package/front_end/panels/network/RequestInitiatorView.ts +16 -16
  622. package/front_end/panels/network/RequestPayloadView.ts +12 -13
  623. package/front_end/panels/network/RequestPreviewView.ts +3 -4
  624. package/front_end/panels/network/RequestResponseView.ts +5 -5
  625. package/front_end/panels/network/RequestTimingView.ts +61 -60
  626. package/front_end/panels/network/ResourceChunkView.ts +13 -13
  627. package/front_end/panels/network/ResourceDirectSocketChunkView.ts +26 -17
  628. package/front_end/panels/network/ResourceWebSocketFrameView.ts +9 -9
  629. package/front_end/panels/network/SignedExchangeInfoView.ts +24 -24
  630. package/front_end/panels/network/binaryResourceView.css +1 -0
  631. package/front_end/panels/network/components/DirectSocketConnectionView.ts +18 -16
  632. package/front_end/panels/network/components/HeaderSectionRow.ts +17 -42
  633. package/front_end/panels/network/components/RequestHeaderSection.ts +6 -11
  634. package/front_end/panels/network/components/RequestHeadersView.css +2 -2
  635. package/front_end/panels/network/components/RequestHeadersView.ts +24 -34
  636. package/front_end/panels/network/components/RequestTrustTokensView.ts +19 -23
  637. package/front_end/panels/network/components/ResponseHeaderSection.ts +16 -15
  638. package/front_end/panels/network/components/WebBundleInfoView.ts +4 -9
  639. package/front_end/panels/network/network-meta.ts +27 -27
  640. package/front_end/panels/network/network.ts +1 -3
  641. package/front_end/panels/network/networkConfigView.css +13 -6
  642. package/front_end/panels/network/networkLogView.css +1 -1
  643. package/front_end/panels/network/networkPanel.css +3 -2
  644. package/front_end/panels/network/requestHTMLView.css +9 -8
  645. package/front_end/panels/network/resourceChunkView.css +21 -28
  646. package/front_end/panels/performance_monitor/PerformanceMonitor.ts +252 -168
  647. package/front_end/panels/performance_monitor/performanceMonitor.css +7 -9
  648. package/front_end/panels/performance_monitor/performance_monitor-meta.ts +7 -7
  649. package/front_end/panels/profiler/HeapDetachedElementsDataGrid.ts +19 -52
  650. package/front_end/panels/profiler/HeapDetachedElementsView.ts +9 -6
  651. package/front_end/panels/profiler/HeapProfileView.ts +24 -24
  652. package/front_end/panels/profiler/HeapProfilerPanel.ts +1 -1
  653. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +20 -20
  654. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +27 -27
  655. package/front_end/panels/profiler/HeapSnapshotProxy.ts +2 -6
  656. package/front_end/panels/profiler/HeapSnapshotView.ts +59 -56
  657. package/front_end/panels/profiler/HeapTimelineOverview.ts +3 -3
  658. package/front_end/panels/profiler/IsolateSelector.ts +16 -16
  659. package/front_end/panels/profiler/LiveHeapProfileView.ts +14 -14
  660. package/front_end/panels/profiler/ModuleUIStrings.ts +26 -26
  661. package/front_end/panels/profiler/ProfileDataGrid.ts +5 -5
  662. package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +2 -1
  663. package/front_end/panels/profiler/ProfileHeader.ts +0 -9
  664. package/front_end/panels/profiler/ProfileLauncherView.ts +6 -6
  665. package/front_end/panels/profiler/ProfileSidebarTreeElement.ts +1 -1
  666. package/front_end/panels/profiler/ProfileView.ts +23 -20
  667. package/front_end/panels/profiler/ProfilesPanel.ts +9 -9
  668. package/front_end/panels/profiler/heapProfiler.css +8 -0
  669. package/front_end/panels/profiler/profiler-meta.ts +12 -12
  670. package/front_end/panels/protocol_monitor/JSONEditor.ts +36 -19
  671. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +24 -25
  672. package/front_end/panels/protocol_monitor/protocolMonitor.css +15 -9
  673. package/front_end/panels/protocol_monitor/protocol_monitor-meta.ts +1 -1
  674. package/front_end/panels/recorder/RecorderController.ts +82 -85
  675. package/front_end/panels/recorder/components/CreateRecordingView.ts +2 -2
  676. package/front_end/panels/recorder/components/RecordingListView.ts +141 -125
  677. package/front_end/panels/recorder/components/RecordingView.ts +912 -929
  678. package/front_end/panels/recorder/components/StepEditor.ts +13 -13
  679. package/front_end/panels/recorder/components/StepView.ts +23 -24
  680. package/front_end/panels/recorder/components/recordingListView.css +76 -75
  681. package/front_end/panels/recorder/components/recordingView.css +303 -308
  682. package/front_end/panels/recorder/components/stepView.css +197 -196
  683. package/front_end/panels/recorder/components/timelineSection.css +1 -1
  684. package/front_end/panels/recorder/injected/rollup.config.mjs +1 -1
  685. package/front_end/panels/recorder/injected/selectors/ARIASelector.ts +2 -2
  686. package/front_end/panels/recorder/injected/selectors/CSSSelector.ts +4 -4
  687. package/front_end/panels/recorder/injected/selectors/PierceSelector.ts +2 -2
  688. package/front_end/panels/recorder/injected/selectors/TextSelector.ts +2 -2
  689. package/front_end/panels/recorder/injected/selectors/XPath.ts +3 -3
  690. package/front_end/panels/recorder/models/RecorderSettings.ts +0 -1
  691. package/front_end/panels/recorder/models/RecordingPlayer.ts +9 -9
  692. package/front_end/panels/recorder/models/RecordingSession.ts +3 -3
  693. package/front_end/panels/recorder/recorder-meta.ts +5 -5
  694. package/front_end/panels/recorder/recorderController.css +3 -3
  695. package/front_end/panels/screencast/ScreencastApp.ts +1 -1
  696. package/front_end/panels/screencast/ScreencastView.ts +13 -18
  697. package/front_end/panels/search/SearchResultsPane.ts +8 -8
  698. package/front_end/panels/search/SearchView.ts +130 -127
  699. package/front_end/panels/search/searchResultsPane.css +2 -2
  700. package/front_end/panels/search/searchView.css +2 -2
  701. package/front_end/panels/security/CookieControlsView.ts +27 -27
  702. package/front_end/panels/security/CookieReportView.ts +40 -73
  703. package/front_end/panels/security/IPProtectionTreeElement.ts +21 -0
  704. package/front_end/panels/security/IPProtectionView.ts +179 -0
  705. package/front_end/panels/security/SecurityModel.ts +10 -10
  706. package/front_end/panels/security/SecurityPanel.ts +107 -107
  707. package/front_end/panels/security/SecurityPanelSidebar.ts +27 -11
  708. package/front_end/panels/security/ipProtectionView.css +109 -0
  709. package/front_end/panels/security/security-meta.ts +4 -4
  710. package/front_end/panels/security/security.ts +2 -0
  711. package/front_end/panels/sensors/LocationsSettingsTab.ts +32 -31
  712. package/front_end/panels/sensors/SensorsView.ts +60 -51
  713. package/front_end/panels/sensors/sensors-meta.ts +20 -20
  714. package/front_end/panels/settings/AISettingsTab.ts +118 -72
  715. package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +22 -20
  716. package/front_end/panels/settings/KeybindsSettingsTab.ts +31 -30
  717. package/front_end/panels/settings/SettingsScreen.ts +38 -29
  718. package/front_end/panels/settings/components/SyncSection.ts +199 -32
  719. package/front_end/panels/settings/components/syncSection.css +70 -7
  720. package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +14 -16
  721. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +134 -28
  722. package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +19 -0
  723. package/front_end/panels/settings/emulation/emulation-meta.ts +2 -2
  724. package/front_end/panels/settings/settings-meta.ts +12 -12
  725. package/front_end/panels/settings/settingsScreen.css +0 -1
  726. package/front_end/panels/snippets/ScriptSnippetFileSystem.ts +5 -5
  727. package/front_end/panels/snippets/SnippetsQuickOpen.ts +4 -4
  728. package/front_end/panels/sources/AddSourceMapURLDialog.ts +5 -5
  729. package/front_end/panels/sources/AiCodeCompletionPlugin.ts +417 -0
  730. package/front_end/panels/sources/AiWarningInfobarPlugin.ts +3 -3
  731. package/front_end/panels/sources/BreakpointEditDialog.ts +13 -11
  732. package/front_end/panels/sources/{components/BreakpointsView.ts → BreakpointsView.ts} +336 -301
  733. package/front_end/panels/sources/{components/BreakpointsViewUtils.ts → BreakpointsViewUtils.ts} +3 -3
  734. package/front_end/panels/sources/CSSPlugin.ts +31 -21
  735. package/front_end/panels/sources/CallStackSidebarPane.ts +34 -58
  736. package/front_end/panels/sources/CategorizedBreakpointL10n.ts +18 -18
  737. package/front_end/panels/sources/CoveragePlugin.ts +5 -5
  738. package/front_end/panels/sources/DebuggerPausedMessage.ts +33 -39
  739. package/front_end/panels/sources/DebuggerPlugin.ts +68 -49
  740. package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +7 -7
  741. package/front_end/panels/sources/GoToLineQuickOpen.ts +15 -15
  742. package/front_end/panels/sources/InplaceFormatterEditorAction.ts +9 -6
  743. package/front_end/panels/sources/NavigatorView.ts +39 -35
  744. package/front_end/panels/sources/OpenFileQuickOpen.ts +6 -6
  745. package/front_end/panels/sources/OutlineQuickOpen.ts +3 -3
  746. package/front_end/panels/sources/ProfilePlugin.ts +3 -3
  747. package/front_end/panels/sources/ResourceOriginPlugin.ts +1 -1
  748. package/front_end/panels/sources/ScopeChainSidebarPane.ts +11 -9
  749. package/front_end/panels/sources/SnippetsPlugin.ts +2 -2
  750. package/front_end/panels/sources/SourcesNavigator.ts +32 -20
  751. package/front_end/panels/sources/SourcesPanel.ts +71 -28
  752. package/front_end/panels/sources/SourcesSearchScope.ts +1 -1
  753. package/front_end/panels/sources/SourcesView.ts +7 -8
  754. package/front_end/panels/sources/TabbedEditorContainer.ts +11 -8
  755. package/front_end/panels/sources/ThreadsSidebarPane.ts +7 -10
  756. package/front_end/panels/sources/UISourceCodeFrame.ts +40 -17
  757. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +14 -9
  758. package/front_end/panels/sources/breakpointsView.css +276 -0
  759. package/front_end/panels/sources/components/HeadersView.ts +17 -13
  760. package/front_end/panels/sources/components/components.ts +0 -4
  761. package/front_end/panels/sources/scopeChainSidebarPane.css +1 -1
  762. package/front_end/panels/sources/sources-meta.ts +103 -112
  763. package/front_end/panels/sources/sources.ts +6 -0
  764. package/front_end/panels/timeline/ActiveFilters.ts +2 -1
  765. package/front_end/panels/timeline/AnimationsTrackAppender.ts +1 -1
  766. package/front_end/panels/timeline/AnnotationHelpers.ts +28 -23
  767. package/front_end/panels/timeline/AppenderUtils.ts +2 -2
  768. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +1 -14
  769. package/front_end/panels/timeline/CountersGraph.ts +28 -19
  770. package/front_end/panels/timeline/EventsTimelineTreeView.ts +4 -25
  771. package/front_end/panels/timeline/ExtensionTrackAppender.ts +6 -11
  772. package/front_end/panels/timeline/GPUTrackAppender.ts +3 -3
  773. package/front_end/panels/timeline/Initiators.ts +19 -6
  774. package/front_end/panels/timeline/InteractionsTrackAppender.ts +6 -6
  775. package/front_end/panels/timeline/IsolateSelector.ts +2 -2
  776. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +9 -8
  777. package/front_end/panels/timeline/ModificationsManager.ts +51 -48
  778. package/front_end/panels/timeline/NetworkTrackAppender.ts +3 -3
  779. package/front_end/panels/timeline/README.md +5 -13
  780. package/front_end/panels/timeline/RecordingMetadata.ts +79 -0
  781. package/front_end/panels/timeline/SaveFileFormatter.ts +0 -8
  782. package/front_end/panels/timeline/StatusDialog.ts +12 -8
  783. package/front_end/panels/timeline/ThirdPartyTreeView.ts +5 -5
  784. package/front_end/panels/timeline/ThreadAppender.ts +29 -29
  785. package/front_end/panels/timeline/TimelineController.ts +14 -18
  786. package/front_end/panels/timeline/TimelineDetailsView.ts +235 -112
  787. package/front_end/panels/timeline/TimelineEventOverview.ts +6 -6
  788. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +94 -65
  789. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +10 -30
  790. package/front_end/panels/timeline/TimelineFlameChartView.ts +107 -102
  791. package/front_end/panels/timeline/TimelineHistoryManager.ts +8 -8
  792. package/front_end/panels/timeline/TimelineLoader.ts +22 -3
  793. package/front_end/panels/timeline/TimelineMiniMap.ts +13 -5
  794. package/front_end/panels/timeline/TimelinePaintProfilerView.ts +3 -2
  795. package/front_end/panels/timeline/TimelinePanel.ts +579 -349
  796. package/front_end/panels/timeline/TimelineSelectorStatsView.ts +195 -80
  797. package/front_end/panels/timeline/TimelineTreeView.ts +25 -25
  798. package/front_end/panels/timeline/TimelineUIUtils.ts +231 -348
  799. package/front_end/panels/timeline/TimingsTrackAppender.ts +21 -13
  800. package/front_end/panels/timeline/TrackConfigBanner.ts +97 -0
  801. package/front_end/panels/timeline/TrackConfiguration.ts +1 -0
  802. package/front_end/panels/timeline/UIDevtoolsUtils.ts +15 -15
  803. package/front_end/panels/timeline/components/BreadcrumbsUI.ts +4 -9
  804. package/front_end/panels/timeline/components/DetailsView.ts +13 -13
  805. package/front_end/panels/timeline/components/ExportTraceOptions.ts +262 -0
  806. package/front_end/panels/timeline/components/FieldSettingsDialog.ts +2 -1
  807. package/front_end/panels/timeline/components/IgnoreListSetting.ts +7 -7
  808. package/front_end/panels/timeline/components/InteractionBreakdown.ts +3 -3
  809. package/front_end/panels/timeline/components/LayoutShiftDetails.ts +325 -307
  810. package/front_end/panels/timeline/components/LiveMetricsView.ts +1 -1
  811. package/front_end/panels/timeline/components/NetworkRequestDetails.ts +318 -278
  812. package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +8 -8
  813. package/front_end/panels/timeline/components/OriginMap.ts +1 -1
  814. package/front_end/panels/timeline/components/RelatedInsightChips.ts +87 -66
  815. package/front_end/panels/timeline/components/Sidebar.ts +47 -20
  816. package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +228 -218
  817. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +18 -54
  818. package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +61 -44
  819. package/front_end/panels/timeline/components/TimelineSummary.ts +4 -4
  820. package/front_end/panels/timeline/components/Utils.ts +9 -9
  821. package/front_end/panels/timeline/components/components.ts +2 -0
  822. package/front_end/panels/timeline/components/exportTraceOptions.css +26 -0
  823. package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +28 -34
  824. package/front_end/panels/timeline/components/insights/CLSCulprits.ts +22 -23
  825. package/front_end/panels/timeline/components/insights/Cache.ts +4 -22
  826. package/front_end/panels/timeline/components/insights/Checklist.ts +6 -7
  827. package/front_end/panels/timeline/components/insights/DOMSize.ts +35 -15
  828. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +1 -61
  829. package/front_end/panels/timeline/components/insights/DuplicatedJavaScript.ts +5 -17
  830. package/front_end/panels/timeline/components/insights/EventRef.ts +7 -9
  831. package/front_end/panels/timeline/components/insights/FontDisplay.ts +20 -21
  832. package/front_end/panels/timeline/components/insights/ForcedReflow.ts +9 -28
  833. package/front_end/panels/timeline/components/insights/INPBreakdown.ts +70 -0
  834. package/front_end/panels/timeline/components/insights/ImageDelivery.ts +7 -21
  835. package/front_end/panels/timeline/components/insights/LCPBreakdown.ts +146 -0
  836. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +27 -80
  837. package/front_end/panels/timeline/components/insights/LegacyJavaScript.ts +3 -15
  838. package/front_end/panels/timeline/components/insights/ModernHTTP.ts +18 -23
  839. package/front_end/panels/timeline/components/insights/NetworkDependencyTree.ts +37 -27
  840. package/front_end/panels/timeline/components/insights/NodeLink.ts +50 -10
  841. package/front_end/panels/timeline/components/insights/README.md +1 -1
  842. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +4 -22
  843. package/front_end/panels/timeline/components/insights/SidebarInsight.ts +1 -2
  844. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +16 -28
  845. package/front_end/panels/timeline/components/insights/Table.ts +2 -3
  846. package/front_end/panels/timeline/components/insights/ThirdParties.ts +11 -47
  847. package/front_end/panels/timeline/components/insights/Viewport.ts +0 -6
  848. package/front_end/panels/timeline/components/insights/insights.ts +4 -4
  849. package/front_end/panels/timeline/components/insights/table.css +18 -0
  850. package/front_end/panels/timeline/components/insights/types.ts +2 -2
  851. package/front_end/panels/timeline/components/layoutShiftDetails.css +99 -92
  852. package/front_end/panels/timeline/components/networkRequestDetails.css +110 -104
  853. package/front_end/panels/timeline/components/networkRequestTooltip.css +88 -83
  854. package/front_end/panels/timeline/components/relatedInsightChips.css +60 -58
  855. package/front_end/panels/timeline/components/sidebarAnnotationsTab.css +80 -78
  856. package/front_end/panels/timeline/components/sidebarInsightsTab.css +0 -25
  857. package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +1 -1
  858. package/front_end/panels/timeline/docs/flame_chart_migration.md +2 -2
  859. package/front_end/panels/timeline/extensions/ExtensionUI.ts +1 -1
  860. package/front_end/panels/timeline/overlays/OverlaysImpl.ts +218 -283
  861. package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +1 -1
  862. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +70 -105
  863. package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +1 -1
  864. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +3 -12
  865. package/front_end/panels/timeline/overlays/components/entryLabelOverlay.css +13 -0
  866. package/front_end/panels/timeline/overlays/components/timeRangeOverlay.css +2 -1
  867. package/front_end/panels/timeline/timeline-meta.ts +14 -14
  868. package/front_end/panels/timeline/timeline.ts +4 -4
  869. package/front_end/panels/timeline/timelineDetailsView.css +118 -0
  870. package/front_end/panels/timeline/timelineFlameChartView.css +18 -117
  871. package/front_end/panels/timeline/timelineMiniMap.css +5 -0
  872. package/front_end/panels/timeline/timelinePanel.css +2 -10
  873. package/front_end/panels/timeline/timelineTreeView.css +0 -4
  874. package/front_end/panels/timeline/utils/AICallTree.ts +31 -74
  875. package/front_end/panels/timeline/utils/AIContext.ts +80 -0
  876. package/front_end/panels/timeline/utils/EntityMapper.ts +3 -3
  877. package/front_end/panels/timeline/utils/EntryName.ts +10 -10
  878. package/front_end/panels/timeline/utils/EntryNodes.ts +107 -0
  879. package/front_end/panels/timeline/utils/EntryStyles.ts +110 -110
  880. package/front_end/panels/timeline/{EventsSerializer.ts → utils/EventsSerializer.ts} +1 -1
  881. package/front_end/panels/timeline/{FreshRecording.ts → utils/FreshRecording.ts} +1 -1
  882. package/front_end/panels/timeline/utils/Helpers.ts +6 -0
  883. package/front_end/panels/timeline/utils/IgnoreList.ts +6 -6
  884. package/front_end/panels/timeline/utils/InsightAIContext.ts +102 -81
  885. package/front_end/panels/timeline/utils/Treemap.ts +5 -20
  886. package/front_end/panels/timeline/utils/utils.ts +8 -0
  887. package/front_end/panels/utils/utils.ts +17 -21
  888. package/front_end/panels/web_audio/WebAudioView.ts +219 -267
  889. package/front_end/panels/web_audio/web_audio-meta.ts +3 -3
  890. package/front_end/panels/web_audio/web_audio.ts +0 -12
  891. package/front_end/panels/webauthn/WebauthnPane.ts +517 -578
  892. package/front_end/panels/webauthn/webauthn-meta.ts +2 -2
  893. package/front_end/panels/webauthn/webauthnPane.css +157 -155
  894. package/front_end/panels/whats_new/ReleaseNoteText.ts +11 -11
  895. package/front_end/panels/whats_new/ReleaseNoteView.ts +2 -2
  896. package/front_end/panels/whats_new/releaseNoteView.css +92 -91
  897. package/front_end/panels/whats_new/resources/WNDT.md +6 -10
  898. package/front_end/panels/whats_new/whats_new-meta.ts +7 -7
  899. package/front_end/services/trace_bounds/TraceBounds.ts +1 -1
  900. package/front_end/services/tracing/PerformanceTracing.ts +5 -4
  901. package/front_end/{models/trace → services/tracing}/TracingManager.ts +3 -4
  902. package/front_end/services/tracing/tracing.ts +2 -0
  903. package/front_end/tsconfig.json +1 -0
  904. package/front_end/ui/components/buttons/Button.ts +1 -1
  905. package/front_end/ui/components/buttons/FloatingButton.ts +37 -6
  906. package/front_end/ui/components/buttons/button.css +4 -0
  907. package/front_end/ui/components/cards/Card.ts +2 -2
  908. package/front_end/ui/components/copy_to_clipboard/copyToClipboard.ts +1 -1
  909. package/front_end/ui/components/dialogs/ButtonDialog.ts +15 -0
  910. package/front_end/ui/components/dialogs/Dialog.ts +68 -8
  911. package/front_end/ui/components/diff_view/DiffView.ts +6 -6
  912. package/front_end/ui/components/docs/console_insight/basic.ts +1 -1
  913. package/front_end/ui/components/docs/console_insight/error.ts +1 -1
  914. package/front_end/ui/components/docs/console_insight/loading.ts +1 -1
  915. package/front_end/ui/components/docs/context_menu/basic.html +45 -0
  916. package/front_end/ui/components/docs/context_menu/basic.ts +102 -0
  917. package/front_end/ui/components/docs/icon_component/basic.html +1 -3
  918. package/front_end/ui/components/docs/icon_component/basic.ts +1 -1
  919. package/front_end/ui/components/docs/recorder_recording_list_view/basic.ts +4 -1
  920. package/front_end/ui/components/docs/select_menu/basic.html +1 -27
  921. package/front_end/ui/components/docs/select_menu/basic.ts +86 -194
  922. package/front_end/ui/components/highlighting/HighlightManager.ts +19 -9
  923. package/front_end/ui/components/icon_button/Icon.ts +16 -10
  924. package/front_end/ui/components/icon_button/IconButton.ts +1 -3
  925. package/front_end/ui/components/icon_button/icon.css +73 -0
  926. package/front_end/ui/components/issue_counter/IssueCounter.ts +13 -14
  927. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +3 -3
  928. package/front_end/ui/components/markdown_view/MarkdownImagesMap.ts +4 -4
  929. package/front_end/ui/components/markdown_view/MarkdownLinksMap.ts +9 -6
  930. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +5 -11
  931. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +4 -9
  932. package/front_end/ui/components/settings/SettingCheckbox.ts +3 -3
  933. package/front_end/ui/components/settings/SettingDeprecationWarning.ts +2 -4
  934. package/front_end/ui/components/snackbars/Snackbar.ts +32 -17
  935. package/front_end/ui/components/snackbars/snackbar.css +1 -1
  936. package/front_end/ui/components/spinners/Spinner.ts +50 -2
  937. package/front_end/ui/components/spinners/spinner.css +10 -1
  938. package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +0 -1
  939. package/front_end/ui/components/survey_link/SurveyLink.ts +4 -8
  940. package/front_end/ui/components/text_editor/AiCodeCompletionTeaserPlaceholder.ts +83 -0
  941. package/front_end/ui/components/text_editor/ExecutionPositionHighlighter.ts +0 -1
  942. package/front_end/ui/components/text_editor/TextEditor.ts +2 -0
  943. package/front_end/ui/components/text_editor/config.ts +120 -12
  944. package/front_end/ui/{legacy/components/inline_editor/bezierSwatch.css → components/text_editor/textEditor.css} +2 -6
  945. package/front_end/ui/components/text_editor/text_editor.ts +1 -0
  946. package/front_end/ui/components/tooltips/Tooltip.ts +208 -33
  947. package/front_end/ui/components/tooltips/tooltip.css +13 -77
  948. package/front_end/ui/components/tree_outline/TreeOutline.ts +11 -0
  949. package/front_end/ui/legacy/ARIAUtils.ts +77 -49
  950. package/front_end/ui/legacy/ActionRegistration.ts +24 -24
  951. package/front_end/ui/legacy/ContextMenu.ts +349 -29
  952. package/front_end/ui/legacy/DockController.ts +14 -8
  953. package/front_end/ui/legacy/EmptyWidget.ts +62 -32
  954. package/front_end/ui/legacy/FilterBar.ts +14 -9
  955. package/front_end/ui/legacy/GlassPane.ts +12 -5
  956. package/front_end/ui/legacy/Infobar.ts +2 -2
  957. package/front_end/ui/legacy/InspectorView.ts +99 -26
  958. package/front_end/ui/legacy/ListWidget.ts +9 -9
  959. package/front_end/ui/legacy/Panel.ts +1 -1
  960. package/front_end/ui/legacy/ProgressIndicator.ts +44 -41
  961. package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +4 -4
  962. package/front_end/ui/legacy/ReportView.ts +1 -1
  963. package/front_end/ui/legacy/ResizerWidget.ts +45 -50
  964. package/front_end/ui/legacy/SearchableView.ts +24 -24
  965. package/front_end/ui/legacy/SettingsUI.ts +2 -2
  966. package/front_end/ui/legacy/ShortcutRegistry.ts +2 -1
  967. package/front_end/ui/legacy/SoftContextMenu.ts +23 -9
  968. package/front_end/ui/legacy/SoftDropDown.ts +3 -3
  969. package/front_end/ui/legacy/SplitWidget.ts +342 -358
  970. package/front_end/ui/legacy/SuggestBox.ts +17 -17
  971. package/front_end/ui/legacy/TabbedPane.ts +32 -36
  972. package/front_end/ui/legacy/TargetCrashedScreen.ts +4 -4
  973. package/front_end/ui/legacy/TextPrompt.ts +4 -2
  974. package/front_end/ui/legacy/ThrottledWidget.ts +1 -1
  975. package/front_end/ui/legacy/Toolbar.ts +39 -19
  976. package/front_end/ui/legacy/Treeoutline.ts +439 -8
  977. package/front_end/ui/legacy/UIUtils.ts +303 -38
  978. package/front_end/ui/legacy/View.ts +33 -9
  979. package/front_end/ui/legacy/ViewManager.ts +109 -15
  980. package/front_end/ui/legacy/ViewRegistration.ts +17 -7
  981. package/front_end/ui/legacy/Widget.ts +142 -30
  982. package/front_end/ui/legacy/XLink.ts +1 -1
  983. package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +36 -26
  984. package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +4 -8
  985. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +72 -49
  986. package/front_end/ui/legacy/components/color_picker/spectrum.css +1 -1
  987. package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +14 -19
  988. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +31 -30
  989. package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +21 -17
  990. package/front_end/ui/legacy/components/data_grid/ShowMoreDataGridNode.ts +2 -2
  991. package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +6 -3
  992. package/front_end/ui/legacy/components/data_grid/dataGrid.css +9 -3
  993. package/front_end/ui/legacy/components/inline_editor/AnimationTimingModel.ts +3 -3
  994. package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +15 -14
  995. package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +1 -1
  996. package/front_end/ui/legacy/components/inline_editor/BezierUI.ts +7 -6
  997. package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +11 -5
  998. package/front_end/ui/legacy/components/inline_editor/CSSAngleUtils.ts +7 -6
  999. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +18 -17
  1000. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +35 -20
  1001. package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +32 -31
  1002. package/front_end/ui/legacy/components/inline_editor/FontEditorUnitConverter.ts +1 -1
  1003. package/front_end/ui/legacy/components/inline_editor/Swatches.ts +3 -47
  1004. package/front_end/ui/legacy/components/inline_editor/cssAngle.css +4 -5
  1005. package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +2 -2
  1006. package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +3 -2
  1007. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +41 -39
  1008. package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +2 -0
  1009. package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +2 -2
  1010. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +7 -3
  1011. package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +7 -7
  1012. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +156 -101
  1013. package/front_end/ui/legacy/components/perf_ui/NetworkPriorities.ts +5 -5
  1014. package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +10 -8
  1015. package/front_end/ui/legacy/components/perf_ui/PieChart.ts +1 -1
  1016. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +3 -17
  1017. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +2 -3
  1018. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +54 -6
  1019. package/front_end/ui/legacy/components/perf_ui/perf_ui-meta.ts +6 -6
  1020. package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +29 -3
  1021. package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +16 -6
  1022. package/front_end/ui/legacy/components/quick_open/HelpQuickOpen.ts +2 -5
  1023. package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +2 -0
  1024. package/front_end/ui/legacy/components/quick_open/quick_open-meta.ts +2 -2
  1025. package/front_end/ui/legacy/components/source_frame/FontView.ts +8 -5
  1026. package/front_end/ui/legacy/components/source_frame/ImageView.ts +17 -29
  1027. package/front_end/ui/legacy/components/source_frame/JSONView.ts +3 -3
  1028. package/front_end/ui/legacy/components/source_frame/PreviewFactory.ts +2 -2
  1029. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +2 -2
  1030. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +41 -31
  1031. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +1 -1
  1032. package/front_end/ui/legacy/components/source_frame/XMLView.ts +269 -296
  1033. package/front_end/ui/legacy/components/source_frame/fontView.css +1 -1
  1034. package/front_end/ui/legacy/components/source_frame/source_frame-meta.ts +9 -9
  1035. package/front_end/ui/legacy/components/source_frame/xmlTree.css +10 -8
  1036. package/front_end/ui/legacy/components/source_frame/xmlView.css +3 -1
  1037. package/front_end/ui/legacy/components/utils/ImagePreview.ts +4 -4
  1038. package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +76 -34
  1039. package/front_end/ui/legacy/components/utils/Linkifier.ts +108 -50
  1040. package/front_end/ui/legacy/components/utils/TargetDetachedDialog.ts +2 -1
  1041. package/front_end/ui/legacy/confirmDialog.css +1 -1
  1042. package/front_end/ui/legacy/filter.css +12 -4
  1043. package/front_end/ui/legacy/inspectorCommon.css +28 -22
  1044. package/front_end/ui/legacy/legacy.ts +0 -2
  1045. package/front_end/ui/legacy/remoteDebuggingTerminatedScreen.css +18 -17
  1046. package/front_end/ui/legacy/softContextMenu.css +4 -0
  1047. package/front_end/ui/legacy/tabbedPane.css +5 -1
  1048. package/front_end/ui/legacy/targetCrashedScreen.css +9 -8
  1049. package/front_end/ui/legacy/viewContainers.css +8 -0
  1050. package/front_end/ui/visual_logging/Debugging.ts +122 -26
  1051. package/front_end/ui/visual_logging/KnownContextValues.ts +143 -1
  1052. package/front_end/ui/visual_logging/LoggingConfig.ts +1 -1
  1053. package/front_end/ui/visual_logging/LoggingDriver.ts +3 -2
  1054. package/front_end/ui/visual_logging/LoggingState.ts +6 -4
  1055. package/front_end/ui/visual_logging/README.md +1 -3
  1056. package/front_end/ui/visual_logging/visual_logging.ts +9 -0
  1057. package/front_end/ui/visual_logging/visual_logging_debugging.png +0 -0
  1058. package/inspector_overlay/css_grid_label_helpers.ts +4 -4
  1059. package/inspector_overlay/highlight_flex_common.ts +2 -2
  1060. package/inspector_overlay/loadCSS.rollup.js +2 -2
  1061. package/inspector_overlay/main.ts +0 -4
  1062. package/inspector_overlay/tool_highlight.css +1 -1
  1063. package/inspector_overlay/tool_highlight.ts +7 -7
  1064. package/package.json +31 -35
  1065. package/.vscode/devtools-workspace-launch.json +0 -43
  1066. package/.vscode/devtools-workspace-settings.json +0 -11
  1067. package/.vscode/devtools-workspace-tasks.json +0 -66
  1068. package/.vscode/extensions.json +0 -3
  1069. package/codereview.settings +0 -4
  1070. package/config/gni/devtools_grd_files.gni +0 -2601
  1071. package/config/gni/devtools_image_files.gni +0 -301
  1072. package/config/gni/i18n.gni +0 -114
  1073. package/extensions/cxx_debugging/CMakeLists.txt +0 -168
  1074. package/extensions/cxx_debugging/README.md +0 -81
  1075. package/extensions/cxx_debugging/e2e/MochaRootHooks.ts +0 -108
  1076. package/extensions/cxx_debugging/e2e/OptionsPageTests.ts +0 -36
  1077. package/extensions/cxx_debugging/e2e/StandaloneTestDriver.ts +0 -20
  1078. package/extensions/cxx_debugging/e2e/TestDriver.ts +0 -312
  1079. package/extensions/cxx_debugging/e2e/cxx-debugging-extension-helpers.ts +0 -62
  1080. package/extensions/cxx_debugging/e2e/resources/huge-source-file.cc +0 -29
  1081. package/extensions/cxx_debugging/e2e/resources/pointers.cc +0 -40
  1082. package/extensions/cxx_debugging/e2e/resources/scope-view-non-primitives.c +0 -30
  1083. package/extensions/cxx_debugging/e2e/resources/scope-view-non-primitives.cpp +0 -49
  1084. package/extensions/cxx_debugging/e2e/resources/scope-view-primitives.c +0 -19
  1085. package/extensions/cxx_debugging/e2e/resources/stepping-with-state.c +0 -31
  1086. package/extensions/cxx_debugging/e2e/resources/test_wasm_simd.c +0 -13
  1087. package/extensions/cxx_debugging/e2e/resources/vector.cc +0 -14
  1088. package/extensions/cxx_debugging/e2e/resources/wchar.cc +0 -22
  1089. package/extensions/cxx_debugging/e2e/runner.py +0 -542
  1090. package/extensions/cxx_debugging/e2e/runner.py.vpython +0 -5
  1091. package/extensions/cxx_debugging/e2e/runner.py.vpython3 +0 -5
  1092. package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +0 -59
  1093. package/extensions/cxx_debugging/e2e/tests/cpp_eval.yaml +0 -37
  1094. package/extensions/cxx_debugging/e2e/tests/pointer.yaml +0 -42
  1095. package/extensions/cxx_debugging/e2e/tests/scope_view_non_primitives.yaml +0 -35
  1096. package/extensions/cxx_debugging/e2e/tests/scope_view_non_primitives_cpp.yaml +0 -44
  1097. package/extensions/cxx_debugging/e2e/tests/scope_view_primitives.yaml +0 -31
  1098. package/extensions/cxx_debugging/e2e/tests/stepping_with_state.yaml +0 -64
  1099. package/extensions/cxx_debugging/e2e/tests/string_view.yaml +0 -32
  1100. package/extensions/cxx_debugging/e2e/tests/test_big_dwo.yaml +0 -21
  1101. package/extensions/cxx_debugging/e2e/tests/test_linear_memory_inspector.yaml +0 -11
  1102. package/extensions/cxx_debugging/e2e/tests/test_loop.yaml +0 -34
  1103. package/extensions/cxx_debugging/e2e/tests/test_wasm_simd.yaml +0 -42
  1104. package/extensions/cxx_debugging/e2e/tests/vector.yaml +0 -26
  1105. package/extensions/cxx_debugging/e2e/tests/wchar.yaml +0 -52
  1106. package/extensions/cxx_debugging/e2e/tsconfig.json +0 -24
  1107. package/extensions/cxx_debugging/lib/ApiContext.cc +0 -627
  1108. package/extensions/cxx_debugging/lib/ApiContext.h +0 -119
  1109. package/extensions/cxx_debugging/lib/CMakeLists.txt +0 -53
  1110. package/extensions/cxx_debugging/lib/Expressions.cc +0 -303
  1111. package/extensions/cxx_debugging/lib/Expressions.h +0 -53
  1112. package/extensions/cxx_debugging/lib/Variables.cc +0 -101
  1113. package/extensions/cxx_debugging/lib/Variables.h +0 -65
  1114. package/extensions/cxx_debugging/lib/WasmModule.cc +0 -573
  1115. package/extensions/cxx_debugging/lib/WasmModule.h +0 -126
  1116. package/extensions/cxx_debugging/lib/WasmVendorPlugins.cc +0 -172
  1117. package/extensions/cxx_debugging/lib/WasmVendorPlugins.h +0 -329
  1118. package/extensions/cxx_debugging/lib/api.h +0 -593
  1119. package/extensions/cxx_debugging/lib/api.h.in +0 -86
  1120. package/extensions/cxx_debugging/src/CMakeLists.txt +0 -158
  1121. package/extensions/cxx_debugging/src/CreditsItem.ts +0 -126
  1122. package/extensions/cxx_debugging/src/CustomFormatters.ts +0 -689
  1123. package/extensions/cxx_debugging/src/DWARFSymbols.ts +0 -613
  1124. package/extensions/cxx_debugging/src/DevToolsPlugin.html +0 -7
  1125. package/extensions/cxx_debugging/src/DevToolsPluginForTests.html +0 -6
  1126. package/extensions/cxx_debugging/src/DevToolsPluginHost.ts +0 -145
  1127. package/extensions/cxx_debugging/src/DevToolsPluginWorker.ts +0 -120
  1128. package/extensions/cxx_debugging/src/DevToolsPluginWorkerMain.ts +0 -9
  1129. package/extensions/cxx_debugging/src/ExtensionOptions.html +0 -24
  1130. package/extensions/cxx_debugging/src/ExtensionOptions.ts +0 -705
  1131. package/extensions/cxx_debugging/src/Formatters.ts +0 -282
  1132. package/extensions/cxx_debugging/src/GlobMatch.ts +0 -51
  1133. package/extensions/cxx_debugging/src/MEMFSResourceLoader.ts +0 -102
  1134. package/extensions/cxx_debugging/src/ModuleConfiguration.ts +0 -117
  1135. package/extensions/cxx_debugging/src/ModuleConfigurationList.ts +0 -239
  1136. package/extensions/cxx_debugging/src/SymbolsBackend.cc +0 -262
  1137. package/extensions/cxx_debugging/src/SymbolsBackend.cc.in +0 -139
  1138. package/extensions/cxx_debugging/src/SymbolsBackend.d.ts +0 -179
  1139. package/extensions/cxx_debugging/src/SymbolsBackend.d.ts.in +0 -108
  1140. package/extensions/cxx_debugging/src/TestDriver.js +0 -21
  1141. package/extensions/cxx_debugging/src/WasmTypes.ts +0 -119
  1142. package/extensions/cxx_debugging/src/WorkerRPC.ts +0 -158
  1143. package/extensions/cxx_debugging/src/index.html +0 -69
  1144. package/extensions/cxx_debugging/src/manifest.json.in +0 -22
  1145. package/extensions/cxx_debugging/src/rollup.config.in.js +0 -33
  1146. package/extensions/cxx_debugging/tests/CMakeLists.txt +0 -146
  1147. package/extensions/cxx_debugging/tests/CreditsItem_test.ts +0 -50
  1148. package/extensions/cxx_debugging/tests/CustomFormatters_test.ts +0 -307
  1149. package/extensions/cxx_debugging/tests/DevToolsPluginTestWorker.ts +0 -43
  1150. package/extensions/cxx_debugging/tests/DevToolsPlugin_test.ts +0 -345
  1151. package/extensions/cxx_debugging/tests/Externref_test.ts +0 -63
  1152. package/extensions/cxx_debugging/tests/Formatters_test.ts +0 -284
  1153. package/extensions/cxx_debugging/tests/GlobMatch_test.ts +0 -58
  1154. package/extensions/cxx_debugging/tests/Interpreter_test.ts +0 -219
  1155. package/extensions/cxx_debugging/tests/LLDBEvalExtensions.h +0 -154
  1156. package/extensions/cxx_debugging/tests/LLDBEvalTests.d.ts +0 -24
  1157. package/extensions/cxx_debugging/tests/ModuleConfiguration_test.ts +0 -136
  1158. package/extensions/cxx_debugging/tests/RealBackend.ts +0 -482
  1159. package/extensions/cxx_debugging/tests/SymbolsBackendTests.d.ts +0 -12
  1160. package/extensions/cxx_debugging/tests/SymbolsBackend_test.ts +0 -39
  1161. package/extensions/cxx_debugging/tests/TestUtils.ts +0 -250
  1162. package/extensions/cxx_debugging/tests/WasmModule_test.cc +0 -332
  1163. package/extensions/cxx_debugging/tests/build-artifacts.js.in +0 -10
  1164. package/extensions/cxx_debugging/tests/inputs/CMakeLists.txt +0 -141
  1165. package/extensions/cxx_debugging/tests/inputs/addr_index.s +0 -97
  1166. package/extensions/cxx_debugging/tests/inputs/addresses.cc +0 -25
  1167. package/extensions/cxx_debugging/tests/inputs/classstatic.s +0 -119
  1168. package/extensions/cxx_debugging/tests/inputs/dw_opcodes.def +0 -66
  1169. package/extensions/cxx_debugging/tests/inputs/embedded.s +0 -124
  1170. package/extensions/cxx_debugging/tests/inputs/enums.s +0 -376
  1171. package/extensions/cxx_debugging/tests/inputs/externref.js +0 -22
  1172. package/extensions/cxx_debugging/tests/inputs/externref.s +0 -207
  1173. package/extensions/cxx_debugging/tests/inputs/globals.s +0 -443
  1174. package/extensions/cxx_debugging/tests/inputs/hello-split-missing-dwo.s +0 -92
  1175. package/extensions/cxx_debugging/tests/inputs/hello-split.s +0 -134
  1176. package/extensions/cxx_debugging/tests/inputs/hello.s +0 -70
  1177. package/extensions/cxx_debugging/tests/inputs/helper.s +0 -130
  1178. package/extensions/cxx_debugging/tests/inputs/inline.s +0 -196
  1179. package/extensions/cxx_debugging/tests/inputs/namespaces.s +0 -207
  1180. package/extensions/cxx_debugging/tests/inputs/page.html +0 -6
  1181. package/extensions/cxx_debugging/tests/inputs/page.js +0 -35
  1182. package/extensions/cxx_debugging/tests/inputs/shadowing.s +0 -121
  1183. package/extensions/cxx_debugging/tests/inputs/split-dwarf.s +0 -126
  1184. package/extensions/cxx_debugging/tests/inputs/string_view.cc +0 -40
  1185. package/extensions/cxx_debugging/tests/inputs/windows_paths.s +0 -70
  1186. package/extensions/cxx_debugging/tests/karma.conf.in.js +0 -133
  1187. package/extensions/cxx_debugging/tests/karma_preload.html +0 -12
  1188. package/extensions/cxx_debugging/third_party/.clang-format +0 -1
  1189. package/extensions/cxx_debugging/third_party/lit-html/CHANGELOG.md +0 -247
  1190. package/extensions/cxx_debugging/third_party/lit-html/LICENSE +0 -28
  1191. package/extensions/cxx_debugging/third_party/lit-html/README.chromium +0 -13
  1192. package/extensions/cxx_debugging/third_party/lit-html/README.md +0 -47
  1193. package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.d.ts +0 -33
  1194. package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.d.ts.map +0 -1
  1195. package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.js +0 -108
  1196. package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.js.map +0 -1
  1197. package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.d.ts +0 -34
  1198. package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.d.ts.map +0 -1
  1199. package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.js +0 -91
  1200. package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.js.map +0 -1
  1201. package/extensions/cxx_debugging/third_party/lit-html/directives/cache.d.ts +0 -30
  1202. package/extensions/cxx_debugging/third_party/lit-html/directives/cache.d.ts.map +0 -1
  1203. package/extensions/cxx_debugging/third_party/lit-html/directives/cache.js +0 -77
  1204. package/extensions/cxx_debugging/third_party/lit-html/directives/cache.js.map +0 -1
  1205. package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.d.ts +0 -28
  1206. package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.d.ts.map +0 -1
  1207. package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.js +0 -101
  1208. package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.js.map +0 -1
  1209. package/extensions/cxx_debugging/third_party/lit-html/directives/guard.d.ts +0 -49
  1210. package/extensions/cxx_debugging/third_party/lit-html/directives/guard.d.ts.map +0 -1
  1211. package/extensions/cxx_debugging/third_party/lit-html/directives/guard.js +0 -69
  1212. package/extensions/cxx_debugging/third_party/lit-html/directives/guard.js.map +0 -1
  1213. package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.d.ts +0 -22
  1214. package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.d.ts.map +0 -1
  1215. package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.js +0 -37
  1216. package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.js.map +0 -1
  1217. package/extensions/cxx_debugging/third_party/lit-html/directives/live.d.ts +0 -38
  1218. package/extensions/cxx_debugging/third_party/lit-html/directives/live.d.ts.map +0 -1
  1219. package/extensions/cxx_debugging/third_party/lit-html/directives/live.js +0 -73
  1220. package/extensions/cxx_debugging/third_party/lit-html/directives/live.js.map +0 -1
  1221. package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.d.ts +0 -37
  1222. package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.d.ts.map +0 -1
  1223. package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.js +0 -415
  1224. package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.js.map +0 -1
  1225. package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.d.ts +0 -36
  1226. package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.d.ts.map +0 -1
  1227. package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.js +0 -78
  1228. package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.js.map +0 -1
  1229. package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.d.ts +0 -23
  1230. package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.d.ts.map +0 -1
  1231. package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.js +0 -41
  1232. package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.js.map +0 -1
  1233. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.d.ts +0 -23
  1234. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.d.ts.map +0 -1
  1235. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.js +0 -44
  1236. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.js.map +0 -1
  1237. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.d.ts +0 -23
  1238. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.d.ts.map +0 -1
  1239. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.js +0 -61
  1240. package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.js.map +0 -1
  1241. package/extensions/cxx_debugging/third_party/lit-html/directives/until.d.ts +0 -35
  1242. package/extensions/cxx_debugging/third_party/lit-html/directives/until.d.ts.map +0 -1
  1243. package/extensions/cxx_debugging/third_party/lit-html/directives/until.js +0 -86
  1244. package/extensions/cxx_debugging/third_party/lit-html/directives/until.js.map +0 -1
  1245. package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.d.ts +0 -39
  1246. package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.d.ts.map +0 -1
  1247. package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.js +0 -52
  1248. package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.js.map +0 -1
  1249. package/extensions/cxx_debugging/third_party/lit-html/lib/directive.d.ts +0 -59
  1250. package/extensions/cxx_debugging/third_party/lit-html/lib/directive.d.ts.map +0 -1
  1251. package/extensions/cxx_debugging/third_party/lit-html/lib/directive.js +0 -63
  1252. package/extensions/cxx_debugging/third_party/lit-html/lib/directive.js.map +0 -1
  1253. package/extensions/cxx_debugging/third_party/lit-html/lib/dom.d.ts +0 -29
  1254. package/extensions/cxx_debugging/third_party/lit-html/lib/dom.d.ts.map +0 -1
  1255. package/extensions/cxx_debugging/third_party/lit-html/lib/dom.js +0 -44
  1256. package/extensions/cxx_debugging/third_party/lit-html/lib/dom.js.map +0 -1
  1257. package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.d.ts +0 -38
  1258. package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.d.ts.map +0 -1
  1259. package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.js +0 -125
  1260. package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.js.map +0 -1
  1261. package/extensions/cxx_debugging/third_party/lit-html/lib/part.d.ts +0 -46
  1262. package/extensions/cxx_debugging/third_party/lit-html/lib/part.d.ts.map +0 -1
  1263. package/extensions/cxx_debugging/third_party/lit-html/lib/part.js +0 -23
  1264. package/extensions/cxx_debugging/third_party/lit-html/lib/part.js.map +0 -1
  1265. package/extensions/cxx_debugging/third_party/lit-html/lib/parts.d.ts +0 -148
  1266. package/extensions/cxx_debugging/third_party/lit-html/lib/parts.d.ts.map +0 -1
  1267. package/extensions/cxx_debugging/third_party/lit-html/lib/parts.js +0 -476
  1268. package/extensions/cxx_debugging/third_party/lit-html/lib/parts.js.map +0 -1
  1269. package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.d.ts +0 -19
  1270. package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.d.ts.map +0 -1
  1271. package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.js +0 -14
  1272. package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.js.map +0 -1
  1273. package/extensions/cxx_debugging/third_party/lit-html/lib/render.d.ts +0 -33
  1274. package/extensions/cxx_debugging/third_party/lit-html/lib/render.d.ts.map +0 -1
  1275. package/extensions/cxx_debugging/third_party/lit-html/lib/render.js +0 -43
  1276. package/extensions/cxx_debugging/third_party/lit-html/lib/render.js.map +0 -1
  1277. package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.d.ts +0 -83
  1278. package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.d.ts.map +0 -1
  1279. package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.js +0 -286
  1280. package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.js.map +0 -1
  1281. package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.d.ts +0 -57
  1282. package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.d.ts.map +0 -1
  1283. package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.js +0 -48
  1284. package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.js.map +0 -1
  1285. package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.d.ts +0 -30
  1286. package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.d.ts.map +0 -1
  1287. package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.js +0 -134
  1288. package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.js.map +0 -1
  1289. package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.d.ts +0 -46
  1290. package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.d.ts.map +0 -1
  1291. package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.js +0 -14
  1292. package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.js.map +0 -1
  1293. package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.d.ts +0 -42
  1294. package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.d.ts.map +0 -1
  1295. package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.js +0 -131
  1296. package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.js.map +0 -1
  1297. package/extensions/cxx_debugging/third_party/lit-html/lib/template.d.ts +0 -92
  1298. package/extensions/cxx_debugging/third_party/lit-html/lib/template.d.ts.map +0 -1
  1299. package/extensions/cxx_debugging/third_party/lit-html/lib/template.js +0 -215
  1300. package/extensions/cxx_debugging/third_party/lit-html/lib/template.js.map +0 -1
  1301. package/extensions/cxx_debugging/third_party/lit-html/lit-html.d.ts +0 -42
  1302. package/extensions/cxx_debugging/third_party/lit-html/lit-html.d.ts.map +0 -1
  1303. package/extensions/cxx_debugging/third_party/lit-html/lit-html.js +0 -59
  1304. package/extensions/cxx_debugging/third_party/lit-html/lit-html.js.map +0 -1
  1305. package/extensions/cxx_debugging/third_party/lit-html/package.json +0 -84
  1306. package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.d.ts +0 -24
  1307. package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.d.ts.map +0 -1
  1308. package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.js +0 -60
  1309. package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.js.map +0 -1
  1310. package/extensions/cxx_debugging/third_party/lit-html/src/directives/async-append.ts +0 -100
  1311. package/extensions/cxx_debugging/third_party/lit-html/src/directives/async-replace.ts +0 -82
  1312. package/extensions/cxx_debugging/third_party/lit-html/src/directives/cache.ts +0 -90
  1313. package/extensions/cxx_debugging/third_party/lit-html/src/directives/class-map.ts +0 -118
  1314. package/extensions/cxx_debugging/third_party/lit-html/src/directives/guard.ts +0 -74
  1315. package/extensions/cxx_debugging/third_party/lit-html/src/directives/if-defined.ts +0 -40
  1316. package/extensions/cxx_debugging/third_party/lit-html/src/directives/live.ts +0 -76
  1317. package/extensions/cxx_debugging/third_party/lit-html/src/directives/repeat.ts +0 -442
  1318. package/extensions/cxx_debugging/third_party/lit-html/src/directives/style-map.ts +0 -88
  1319. package/extensions/cxx_debugging/third_party/lit-html/src/directives/template-content.ts +0 -52
  1320. package/extensions/cxx_debugging/third_party/lit-html/src/directives/unsafe-html.ts +0 -54
  1321. package/extensions/cxx_debugging/third_party/lit-html/src/directives/unsafe-svg.ts +0 -71
  1322. package/extensions/cxx_debugging/third_party/lit-html/src/directives/until.ts +0 -104
  1323. package/extensions/cxx_debugging/third_party/lit-html/src/env.d.ts +0 -20
  1324. package/extensions/cxx_debugging/third_party/lit-html/src/lib/default-template-processor.ts +0 -59
  1325. package/extensions/cxx_debugging/third_party/lit-html/src/lib/directive.ts +0 -73
  1326. package/extensions/cxx_debugging/third_party/lit-html/src/lib/dom.ts +0 -55
  1327. package/extensions/cxx_debugging/third_party/lit-html/src/lib/modify-template.ts +0 -135
  1328. package/extensions/cxx_debugging/third_party/lit-html/src/lib/part.ts +0 -50
  1329. package/extensions/cxx_debugging/third_party/lit-html/src/lib/parts.ts +0 -545
  1330. package/extensions/cxx_debugging/third_party/lit-html/src/lib/render-options.ts +0 -20
  1331. package/extensions/cxx_debugging/third_party/lit-html/src/lib/render.ts +0 -52
  1332. package/extensions/cxx_debugging/third_party/lit-html/src/lib/shady-render.ts +0 -316
  1333. package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-factory.ts +0 -92
  1334. package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-instance.ts +0 -155
  1335. package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-processor.ts +0 -51
  1336. package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-result.ts +0 -148
  1337. package/extensions/cxx_debugging/third_party/lit-html/src/lib/template.ts +0 -255
  1338. package/extensions/cxx_debugging/third_party/lit-html/src/lit-html.ts +0 -74
  1339. package/extensions/cxx_debugging/third_party/lit-html/src/polyfills/template_polyfill.ts +0 -70
  1340. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/async-append.d.ts +0 -33
  1341. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/async-replace.d.ts +0 -34
  1342. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/cache.d.ts +0 -30
  1343. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/class-map.d.ts +0 -28
  1344. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/guard.d.ts +0 -49
  1345. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/if-defined.d.ts +0 -22
  1346. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/live.d.ts +0 -38
  1347. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/repeat.d.ts +0 -37
  1348. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/style-map.d.ts +0 -36
  1349. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/template-content.d.ts +0 -23
  1350. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/unsafe-html.d.ts +0 -23
  1351. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/unsafe-svg.d.ts +0 -23
  1352. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/until.d.ts +0 -35
  1353. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/default-template-processor.d.ts +0 -39
  1354. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/directive.d.ts +0 -59
  1355. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/dom.d.ts +0 -29
  1356. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/modify-template.d.ts +0 -38
  1357. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/part.d.ts +0 -46
  1358. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/parts.d.ts +0 -148
  1359. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/render-options.d.ts +0 -19
  1360. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/render.d.ts +0 -33
  1361. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/shady-render.d.ts +0 -83
  1362. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-factory.d.ts +0 -57
  1363. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-instance.d.ts +0 -30
  1364. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-processor.d.ts +0 -46
  1365. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-result.d.ts +0 -42
  1366. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template.d.ts +0 -92
  1367. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lit-html.d.ts +0 -42
  1368. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/polyfills/template_polyfill.d.ts +0 -24
  1369. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/src/env.d.ts +0 -19
  1370. package/extensions/cxx_debugging/third_party/lit-html/ts3.4/tsconfig.json +0 -24
  1371. package/extensions/cxx_debugging/third_party/lldb-eval/README.chromium +0 -15
  1372. package/extensions/cxx_debugging/third_party/llvm/README.chromium +0 -15
  1373. package/extensions/cxx_debugging/tools/api.pdl +0 -224
  1374. package/extensions/cxx_debugging/tools/bootstrap.py +0 -345
  1375. package/extensions/cxx_debugging/tools/generate-api.py +0 -74
  1376. package/extensions/cxx_debugging/tools/pdl_cxx.py +0 -171
  1377. package/extensions/cxx_debugging/tools/whitespaces.txt +0 -1
  1378. package/extensions/cxx_debugging/tsconfig.json +0 -16
  1379. package/front_end/core/common/Base64.test.ts +0 -41
  1380. package/front_end/core/common/CharacterIdMap.test.ts +0 -46
  1381. package/front_end/core/common/Color.test.ts +0 -904
  1382. package/front_end/core/common/ColorConverter.test.ts +0 -525
  1383. package/front_end/core/common/ColorUtils.test.ts +0 -112
  1384. package/front_end/core/common/Console.test.ts +0 -86
  1385. package/front_end/core/common/Debouncer.test.ts +0 -26
  1386. package/front_end/core/common/EventTarget.test.ts +0 -165
  1387. package/front_end/core/common/Lazy.test.ts +0 -28
  1388. package/front_end/core/common/MapWithDefault.test.ts +0 -61
  1389. package/front_end/core/common/Mutex.test.ts +0 -98
  1390. package/front_end/core/common/Object.test.ts +0 -87
  1391. package/front_end/core/common/ParsedURL.test.ts +0 -751
  1392. package/front_end/core/common/Progress.test.ts +0 -269
  1393. package/front_end/core/common/ResolverBase.test.ts +0 -115
  1394. package/front_end/core/common/ResourceType.test.ts +0 -557
  1395. package/front_end/core/common/Revealer.test.ts +0 -122
  1396. package/front_end/core/common/SegmentedRange.test.ts +0 -210
  1397. package/front_end/core/common/SettingRegistration.test.ts +0 -138
  1398. package/front_end/core/common/Settings.test.ts +0 -725
  1399. package/front_end/core/common/SimpleHistoryManager.test.ts +0 -66
  1400. package/front_end/core/common/StringOutputStream.test.ts +0 -29
  1401. package/front_end/core/common/TextDictionary.test.ts +0 -85
  1402. package/front_end/core/common/Throttler.test.ts +0 -227
  1403. package/front_end/core/common/Trie.test.ts +0 -110
  1404. package/front_end/core/dom_extension/DOMExtension.test.ts +0 -343
  1405. package/front_end/core/host/AidaClient.test.ts +0 -630
  1406. package/front_end/core/i18n/ByteUtilities.test.ts +0 -59
  1407. package/front_end/core/i18n/DevToolsLocale.test.ts +0 -104
  1408. package/front_end/core/i18n/i18n.test.ts +0 -207
  1409. package/front_end/core/i18n/time-utilities.test.ts +0 -164
  1410. package/front_end/core/platform/ArrayUtilities.test.ts +0 -499
  1411. package/front_end/core/platform/DOMUtilities.test.ts +0 -95
  1412. package/front_end/core/platform/DateUtilities.test.ts +0 -31
  1413. package/front_end/core/platform/DevToolsPath.test.ts +0 -84
  1414. package/front_end/core/platform/KeyboardUtilities.test.ts +0 -57
  1415. package/front_end/core/platform/MapUtilities.test.ts +0 -50
  1416. package/front_end/core/platform/MimeType.test.ts +0 -192
  1417. package/front_end/core/platform/NumberUtilities.test.ts +0 -127
  1418. package/front_end/core/platform/StringUtilities.test.ts +0 -676
  1419. package/front_end/core/platform/TypedArrayUtilities.test.ts +0 -61
  1420. package/front_end/core/protocol_client/NodeURL.test.ts +0 -74
  1421. package/front_end/core/root/Runtime.test.ts +0 -68
  1422. package/front_end/core/sdk/AccessibilityModel.test.ts +0 -17
  1423. package/front_end/core/sdk/AnimationModel.test.ts +0 -281
  1424. package/front_end/core/sdk/AutofillModel.test.ts +0 -82
  1425. package/front_end/core/sdk/CPUThrottlingManager.test.ts +0 -49
  1426. package/front_end/core/sdk/CSSContainerQuery.test.ts +0 -52
  1427. package/front_end/core/sdk/CSSMatchedStyles.test.ts +0 -771
  1428. package/front_end/core/sdk/CSSModel.test.ts +0 -120
  1429. package/front_end/core/sdk/CSSProperty.test.ts +0 -130
  1430. package/front_end/core/sdk/CSSPropertyParser.test.ts +0 -524
  1431. package/front_end/core/sdk/CSSPropertyParserMatchers.test.ts +0 -735
  1432. package/front_end/core/sdk/CSSStyleDeclaration.test.ts +0 -261
  1433. package/front_end/core/sdk/CSSStyleSheetHeader.test.ts +0 -137
  1434. package/front_end/core/sdk/ChildTargetManager.test.ts +0 -259
  1435. package/front_end/core/sdk/ConsoleModel.test.ts +0 -202
  1436. package/front_end/core/sdk/Cookie.test.ts +0 -294
  1437. package/front_end/core/sdk/CookieModel.test.ts +0 -258
  1438. package/front_end/core/sdk/CookieParser.test.ts +0 -211
  1439. package/front_end/core/sdk/DOMModel.test.ts +0 -171
  1440. package/front_end/core/sdk/DebuggerModel.test.ts +0 -458
  1441. package/front_end/core/sdk/EmulationModel.test.ts +0 -45
  1442. package/front_end/core/sdk/EnhancedTracesParser.test.ts +0 -318
  1443. package/front_end/core/sdk/FrameManager.test.ts +0 -305
  1444. package/front_end/core/sdk/NetworkManager.test.ts +0 -2223
  1445. package/front_end/core/sdk/NetworkRequest.test.ts +0 -550
  1446. package/front_end/core/sdk/OverlayColorGenerator.test.ts +0 -21
  1447. package/front_end/core/sdk/OverlayModel.test.ts +0 -179
  1448. package/front_end/core/sdk/OverlayPersistentHighlighter.test.ts +0 -232
  1449. package/front_end/core/sdk/PageResourceLoader.test.ts +0 -369
  1450. package/front_end/core/sdk/PreloadingModel.test.ts +0 -877
  1451. package/front_end/core/sdk/RehydratingConnection.test.ts +0 -190
  1452. package/front_end/core/sdk/RemoteObject.test.ts +0 -471
  1453. package/front_end/core/sdk/ResourceTreeModel.test.ts +0 -222
  1454. package/front_end/core/sdk/RuntimeModel.test.ts +0 -84
  1455. package/front_end/core/sdk/ScreenCaptureModel.test.ts +0 -216
  1456. package/front_end/core/sdk/Script.test.ts +0 -155
  1457. package/front_end/core/sdk/ServerSentEventsProtocol.test.ts +0 -220
  1458. package/front_end/core/sdk/ServerTiming.test.ts +0 -377
  1459. package/front_end/core/sdk/ServiceWorkerCacheModel.test.ts +0 -200
  1460. package/front_end/core/sdk/ServiceWorkerManager.test.ts +0 -287
  1461. package/front_end/core/sdk/SourceMap.test.ts +0 -1368
  1462. package/front_end/core/sdk/SourceMapFunctionRanges.test.ts +0 -171
  1463. package/front_end/core/sdk/SourceMapManager.test.ts +0 -334
  1464. package/front_end/core/sdk/SourceMapScopeChainEntry.test.ts +0 -128
  1465. package/front_end/core/sdk/SourceMapScopes.test.ts +0 -507
  1466. package/front_end/core/sdk/SourceMapScopes.ts +0 -472
  1467. package/front_end/core/sdk/SourceMapScopesInfo.test.ts +0 -832
  1468. package/front_end/core/sdk/StorageBucketsModel.test.ts +0 -383
  1469. package/front_end/core/sdk/StorageKeyManager.test.ts +0 -95
  1470. package/front_end/core/sdk/Target.test.ts +0 -97
  1471. package/front_end/core/sdk/TargetManager.test.ts +0 -279
  1472. package/front_end/core/sdk/TraceObject.test.ts +0 -30
  1473. package/front_end/entrypoints/formatter_worker/CSSFormatter.test.ts +0 -216
  1474. package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.test.ts +0 -177
  1475. package/front_end/entrypoints/formatter_worker/FormatterWorker.test.ts +0 -19
  1476. package/front_end/entrypoints/formatter_worker/HTMLFormatter.test.ts +0 -344
  1477. package/front_end/entrypoints/formatter_worker/JSONFormatter.test.ts +0 -147
  1478. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.test.ts +0 -789
  1479. package/front_end/entrypoints/formatter_worker/ScopeParser.test.ts +0 -121
  1480. package/front_end/entrypoints/formatter_worker/Substitute.test.ts +0 -179
  1481. package/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker.test.ts +0 -11
  1482. package/front_end/entrypoints/inspector_main/InspectorMain.test.ts +0 -344
  1483. package/front_end/entrypoints/inspector_main/OutermostTargetSelector.test.ts +0 -80
  1484. package/front_end/entrypoints/main/ExecutionContextSelector.test.ts +0 -64
  1485. package/front_end/entrypoints/main/MainImpl.test.ts +0 -60
  1486. package/front_end/entrypoints/wasmparser_worker/wasmparser_worker.test.ts +0 -11
  1487. package/front_end/integration_test_runner.html +0 -40
  1488. package/front_end/legacy_test_runner/accessibility_test_runner/accessibility_test_runner.js +0 -83
  1489. package/front_end/legacy_test_runner/application_test_runner/CacheStorageTestRunner.js +0 -297
  1490. package/front_end/legacy_test_runner/application_test_runner/IndexedDBTestRunner.js +0 -478
  1491. package/front_end/legacy_test_runner/application_test_runner/ResourceTreeTestRunner.js +0 -106
  1492. package/front_end/legacy_test_runner/application_test_runner/ResourcesTestRunner.js +0 -173
  1493. package/front_end/legacy_test_runner/application_test_runner/ServiceWorkersTestRunner.js +0 -133
  1494. package/front_end/legacy_test_runner/application_test_runner/StorageTestRunner.js +0 -13
  1495. package/front_end/legacy_test_runner/application_test_runner/application_test_runner.js +0 -19
  1496. package/front_end/legacy_test_runner/axe_core_test_runner/axe_core_test_runner.js +0 -176
  1497. package/front_end/legacy_test_runner/bindings_test_runner/AutomappingTestRunner.js +0 -137
  1498. package/front_end/legacy_test_runner/bindings_test_runner/BindingsTestRunner.js +0 -251
  1499. package/front_end/legacy_test_runner/bindings_test_runner/IsolatedFilesystemTestRunner.js +0 -289
  1500. package/front_end/legacy_test_runner/bindings_test_runner/OverridesTestRunner.js +0 -30
  1501. package/front_end/legacy_test_runner/bindings_test_runner/PersistenceTestRunner.js +0 -111
  1502. package/front_end/legacy_test_runner/bindings_test_runner/bindings_test_runner.js +0 -17
  1503. package/front_end/legacy_test_runner/console_test_runner/console_test_runner.js +0 -732
  1504. package/front_end/legacy_test_runner/coverage_test_runner/coverage_test_runner.js +0 -156
  1505. package/front_end/legacy_test_runner/data_grid_test_runner/data_grid_test_runner.js +0 -85
  1506. package/front_end/legacy_test_runner/device_mode_test_runner/device_mode_test_runner.js +0 -47
  1507. package/front_end/legacy_test_runner/elements_test_runner/EditDOMTestRunner.js +0 -79
  1508. package/front_end/legacy_test_runner/elements_test_runner/ElementsPanelShadowSelectionOnRefreshTestRunner.js +0 -39
  1509. package/front_end/legacy_test_runner/elements_test_runner/ElementsTestRunner.js +0 -1330
  1510. package/front_end/legacy_test_runner/elements_test_runner/SetOuterHTMLTestRunner.js +0 -116
  1511. package/front_end/legacy_test_runner/elements_test_runner/StylesUpdateLinksTestRunner.js +0 -136
  1512. package/front_end/legacy_test_runner/elements_test_runner/elements_test_runner.js +0 -14
  1513. package/front_end/legacy_test_runner/extensions_test_runner/ExtensionsNetworkTestRunner.js +0 -27
  1514. package/front_end/legacy_test_runner/extensions_test_runner/ExtensionsTestRunner.js +0 -71
  1515. package/front_end/legacy_test_runner/extensions_test_runner/extensions_test_runner.js +0 -11
  1516. package/front_end/legacy_test_runner/heap_profiler_test_runner/heap_profiler_test_runner.js +0 -785
  1517. package/front_end/legacy_test_runner/layers_test_runner/layers_test_runner.js +0 -161
  1518. package/front_end/legacy_test_runner/legacy_test_runner.ts +0 -14
  1519. package/front_end/legacy_test_runner/network_test_runner/network_test_runner.js +0 -295
  1520. package/front_end/legacy_test_runner/performance_test_runner/TimelineDataTestRunner.js +0 -5263
  1521. package/front_end/legacy_test_runner/performance_test_runner/TimelineTestRunner.js +0 -366
  1522. package/front_end/legacy_test_runner/performance_test_runner/performance_test_runner.js +0 -11
  1523. package/front_end/legacy_test_runner/sdk_test_runner/sdk_test_runner.js +0 -314
  1524. package/front_end/legacy_test_runner/security_test_runner/security_test_runner.js +0 -36
  1525. package/front_end/legacy_test_runner/sources_test_runner/AutocompleteTestRunner.js +0 -50
  1526. package/front_end/legacy_test_runner/sources_test_runner/DebuggerTestRunner.js +0 -655
  1527. package/front_end/legacy_test_runner/sources_test_runner/EditorTestRunner.js +0 -240
  1528. package/front_end/legacy_test_runner/sources_test_runner/LiveEditTestRunner.js +0 -34
  1529. package/front_end/legacy_test_runner/sources_test_runner/SearchTestRunner.js +0 -161
  1530. package/front_end/legacy_test_runner/sources_test_runner/SourcesTestRunner.js +0 -111
  1531. package/front_end/legacy_test_runner/sources_test_runner/sources_test_runner.js +0 -19
  1532. package/front_end/legacy_test_runner/test_runner/TestRunner.js +0 -1480
  1533. package/front_end/legacy_test_runner/test_runner/test_runner.js +0 -115
  1534. package/front_end/models/ai_assistance/AgentProject.test.ts +0 -370
  1535. package/front_end/models/ai_assistance/AiHistoryStorage.test.ts +0 -540
  1536. package/front_end/models/ai_assistance/ChangeManager.test.ts +0 -330
  1537. package/front_end/models/ai_assistance/EvaluateAction.test.ts +0 -173
  1538. package/front_end/models/ai_assistance/ExtensionScope.test.ts +0 -447
  1539. package/front_end/models/ai_assistance/agents/AiAgent.test.ts +0 -470
  1540. package/front_end/models/ai_assistance/agents/FileAgent.test.ts +0 -216
  1541. package/front_end/models/ai_assistance/agents/NetworkAgent.test.ts +0 -237
  1542. package/front_end/models/ai_assistance/agents/PatchAgent.test.ts +0 -130
  1543. package/front_end/models/ai_assistance/agents/PerformanceAgent.test.ts +0 -230
  1544. package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.test.ts +0 -30
  1545. package/front_end/models/ai_assistance/agents/PerformanceInsightsAgent.test.ts +0 -448
  1546. package/front_end/models/ai_assistance/agents/PerformanceInsightsAgent.ts +0 -498
  1547. package/front_end/models/ai_assistance/agents/StylingAgent.test.ts +0 -1406
  1548. package/front_end/models/ai_assistance/data_formatters/FileFormatter.test.ts +0 -115
  1549. package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.test.ts +0 -87
  1550. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.test.ts +0 -392
  1551. package/front_end/models/autofill_manager/AutofillManager.test.ts +0 -272
  1552. package/front_end/models/bindings/CompilerScriptMapping.test.ts +0 -546
  1553. package/front_end/models/bindings/ContentProviderBasedProject.test.ts +0 -118
  1554. package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +0 -139
  1555. package/front_end/models/bindings/DebuggerWorkspaceBinding.test.ts +0 -87
  1556. package/front_end/models/bindings/DefaultScriptMapping.test.ts +0 -192
  1557. package/front_end/models/bindings/FileUtils.test.ts +0 -78
  1558. package/front_end/models/bindings/IgnoreListManager.test.ts +0 -612
  1559. package/front_end/models/bindings/LiveLocation.test.ts +0 -47
  1560. package/front_end/models/bindings/PresentationConsoleMessageHelper.test.ts +0 -271
  1561. package/front_end/models/bindings/ResourceMapping.test.ts +0 -248
  1562. package/front_end/models/bindings/ResourceScriptMapping.test.ts +0 -117
  1563. package/front_end/models/bindings/ResourceUtils.test.ts +0 -105
  1564. package/front_end/models/breakpoints/BreakpointManager.test.ts +0 -1912
  1565. package/front_end/models/cpu_profile/CPUProfileDataModel.test.ts +0 -376
  1566. package/front_end/models/crux-manager/CrUXManager.test.ts +0 -613
  1567. package/front_end/models/emulation/DeviceModeModel.test.ts +0 -104
  1568. package/front_end/models/emulation/EmulatedDevices.test.ts +0 -61
  1569. package/front_end/models/extensions/ExtensionServer.test.ts +0 -1064
  1570. package/front_end/models/extensions/HostUrlPattern.test.ts +0 -312
  1571. package/front_end/models/extensions/LanguageExtensionEndpoint.test.ts +0 -65
  1572. package/front_end/models/extensions/RecorderPluginManager.test.ts +0 -34
  1573. package/front_end/models/formatter/ScriptFormatter.test.ts +0 -93
  1574. package/front_end/models/har/Importer.test.ts +0 -313
  1575. package/front_end/models/har/Log.test.ts +0 -208
  1576. package/front_end/models/har/Writer.test.ts +0 -48
  1577. package/front_end/models/heap_snapshot_model/heap_snapshot_model.test.ts +0 -11
  1578. package/front_end/models/issues_manager/CheckFormsIssuesTrigger.test.ts +0 -22
  1579. package/front_end/models/issues_manager/DeprecationIssue.test.ts +0 -81
  1580. package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.test.ts +0 -52
  1581. package/front_end/models/issues_manager/GenericIssue.test.ts +0 -82
  1582. package/front_end/models/issues_manager/Issue.test.ts +0 -56
  1583. package/front_end/models/issues_manager/IssueResolver.test.ts +0 -91
  1584. package/front_end/models/issues_manager/IssuesManager.test.ts +0 -360
  1585. package/front_end/models/issues_manager/LowTextContrastIssue.test.ts +0 -58
  1586. package/front_end/models/issues_manager/MarkdownIssueDescription.test.ts +0 -92
  1587. package/front_end/models/issues_manager/PropertyRuleIssue.test.ts +0 -109
  1588. package/front_end/models/issues_manager/RelatedIssue.test.ts +0 -64
  1589. package/front_end/models/issues_manager/SRIMessageSignatureIssue.test.ts +0 -68
  1590. package/front_end/models/issues_manager/SelectElementAccessibilityIssue.test.ts +0 -86
  1591. package/front_end/models/issues_manager/SharedDictionaryIssue.test.ts +0 -68
  1592. package/front_end/models/issues_manager/StylesheetLoadingIssue.test.ts +0 -138
  1593. package/front_end/models/javascript_metadata/JavaScriptMetadata.test.ts +0 -62
  1594. package/front_end/models/logs/NetworkLog.test.ts +0 -376
  1595. package/front_end/models/logs/RequestResolver.test.ts +0 -92
  1596. package/front_end/models/persistence/AutomaticFileSystemManager.test.ts +0 -247
  1597. package/front_end/models/persistence/AutomaticFileSystemWorkspaceBinding.test.ts +0 -227
  1598. package/front_end/models/persistence/EditFileSystemView.test.ts +0 -181
  1599. package/front_end/models/persistence/NetworkPersistenceManager.test.ts +0 -989
  1600. package/front_end/models/persistence/PersistenceAction.test.ts +0 -90
  1601. package/front_end/models/persistence/PersistenceImpl.test.ts +0 -228
  1602. package/front_end/models/persistence/PlatformFileSystem.test.ts +0 -19
  1603. package/front_end/models/persistence/WorkspaceSettingsTab.test.ts +0 -146
  1604. package/front_end/models/project_settings/ProjectSettingsModel.test.ts +0 -260
  1605. package/front_end/models/source_map_scopes/NamesResolver.test.ts +0 -623
  1606. package/front_end/models/source_map_scopes/ScopeChainModel.test.ts +0 -86
  1607. package/front_end/models/source_map_scopes/ScopeTreeCache.test.ts +0 -63
  1608. package/front_end/models/text_utils/ContentData.test.ts +0 -162
  1609. package/front_end/models/text_utils/StaticContentProvider.test.ts +0 -34
  1610. package/front_end/models/text_utils/StreamingContentData.test.ts +0 -81
  1611. package/front_end/models/text_utils/Text.test.ts +0 -103
  1612. package/front_end/models/text_utils/TextCursor.test.ts +0 -48
  1613. package/front_end/models/text_utils/TextRange.test.ts +0 -461
  1614. package/front_end/models/text_utils/TextUtils.test.ts +0 -730
  1615. package/front_end/models/text_utils/WasmDisassembly.test.ts +0 -56
  1616. package/front_end/models/trace/ModelImpl.test.ts +0 -161
  1617. package/front_end/models/trace/Processor.test.ts +0 -428
  1618. package/front_end/models/trace/TracingManager.test.ts +0 -100
  1619. package/front_end/models/trace/extras/FetchNodes.test.ts +0 -261
  1620. package/front_end/models/trace/extras/FetchNodes.ts +0 -254
  1621. package/front_end/models/trace/extras/FilmStrip.test.ts +0 -90
  1622. package/front_end/models/trace/extras/MainThreadActivity.test.ts +0 -82
  1623. package/front_end/models/trace/extras/Metadata.test.ts +0 -115
  1624. package/front_end/models/trace/extras/Metadata.ts +0 -79
  1625. package/front_end/models/trace/extras/ScriptDuplication.test.ts +0 -404
  1626. package/front_end/models/trace/extras/StackTraceForEvent.test.ts +0 -328
  1627. package/front_end/models/trace/extras/ThirdParties.test.ts +0 -114
  1628. package/front_end/models/trace/extras/TraceFilter.test.ts +0 -103
  1629. package/front_end/models/trace/extras/TraceTree.test.ts +0 -489
  1630. package/front_end/models/trace/handlers/AnimationFramesHandler.test.ts +0 -40
  1631. package/front_end/models/trace/handlers/AnimationHandler.test.ts +0 -54
  1632. package/front_end/models/trace/handlers/AsyncJSCallsHandler.test.ts +0 -300
  1633. package/front_end/models/trace/handlers/AuctionWorkletsHandler.test.ts +0 -167
  1634. package/front_end/models/trace/handlers/DOMStatsHandler.test.ts +0 -30
  1635. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.test.ts +0 -895
  1636. package/front_end/models/trace/handlers/FlowsHandler.test.ts +0 -185
  1637. package/front_end/models/trace/handlers/FramesHandler.test.ts +0 -248
  1638. package/front_end/models/trace/handlers/GPUHandler.test.ts +0 -26
  1639. package/front_end/models/trace/handlers/ImagePaintingHandler.test.ts +0 -46
  1640. package/front_end/models/trace/handlers/InitiatorsHandler.test.ts +0 -262
  1641. package/front_end/models/trace/handlers/InvalidationsHandler.test.ts +0 -185
  1642. package/front_end/models/trace/handlers/LargestImagePaintHandler.test.ts +0 -62
  1643. package/front_end/models/trace/handlers/LargestTextPaintHandler.test.ts +0 -27
  1644. package/front_end/models/trace/handlers/LayerTreeHandler.test.ts +0 -46
  1645. package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +0 -264
  1646. package/front_end/models/trace/handlers/MemoryHandler.test.ts +0 -29
  1647. package/front_end/models/trace/handlers/MetaHandler.test.ts +0 -638
  1648. package/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts +0 -514
  1649. package/front_end/models/trace/handlers/PageFramesHandler.test.ts +0 -40
  1650. package/front_end/models/trace/handlers/PageLoadMetricsHandler.test.ts +0 -286
  1651. package/front_end/models/trace/handlers/RendererHandler.test.ts +0 -1020
  1652. package/front_end/models/trace/handlers/SamplesHandler.test.ts +0 -356
  1653. package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +0 -114
  1654. package/front_end/models/trace/handlers/ScriptsHandler.test.ts +0 -103
  1655. package/front_end/models/trace/handlers/SelectorStatsHandler.test.ts +0 -41
  1656. package/front_end/models/trace/handlers/Threads.test.ts +0 -59
  1657. package/front_end/models/trace/handlers/UserInteractionsHandler.test.ts +0 -437
  1658. package/front_end/models/trace/handlers/UserTimingsHandler.test.ts +0 -199
  1659. package/front_end/models/trace/handlers/WarningsHandler.test.ts +0 -86
  1660. package/front_end/models/trace/handlers/WorkersHandler.test.ts +0 -80
  1661. package/front_end/models/trace/handlers/helpers.test.ts +0 -101
  1662. package/front_end/models/trace/helpers/SamplesIntegrator.test.ts +0 -372
  1663. package/front_end/models/trace/helpers/SyntheticEvents.test.ts +0 -62
  1664. package/front_end/models/trace/helpers/Timing.test.ts +0 -371
  1665. package/front_end/models/trace/helpers/Trace.test.ts +0 -761
  1666. package/front_end/models/trace/helpers/TreeHelpers.test.ts +0 -457
  1667. package/front_end/models/trace/insights/CLSCulprits.test.ts +0 -251
  1668. package/front_end/models/trace/insights/Cache.test.ts +0 -221
  1669. package/front_end/models/trace/insights/Common.test.ts +0 -125
  1670. package/front_end/models/trace/insights/DOMSize.test.ts +0 -63
  1671. package/front_end/models/trace/insights/DocumentLatency.test.ts +0 -106
  1672. package/front_end/models/trace/insights/DuplicatedJavaScript.test.ts +0 -129
  1673. package/front_end/models/trace/insights/FontDisplay.test.ts +0 -64
  1674. package/front_end/models/trace/insights/ForcedReflow.test.ts +0 -34
  1675. package/front_end/models/trace/insights/ImageDelivery.test.ts +0 -128
  1676. package/front_end/models/trace/insights/InteractionToNextPaint.test.ts +0 -32
  1677. package/front_end/models/trace/insights/LCPDiscovery.test.ts +0 -67
  1678. package/front_end/models/trace/insights/LCPPhases.test.ts +0 -71
  1679. package/front_end/models/trace/insights/LCPPhases.ts +0 -222
  1680. package/front_end/models/trace/insights/LegacyJavaScript.test.ts +0 -81
  1681. package/front_end/models/trace/insights/ModernHTTP.test.ts +0 -347
  1682. package/front_end/models/trace/insights/NetworkDependencyTree.test.ts +0 -554
  1683. package/front_end/models/trace/insights/RenderBlocking.test.ts +0 -137
  1684. package/front_end/models/trace/insights/SlowCSSSelector.test.ts +0 -70
  1685. package/front_end/models/trace/insights/Statistics.test.ts +0 -145
  1686. package/front_end/models/trace/insights/ThirdParties.test.ts +0 -56
  1687. package/front_end/models/trace/insights/Viewport.test.ts +0 -37
  1688. package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +0 -526
  1689. package/front_end/models/trace/lantern/graph/BaseNode.test.ts +0 -391
  1690. package/front_end/models/trace/lantern/graph/PageDependencyGraph.test.ts +0 -670
  1691. package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.test.ts +0 -65
  1692. package/front_end/models/trace/lantern/metrics/Interactive.test.ts +0 -70
  1693. package/front_end/models/trace/lantern/metrics/LargestContentfulPaint.test.ts +0 -42
  1694. package/front_end/models/trace/lantern/metrics/SpeedIndex.test.ts +0 -87
  1695. package/front_end/models/trace/lantern/metrics/TBTUtils.test.ts +0 -138
  1696. package/front_end/models/trace/lantern/simulation/ConnectionPool.test.ts +0 -199
  1697. package/front_end/models/trace/lantern/simulation/DNSCache.test.ts +0 -76
  1698. package/front_end/models/trace/lantern/simulation/Simulator.test.ts +0 -454
  1699. package/front_end/models/trace/lantern/simulation/TCPConnection.test.ts +0 -368
  1700. package/front_end/models/trace/types/File.test.ts +0 -42
  1701. package/front_end/models/trace/types/TraceEvents.test.ts +0 -91
  1702. package/front_end/models/workspace/SearchConfig.test.ts +0 -114
  1703. package/front_end/models/workspace/UISourceCode.test.ts +0 -414
  1704. package/front_end/models/workspace/WorkspaceImpl.test.ts +0 -187
  1705. package/front_end/models/workspace_diff/WorkspaceDiff.test.ts +0 -82
  1706. package/front_end/panels/accessibility/AccessibilitySidebarView.test.ts +0 -67
  1707. package/front_end/panels/ai_assistance/AiAssistancePanel.test.ts +0 -1803
  1708. package/front_end/panels/ai_assistance/PatchWidget.test.ts +0 -445
  1709. package/front_end/panels/ai_assistance/SelectWorkspaceDialog.test.ts +0 -191
  1710. package/front_end/panels/ai_assistance/components/ChatView.test.ts +0 -102
  1711. package/front_end/panels/ai_assistance/components/ExploreWidget.test.ts +0 -118
  1712. package/front_end/panels/ai_assistance/components/MarkdownRendererWithCodeBlock.test.ts +0 -80
  1713. package/front_end/panels/ai_assistance/components/UserActionRow.test.ts +0 -119
  1714. package/front_end/panels/animation/AnimationScreenshotPopover.ts +0 -65
  1715. package/front_end/panels/animation/AnimationTimeline.test.ts +0 -759
  1716. package/front_end/panels/animation/animationScreenshotPopover.css +0 -18
  1717. package/front_end/panels/application/AppManifestView.test.ts +0 -321
  1718. package/front_end/panels/application/ApplicationPanelSidebar.test.ts +0 -479
  1719. package/front_end/panels/application/BackgroundServiceView.test.ts +0 -164
  1720. package/front_end/panels/application/DOMStorageModel.test.ts +0 -45
  1721. package/front_end/panels/application/ExtensionStorageItemsView.test.ts +0 -152
  1722. package/front_end/panels/application/ExtensionStorageModel.test.ts +0 -249
  1723. package/front_end/panels/application/IndexedDBModel.test.ts +0 -252
  1724. package/front_end/panels/application/IndexedDBViews.test.ts +0 -182
  1725. package/front_end/panels/application/InterestGroupStorageView.test.ts +0 -155
  1726. package/front_end/panels/application/InterestGroupTreeElement.test.ts +0 -37
  1727. package/front_end/panels/application/KeyValueStorageItemsView.test.ts +0 -120
  1728. package/front_end/panels/application/PreloadingTreeElement.test.ts +0 -30
  1729. package/front_end/panels/application/ReportingApiReportsView.test.ts +0 -117
  1730. package/front_end/panels/application/ReportingApiReportsView.ts +0 -88
  1731. package/front_end/panels/application/ReportingApiView.test.ts +0 -102
  1732. package/front_end/panels/application/ServiceWorkerUpdateCycleView.test.ts +0 -130
  1733. package/front_end/panels/application/ServiceWorkersView.test.ts +0 -179
  1734. package/front_end/panels/application/SharedStorageEventsView.test.ts +0 -231
  1735. package/front_end/panels/application/SharedStorageItemsView.test.ts +0 -913
  1736. package/front_end/panels/application/SharedStorageListTreeElement.test.ts +0 -161
  1737. package/front_end/panels/application/SharedStorageModel.test.ts +0 -434
  1738. package/front_end/panels/application/SharedStorageTreeElement.test.ts +0 -140
  1739. package/front_end/panels/application/StorageBucketsTreeElement.test.ts +0 -148
  1740. package/front_end/panels/application/StorageView.test.ts +0 -152
  1741. package/front_end/panels/application/components/BackForwardCacheView.test.ts +0 -303
  1742. package/front_end/panels/application/components/BounceTrackingMitigationsView.test.ts +0 -138
  1743. package/front_end/panels/application/components/EndpointsGrid.test.ts +0 -83
  1744. package/front_end/panels/application/components/FrameDetailsView.test.ts +0 -261
  1745. package/front_end/panels/application/components/InterestGroupAccessGrid.test.ts +0 -70
  1746. package/front_end/panels/application/components/OriginTrialTreeView.test.ts +0 -442
  1747. package/front_end/panels/application/components/ProtocolHandlersView.test.ts +0 -73
  1748. package/front_end/panels/application/components/ReportsGrid.test.ts +0 -131
  1749. package/front_end/panels/application/components/ServiceWorkerRouterView.test.ts +0 -57
  1750. package/front_end/panels/application/components/SharedStorageAccessGrid.test.ts +0 -84
  1751. package/front_end/panels/application/components/SharedStorageMetadataView.test.ts +0 -122
  1752. package/front_end/panels/application/components/StackTrace.test.ts +0 -222
  1753. package/front_end/panels/application/components/StorageMetadataView.test.ts +0 -208
  1754. package/front_end/panels/application/components/TrustTokensView.test.ts +0 -127
  1755. package/front_end/panels/application/preloading/PreloadingView.test.ts +0 -1180
  1756. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +0 -194
  1757. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.test.ts +0 -532
  1758. package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +0 -503
  1759. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.test.ts +0 -150
  1760. package/front_end/panels/application/preloading/components/RuleSetDetailsView.test.ts +0 -158
  1761. package/front_end/panels/application/preloading/components/RuleSetGrid.test.ts +0 -169
  1762. package/front_end/panels/application/preloading/components/UsedPreloadingView.test.ts +0 -751
  1763. package/front_end/panels/autofill/AutofillView.test.ts +0 -295
  1764. package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.test.ts +0 -52
  1765. package/front_end/panels/browser_debugger/browser_debugger.test.ts +0 -11
  1766. package/front_end/panels/changes/CombinedDiffView.test.ts +0 -152
  1767. package/front_end/panels/changes/changes.test.ts +0 -11
  1768. package/front_end/panels/console/ConsoleContextSelector.test.ts +0 -96
  1769. package/front_end/panels/console/ConsoleFormat.test.ts +0 -462
  1770. package/front_end/panels/console/ConsolePrompt.test.ts +0 -142
  1771. package/front_end/panels/console/ConsoleView.test.ts +0 -276
  1772. package/front_end/panels/console/ConsoleViewMessage.test.ts +0 -433
  1773. package/front_end/panels/console/ConsoleViewport.test.ts +0 -399
  1774. package/front_end/panels/console/ErrorStackParser.test.ts +0 -343
  1775. package/front_end/panels/console_counters/console_counters.test.ts +0 -11
  1776. package/front_end/panels/coverage/CoverageDecorationManager.test.ts +0 -210
  1777. package/front_end/panels/coverage/CoverageModel.test.ts +0 -91
  1778. package/front_end/panels/coverage/CoverageView.test.ts +0 -201
  1779. package/front_end/panels/css_overview/CSSOverviewPanel.test.ts +0 -40
  1780. package/front_end/panels/developer_resources/DeveloperResourcesView.test.ts +0 -43
  1781. package/front_end/panels/developer_resources/developer_resources.test.ts +0 -11
  1782. package/front_end/panels/elements/AccessibilityTreeView.test.ts +0 -50
  1783. package/front_end/panels/elements/CSSRuleValidator.test.ts +0 -443
  1784. package/front_end/panels/elements/CSSValueTraceView.test.ts +0 -214
  1785. package/front_end/panels/elements/ClassesPaneWidget.test.ts +0 -48
  1786. package/front_end/panels/elements/ColorSwatchPopoverIcon.test.ts +0 -63
  1787. package/front_end/panels/elements/ComputedStyleModel.test.ts +0 -155
  1788. package/front_end/panels/elements/ComputedStyleWidget.test.ts +0 -153
  1789. package/front_end/panels/elements/DOMLinkifier.test.ts +0 -60
  1790. package/front_end/panels/elements/ElementStatePaneWidget.test.ts +0 -363
  1791. package/front_end/panels/elements/ElementsPanel.test.ts +0 -144
  1792. package/front_end/panels/elements/ElementsTreeElement.test.ts +0 -42
  1793. package/front_end/panels/elements/ElementsTreeElementHighlighter.test.ts +0 -51
  1794. package/front_end/panels/elements/ElementsTreeElementHighlighter.ts +0 -107
  1795. package/front_end/panels/elements/ElementsTreeOutline.test.ts +0 -215
  1796. package/front_end/panels/elements/InspectElementModeController.test.ts +0 -88
  1797. package/front_end/panels/elements/PlatformFontsWidget.test.ts +0 -46
  1798. package/front_end/panels/elements/PropertiesWidget.test.ts +0 -76
  1799. package/front_end/panels/elements/PropertyRenderer.test.ts +0 -340
  1800. package/front_end/panels/elements/StylePropertiesSection.test.ts +0 -324
  1801. package/front_end/panels/elements/StylePropertyHighlighter.test.ts +0 -149
  1802. package/front_end/panels/elements/StylePropertyTreeElement.test.ts +0 -2192
  1803. package/front_end/panels/elements/StylePropertyUtils.test.ts +0 -41
  1804. package/front_end/panels/elements/StylesSidebarPane.test.ts +0 -716
  1805. package/front_end/panels/elements/TopLayerContainer.test.ts +0 -55
  1806. package/front_end/panels/elements/WebCustomData.test.ts +0 -77
  1807. package/front_end/panels/elements/components/AccessibilityTreeNode.test.ts +0 -44
  1808. package/front_end/panels/elements/components/AdornerManager.test.ts +0 -82
  1809. package/front_end/panels/elements/components/CSSHintDetailsView.test.ts +0 -40
  1810. package/front_end/panels/elements/components/CSSPropertyDocsView.test.ts +0 -32
  1811. package/front_end/panels/elements/components/CSSPropertyIconResolver.test.ts +0 -931
  1812. package/front_end/panels/elements/components/CSSQuery.test.ts +0 -58
  1813. package/front_end/panels/elements/components/CSSVariableValueView.test.ts +0 -20
  1814. package/front_end/panels/elements/components/ComputedStyleProperty.test.ts +0 -38
  1815. package/front_end/panels/elements/components/ComputedStyleTrace.test.ts +0 -58
  1816. package/front_end/panels/elements/components/ElementsBreadcrumbs.test.ts +0 -435
  1817. package/front_end/panels/elements/components/ElementsTreeExpandButton.test.ts +0 -50
  1818. package/front_end/panels/elements/components/LayoutPane.test.ts +0 -208
  1819. package/front_end/panels/elements/components/LayoutPane.ts +0 -515
  1820. package/front_end/panels/elements/components/LayoutPaneUtils.ts +0 -41
  1821. package/front_end/panels/elements/components/QueryContainer.test.ts +0 -151
  1822. package/front_end/panels/elements/components/StylePropertyEditor.test.ts +0 -188
  1823. package/front_end/panels/elements/components/layoutPane.css +0 -168
  1824. package/front_end/panels/emulation/AdvancedApp.test.ts +0 -80
  1825. package/front_end/panels/emulation/MediaQueryInspector.test.ts +0 -55
  1826. package/front_end/panels/event_listeners/EventListenersView.test.ts +0 -50
  1827. package/front_end/panels/explain/PromptBuilder.test.ts +0 -582
  1828. package/front_end/panels/explain/components/ConsoleInsight.test.ts +0 -922
  1829. package/front_end/panels/issues/IssueAggregator.test.ts +0 -427
  1830. package/front_end/panels/issues/IssueView.test.ts +0 -75
  1831. package/front_end/panels/issues/IssuesPane.test.ts +0 -32
  1832. package/front_end/panels/layer_viewer/layer_viewer.test.ts +0 -11
  1833. package/front_end/panels/layers/LayersPanel.test.ts +0 -55
  1834. package/front_end/panels/lighthouse/LighthouseController.test.ts +0 -36
  1835. package/front_end/panels/lighthouse/LighthousePanel.test.ts +0 -89
  1836. package/front_end/panels/lighthouse/LighthouseProtocolService.test.ts +0 -70
  1837. package/front_end/panels/lighthouse/LighthouseReportRenderer.test.ts +0 -123
  1838. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.test.ts +0 -201
  1839. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.test.ts +0 -54
  1840. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.test.ts +0 -124
  1841. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.test.ts +0 -421
  1842. package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.test.ts +0 -194
  1843. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.test.ts +0 -118
  1844. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.test.ts +0 -397
  1845. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.test.ts +0 -450
  1846. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.test.ts +0 -91
  1847. package/front_end/panels/media/MainView.test.ts +0 -127
  1848. package/front_end/panels/media/TickingFlameChartHelpers.test.ts +0 -90
  1849. package/front_end/panels/mobile_throttling/ThrottlingManager.test.ts +0 -83
  1850. package/front_end/panels/network/BlockedURLsPane.test.ts +0 -80
  1851. package/front_end/panels/network/NetworkConfigView.test.ts +0 -15
  1852. package/front_end/panels/network/NetworkDataGridNode.test.ts +0 -463
  1853. package/front_end/panels/network/NetworkItemView.test.ts +0 -169
  1854. package/front_end/panels/network/NetworkLogView.test.ts +0 -1063
  1855. package/front_end/panels/network/NetworkOverview.test.ts +0 -60
  1856. package/front_end/panels/network/NetworkPanel.test.ts +0 -103
  1857. package/front_end/panels/network/NetworkSearchScope.test.ts +0 -182
  1858. package/front_end/panels/network/RequestCookiesView.test.ts +0 -49
  1859. package/front_end/panels/network/RequestHTMLView.test.ts +0 -28
  1860. package/front_end/panels/network/RequestPayloadView.test.ts +0 -13
  1861. package/front_end/panels/network/RequestPreviewView.test.ts +0 -105
  1862. package/front_end/panels/network/RequestResponseView.test.ts +0 -94
  1863. package/front_end/panels/network/RequestTimingView.test.ts +0 -172
  1864. package/front_end/panels/network/ResourceDirectSocketChunkView.test.ts +0 -335
  1865. package/front_end/panels/network/components/DirectSocketConnectionView.test.ts +0 -253
  1866. package/front_end/panels/network/components/HeaderSectionRow.test.ts +0 -659
  1867. package/front_end/panels/network/components/RequestHeaderSection.test.ts +0 -101
  1868. package/front_end/panels/network/components/RequestHeadersView.test.ts +0 -534
  1869. package/front_end/panels/network/components/RequestTrustTokensView.test.ts +0 -80
  1870. package/front_end/panels/network/components/ResponseHeaderSection.test.ts +0 -1359
  1871. package/front_end/panels/performance_monitor/PerformanceMonitor.test.ts +0 -37
  1872. package/front_end/panels/profiler/HeapDetachedElementsView.test.ts +0 -34
  1873. package/front_end/panels/profiler/HeapProfileView.test.ts +0 -34
  1874. package/front_end/panels/profiler/HeapSnapshotView.test.ts +0 -35
  1875. package/front_end/panels/protocol_monitor/JSONEditor.test.ts +0 -1321
  1876. package/front_end/panels/protocol_monitor/ProtocolMonitor.test.ts +0 -546
  1877. package/front_end/panels/recorder/RecorderController.test.ts +0 -476
  1878. package/front_end/panels/recorder/components/CreateRecordingView.test.ts +0 -141
  1879. package/front_end/panels/recorder/components/RecordingListView.test.ts +0 -75
  1880. package/front_end/panels/recorder/components/RecordingView.test.ts +0 -235
  1881. package/front_end/panels/recorder/components/ReplaySection.test.ts +0 -113
  1882. package/front_end/panels/recorder/components/SelectButton.test.ts +0 -56
  1883. package/front_end/panels/recorder/components/StepEditor.test.ts +0 -711
  1884. package/front_end/panels/recorder/components/StepView.test.ts +0 -208
  1885. package/front_end/panels/recorder/converters/LighthouseConverter.test.ts +0 -79
  1886. package/front_end/panels/recorder/converters/PuppeteerConverter.test.ts +0 -88
  1887. package/front_end/panels/recorder/converters/PuppeteerReplayConverter.test.ts +0 -59
  1888. package/front_end/panels/recorder/injected/selectors/CSSSelector.test.ts +0 -39
  1889. package/front_end/panels/recorder/injected.test.ts +0 -364
  1890. package/front_end/panels/recorder/models/RecorderSettings.test.ts +0 -65
  1891. package/front_end/panels/recorder/models/RecorderShorcutHelper.test.ts +0 -59
  1892. package/front_end/panels/recorder/models/RecordingPlayer.test.ts +0 -255
  1893. package/front_end/panels/recorder/models/SchemaUtils.test.ts +0 -35
  1894. package/front_end/panels/recorder/models/ScreenshotUtils.test.ts +0 -74
  1895. package/front_end/panels/recorder/models/Section.test.ts +0 -98
  1896. package/front_end/panels/recorder/models/recording-storage.test.ts +0 -66
  1897. package/front_end/panels/recorder/models/screenshot-storage.test.ts +0 -159
  1898. package/front_end/panels/recorder/util/SharedObject.test.ts +0 -88
  1899. package/front_end/panels/screencast/ScreencastApp.test.ts +0 -24
  1900. package/front_end/panels/search/SearchResultsPane.test.ts +0 -228
  1901. package/front_end/panels/search/SearchView.test.ts +0 -197
  1902. package/front_end/panels/security/CookieControlsView.test.ts +0 -65
  1903. package/front_end/panels/security/CookieReportView.test.ts +0 -161
  1904. package/front_end/panels/security/SecurityModel.test.ts +0 -45
  1905. package/front_end/panels/security/SecurityPanel.test.ts +0 -242
  1906. package/front_end/panels/settings/AISettingsTab.test.ts +0 -280
  1907. package/front_end/panels/settings/components/SyncSection.test.ts +0 -76
  1908. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.test.ts +0 -85
  1909. package/front_end/panels/settings/emulation/utils/StructuredHeaders.test.ts +0 -462
  1910. package/front_end/panels/settings/emulation/utils/UserAgentMetadata.test.ts +0 -94
  1911. package/front_end/panels/snippets/ScriptSnippetFileSystem.test.ts +0 -29
  1912. package/front_end/panels/sources/BreakpointEditDialog.test.ts +0 -127
  1913. package/front_end/panels/sources/CSSPlugin.test.ts +0 -90
  1914. package/front_end/panels/sources/CoveragePlugin.test.ts +0 -80
  1915. package/front_end/panels/sources/DebuggerPausedMessage.test.ts +0 -136
  1916. package/front_end/panels/sources/DebuggerPlugin.test.ts +0 -724
  1917. package/front_end/panels/sources/FilePathScoreFunction.test.ts +0 -171
  1918. package/front_end/panels/sources/FilteredUISourceCodeListProvider.test.ts +0 -151
  1919. package/front_end/panels/sources/NavigatorView.test.ts +0 -276
  1920. package/front_end/panels/sources/OutlineQuickOpen.test.ts +0 -1064
  1921. package/front_end/panels/sources/ResourceOriginPlugin.test.ts +0 -38
  1922. package/front_end/panels/sources/SourcesNavigator.test.ts +0 -614
  1923. package/front_end/panels/sources/SourcesView.test.ts +0 -239
  1924. package/front_end/panels/sources/TabbedEditorContainer.test.ts +0 -122
  1925. package/front_end/panels/sources/components/BreakpointsView.test.ts +0 -1866
  1926. package/front_end/panels/sources/components/BreakpointsViewUtils.test.ts +0 -209
  1927. package/front_end/panels/sources/components/HeadersView.test.ts +0 -573
  1928. package/front_end/panels/sources/components/breakpointsView.css +0 -275
  1929. package/front_end/panels/timeline/AnnotationHelpers.test.ts +0 -184
  1930. package/front_end/panels/timeline/Breadcrumbs.test.ts +0 -281
  1931. package/front_end/panels/timeline/EntriesFilter.test.ts +0 -703
  1932. package/front_end/panels/timeline/EventsSerializer.test.ts +0 -71
  1933. package/front_end/panels/timeline/FreshRecording.test.ts +0 -23
  1934. package/front_end/panels/timeline/Initiators.test.ts +0 -173
  1935. package/front_end/panels/timeline/ModificationsManager.test.ts +0 -344
  1936. package/front_end/panels/timeline/SaveFileFormatter.test.ts +0 -79
  1937. package/front_end/panels/timeline/ThirdPartyTreeView.test.ts +0 -84
  1938. package/front_end/panels/timeline/TimelineController.test.ts +0 -98
  1939. package/front_end/panels/timeline/TimelineDetailsView.test.ts +0 -154
  1940. package/front_end/panels/timeline/TimelineFilters.test.ts +0 -72
  1941. package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +0 -416
  1942. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +0 -325
  1943. package/front_end/panels/timeline/TimelineFlameChartView.test.ts +0 -1184
  1944. package/front_end/panels/timeline/TimelineHistoryManager.test.ts +0 -165
  1945. package/front_end/panels/timeline/TimelineLoader.test.ts +0 -170
  1946. package/front_end/panels/timeline/TimelineMiniMap.test.ts +0 -135
  1947. package/front_end/panels/timeline/TimelinePanel.test.ts +0 -286
  1948. package/front_end/panels/timeline/TimelineSelection.test.ts +0 -112
  1949. package/front_end/panels/timeline/TimelineTreeView.test.ts +0 -339
  1950. package/front_end/panels/timeline/TimelineUIUtils.test.ts +0 -1790
  1951. package/front_end/panels/timeline/TrackConfiguration.test.ts +0 -46
  1952. package/front_end/panels/timeline/components/BreadcrumbsUI.test.ts +0 -101
  1953. package/front_end/panels/timeline/components/CPUThrottlingSelector.test.ts +0 -100
  1954. package/front_end/panels/timeline/components/FieldSettingsDialog.test.ts +0 -295
  1955. package/front_end/panels/timeline/components/IgnoreListSetting.test.ts +0 -324
  1956. package/front_end/panels/timeline/components/InteractionBreakdown.test.ts +0 -37
  1957. package/front_end/panels/timeline/components/Invalidations.test.ts +0 -37
  1958. package/front_end/panels/timeline/components/LayoutShiftDetails.test.ts +0 -62
  1959. package/front_end/panels/timeline/components/LiveMetricsView.test.ts +0 -1014
  1960. package/front_end/panels/timeline/components/MetricCard.test.ts +0 -637
  1961. package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +0 -184
  1962. package/front_end/panels/timeline/components/NetworkThrottlingSelector.test.ts +0 -185
  1963. package/front_end/panels/timeline/components/OriginMap.test.ts +0 -359
  1964. package/front_end/panels/timeline/components/RelatedInsightChips.test.ts +0 -105
  1965. package/front_end/panels/timeline/components/Sidebar.test.ts +0 -146
  1966. package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +0 -286
  1967. package/front_end/panels/timeline/components/SidebarInsightsTab.test.ts +0 -43
  1968. package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +0 -211
  1969. package/front_end/panels/timeline/components/TimelineSummary.test.ts +0 -77
  1970. package/front_end/panels/timeline/components/Utils.test.ts +0 -112
  1971. package/front_end/panels/timeline/components/insights/BaseInsightComponent.test.ts +0 -358
  1972. package/front_end/panels/timeline/components/insights/CLSCulprits.test.ts +0 -44
  1973. package/front_end/panels/timeline/components/insights/InteractionToNextPaint.test.ts +0 -71
  1974. package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +0 -118
  1975. package/front_end/panels/timeline/components/insights/LCPPhases.ts +0 -256
  1976. package/front_end/panels/timeline/components/insights/Table.test.ts +0 -60
  1977. package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +0 -1317
  1978. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.test.ts +0 -41
  1979. package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +0 -101
  1980. package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +0 -197
  1981. package/front_end/panels/timeline/track_appenders/CompatibilityTracksAppender.test.ts +0 -228
  1982. package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +0 -247
  1983. package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +0 -116
  1984. package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +0 -125
  1985. package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +0 -104
  1986. package/front_end/panels/timeline/track_appenders/NetworkTrackAppender.test.ts +0 -65
  1987. package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +0 -610
  1988. package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +0 -347
  1989. package/front_end/panels/timeline/utils/AICallTree.test.ts +0 -519
  1990. package/front_end/panels/timeline/utils/EntityMapper.test.ts +0 -122
  1991. package/front_end/panels/timeline/utils/EntryName.test.ts +0 -177
  1992. package/front_end/panels/timeline/utils/Helpers.test.ts +0 -85
  1993. package/front_end/panels/timeline/utils/IgnoreList.test.ts +0 -191
  1994. package/front_end/panels/timeline/utils/ImageCache.test.ts +0 -107
  1995. package/front_end/panels/timeline/utils/InsightAIContext.test.ts +0 -84
  1996. package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +0 -333
  1997. package/front_end/panels/timeline/utils/Treemap.test.ts +0 -321
  1998. package/front_end/panels/utils/utils.test.ts +0 -238
  1999. package/front_end/panels/web_audio/AudioContextContentBuilder.ts +0 -113
  2000. package/front_end/panels/web_audio/AudioContextSelector.ts +0 -140
  2001. package/front_end/panels/web_audio/WebAudioView.test.ts +0 -34
  2002. package/front_end/panels/web_audio/audioContextSelector.css +0 -20
  2003. package/front_end/panels/web_audio/graph_visualizer/EdgeView.ts +0 -80
  2004. package/front_end/panels/web_audio/graph_visualizer/GraphManager.ts +0 -46
  2005. package/front_end/panels/web_audio/graph_visualizer/GraphStyle.ts +0 -96
  2006. package/front_end/panels/web_audio/graph_visualizer/GraphView.ts +0 -197
  2007. package/front_end/panels/web_audio/graph_visualizer/NodeRendererUtility.ts +0 -43
  2008. package/front_end/panels/web_audio/graph_visualizer/NodeView.ts +0 -258
  2009. package/front_end/panels/web_audio/graph_visualizer/graph_visualizer.ts +0 -19
  2010. package/front_end/panels/web_audio/web_audio.test.ts +0 -11
  2011. package/front_end/panels/webauthn/WebauthnPane.test.ts +0 -374
  2012. package/front_end/panels/whats_new/ReleaseNote.test.ts +0 -92
  2013. package/front_end/panels/whats_new/ReleaseNoteView.test.ts +0 -160
  2014. package/front_end/services/trace_bounds/TraceBounds.test.ts +0 -155
  2015. package/front_end/testing/AiAssistanceHelpers.ts +0 -347
  2016. package/front_end/testing/ConsoleHelpers.ts +0 -39
  2017. package/front_end/testing/ContextMenuHelpers.ts +0 -46
  2018. package/front_end/testing/Cookies.ts +0 -72
  2019. package/front_end/testing/DOMHelpers.ts +0 -357
  2020. package/front_end/testing/DataGridHelpers.ts +0 -83
  2021. package/front_end/testing/EnvironmentHelpers.ts +0 -550
  2022. package/front_end/testing/ExpectStubCall.ts +0 -45
  2023. package/front_end/testing/ExtensionHelpers.ts +0 -77
  2024. package/front_end/testing/FileManagerHelpers.ts +0 -22
  2025. package/front_end/testing/InsightHelpers.ts +0 -81
  2026. package/front_end/testing/LanguagePluginHelpers.ts +0 -91
  2027. package/front_end/testing/MockConnection.ts +0 -162
  2028. package/front_end/testing/MockExecutionContext.ts +0 -24
  2029. package/front_end/testing/MockIssuesManager.ts +0 -64
  2030. package/front_end/testing/MockIssuesModel.ts +0 -22
  2031. package/front_end/testing/MockNetworkLog.ts +0 -41
  2032. package/front_end/testing/MockScopeChain.test.ts +0 -25
  2033. package/front_end/testing/MockScopeChain.ts +0 -402
  2034. package/front_end/testing/MutationHelpers.test.ts +0 -273
  2035. package/front_end/testing/MutationHelpers.ts +0 -250
  2036. package/front_end/testing/NetworkHelpers.ts +0 -36
  2037. package/front_end/testing/OverridesHelpers.ts +0 -79
  2038. package/front_end/testing/PersistenceHelpers.ts +0 -64
  2039. package/front_end/testing/PropertyParser.ts +0 -34
  2040. package/front_end/testing/README.md +0 -89
  2041. package/front_end/testing/ResourceTreeHelpers.ts +0 -126
  2042. package/front_end/testing/SourceMapEncoder.test.ts +0 -169
  2043. package/front_end/testing/SourceMapEncoder.ts +0 -366
  2044. package/front_end/testing/SourceMapHelpers.ts +0 -115
  2045. package/front_end/testing/StorageItemsViewHelpers.ts +0 -24
  2046. package/front_end/testing/StubIssue.ts +0 -123
  2047. package/front_end/testing/StyleHelpers.ts +0 -139
  2048. package/front_end/testing/TraceHelpers.ts +0 -990
  2049. package/front_end/testing/TraceLoader.ts +0 -386
  2050. package/front_end/testing/TrackAsyncOperations.ts +0 -276
  2051. package/front_end/testing/UISourceCodeHelpers.ts +0 -157
  2052. package/front_end/testing/UserMetricsHelpers.ts +0 -17
  2053. package/front_end/testing/ViewFunctionHelpers.ts +0 -62
  2054. package/front_end/testing/VisualLoggingHelpers.ts +0 -11
  2055. package/front_end/testing/test_setup.ts +0 -90
  2056. package/front_end/ui/components/adorners/Adorner.test.ts +0 -134
  2057. package/front_end/ui/components/buttons/Button.test.ts +0 -268
  2058. package/front_end/ui/components/cards/Card.test.ts +0 -101
  2059. package/front_end/ui/components/chrome_link/ChromeLink.test.ts +0 -57
  2060. package/front_end/ui/components/code_highlighter/CodeHighlighter.test.ts +0 -318
  2061. package/front_end/ui/components/dialogs/ButtonDialog.test.ts +0 -174
  2062. package/front_end/ui/components/dialogs/Dialog.test.ts +0 -903
  2063. package/front_end/ui/components/dialogs/ShortcutDialog.test.ts +0 -81
  2064. package/front_end/ui/components/diff_view/DiffView.test.ts +0 -94
  2065. package/front_end/ui/components/docs/recorder_recording_view/basic.html +0 -20
  2066. package/front_end/ui/components/docs/recorder_recording_view/basic.ts +0 -99
  2067. package/front_end/ui/components/expandable_list/ExpandableList.test.ts +0 -77
  2068. package/front_end/ui/components/helpers/helpers.test.ts +0 -118
  2069. package/front_end/ui/components/highlighting/HighlightManager.test.ts +0 -89
  2070. package/front_end/ui/components/highlighting/highlighting.css +0 -9
  2071. package/front_end/ui/components/icon_button/FileSourceIcon.test.ts +0 -32
  2072. package/front_end/ui/components/icon_button/Icon.test.ts +0 -126
  2073. package/front_end/ui/components/icon_button/IconButton.test.ts +0 -277
  2074. package/front_end/ui/components/issue_counter/IssueCounter.test.ts +0 -234
  2075. package/front_end/ui/components/issue_counter/IssueLinkIcon.test.ts +0 -187
  2076. package/front_end/ui/components/linkifier/LinkifierImpl.test.ts +0 -84
  2077. package/front_end/ui/components/markdown_view/CodeBlock.test.ts +0 -92
  2078. package/front_end/ui/components/markdown_view/MarkdownImage.test.ts +0 -56
  2079. package/front_end/ui/components/markdown_view/MarkdownLink.test.ts +0 -30
  2080. package/front_end/ui/components/markdown_view/MarkdownView.test.ts +0 -372
  2081. package/front_end/ui/components/menus/SelectMenu.test.ts +0 -106
  2082. package/front_end/ui/components/node_text/NodeText.test.ts +0 -80
  2083. package/front_end/ui/components/panel_feedback/FeedbackButton.test.ts +0 -36
  2084. package/front_end/ui/components/panel_feedback/PanelFeedback.test.ts +0 -47
  2085. package/front_end/ui/components/panel_feedback/PreviewToggle.test.ts +0 -75
  2086. package/front_end/ui/components/render_coordinator/render_coordinator.test.ts +0 -243
  2087. package/front_end/ui/components/report_view/ReportView.test.ts +0 -44
  2088. package/front_end/ui/components/request_link_icon/RequestLinkIcon.test.ts +0 -298
  2089. package/front_end/ui/components/settings/SettingCheckbox.test.ts +0 -205
  2090. package/front_end/ui/components/settings/SettingDeprecationWarning.test.ts +0 -68
  2091. package/front_end/ui/components/snackbars/Snackbar.test.ts +0 -141
  2092. package/front_end/ui/components/survey_link/SurveyLink.test.ts +0 -118
  2093. package/front_end/ui/components/switch/SwitchImpl.test.ts +0 -54
  2094. package/front_end/ui/components/text_editor/AutocompleteHistory.test.ts +0 -126
  2095. package/front_end/ui/components/text_editor/ExecutionPositionHighlighter.test.ts +0 -140
  2096. package/front_end/ui/components/text_editor/TextEditor.test.ts +0 -280
  2097. package/front_end/ui/components/text_editor/TextEditorHistory.test.ts +0 -170
  2098. package/front_end/ui/components/text_editor/javascript.test.ts +0 -121
  2099. package/front_end/ui/components/text_prompt/TextPrompt.test.ts +0 -81
  2100. package/front_end/ui/components/tooltips/Tooltip.test.ts +0 -277
  2101. package/front_end/ui/components/tree_outline/TreeOutline.test.ts +0 -1472
  2102. package/front_end/ui/legacy/ARIAUtils.test.ts +0 -59
  2103. package/front_end/ui/legacy/ActionRegistration.test.ts +0 -175
  2104. package/front_end/ui/legacy/Context.test.ts +0 -14
  2105. package/front_end/ui/legacy/ContextMenu.test.ts +0 -202
  2106. package/front_end/ui/legacy/DockController.test.ts +0 -88
  2107. package/front_end/ui/legacy/FilterBar.test.ts +0 -52
  2108. package/front_end/ui/legacy/Fragment.test.ts +0 -60
  2109. package/front_end/ui/legacy/Geometry.test.ts +0 -658
  2110. package/front_end/ui/legacy/Infobar.test.ts +0 -53
  2111. package/front_end/ui/legacy/KeyboardShortcut.test.ts +0 -28
  2112. package/front_end/ui/legacy/ListModel.test.ts +0 -78
  2113. package/front_end/ui/legacy/ListWidget.test.ts +0 -78
  2114. package/front_end/ui/legacy/SettingsUI.test.ts +0 -157
  2115. package/front_end/ui/legacy/ShortcutRegistry.test.ts +0 -35
  2116. package/front_end/ui/legacy/SplitWidget.test.ts +0 -54
  2117. package/front_end/ui/legacy/SuggestBox.test.ts +0 -126
  2118. package/front_end/ui/legacy/Toolbar.test.ts +0 -231
  2119. package/front_end/ui/legacy/Treeoutline.test.ts +0 -112
  2120. package/front_end/ui/legacy/UIUtils.test.ts +0 -196
  2121. package/front_end/ui/legacy/View.test.ts +0 -63
  2122. package/front_end/ui/legacy/ViewRegistration.test.ts +0 -76
  2123. package/front_end/ui/legacy/Widget.test.ts +0 -174
  2124. package/front_end/ui/legacy/XLink.test.ts +0 -68
  2125. package/front_end/ui/legacy/components/color_picker/ColorFormatSpec.test.ts +0 -217
  2126. package/front_end/ui/legacy/components/color_picker/Spectrum.test.ts +0 -66
  2127. package/front_end/ui/legacy/components/data_grid/DataGridElement.test.ts +0 -268
  2128. package/front_end/ui/legacy/components/inline_editor/AnimationTimingModel.test.ts +0 -23
  2129. package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.test.ts +0 -58
  2130. package/front_end/ui/legacy/components/inline_editor/BezierUI.test.ts +0 -124
  2131. package/front_end/ui/legacy/components/inline_editor/CSSAngle.test.ts +0 -399
  2132. package/front_end/ui/legacy/components/inline_editor/CSSLinearEasingModel.test.ts +0 -64
  2133. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.test.ts +0 -36
  2134. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.test.ts +0 -40
  2135. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.test.ts +0 -267
  2136. package/front_end/ui/legacy/components/inline_editor/FontEditorUnitConverter.test.ts +0 -47
  2137. package/front_end/ui/legacy/components/inline_editor/FontEditorUtils.test.ts +0 -27
  2138. package/front_end/ui/legacy/components/inline_editor/LinkSwatch.test.ts +0 -86
  2139. package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.test.ts +0 -45
  2140. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.test.ts +0 -54
  2141. package/front_end/ui/legacy/components/perf_ui/ChartViewport.test.ts +0 -63
  2142. package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +0 -218
  2143. package/front_end/ui/legacy/components/perf_ui/FlameChart.test.ts +0 -1469
  2144. package/front_end/ui/legacy/components/perf_ui/PieChart.test.ts +0 -220
  2145. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.test.ts +0 -152
  2146. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.test.ts +0 -70
  2147. package/front_end/ui/legacy/components/quick_open/CommandMenu.test.ts +0 -74
  2148. package/front_end/ui/legacy/components/quick_open/FilteredListWidget.test.ts +0 -111
  2149. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +0 -81
  2150. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.test.ts +0 -81
  2151. package/front_end/ui/legacy/components/source_frame/SourceFrame.test.ts +0 -146
  2152. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.test.ts +0 -67
  2153. package/front_end/ui/legacy/components/utils/JSPresentationUtils.test.ts +0 -51
  2154. package/front_end/ui/legacy/components/utils/Linkifier.test.ts +0 -395
  2155. package/front_end/ui/legacy/inspectorViewTabbedPane.css +0 -13
  2156. package/front_end/ui/legacy/theme_support/ThemeSupport.test.ts +0 -129
  2157. package/front_end/ui/lit/i18n-template.test.ts +0 -51
  2158. package/front_end/ui/lit/strip-whitespace.test.ts +0 -110
  2159. package/front_end/ui/visual_logging/Debugging.test.ts +0 -21
  2160. package/front_end/ui/visual_logging/DomState.test.ts +0 -241
  2161. package/front_end/ui/visual_logging/LoggingConfig.test.ts +0 -118
  2162. package/front_end/ui/visual_logging/LoggingDriver.test.ts +0 -1039
  2163. package/front_end/ui/visual_logging/LoggingEvents.test.ts +0 -271
  2164. package/front_end/ui/visual_logging/LoggingState.test.ts +0 -122
  2165. package/front_end/ui/visual_logging/NonDomState.test.ts +0 -44
  2166. package/inspector_overlay/common.test.ts +0 -38
  2167. package/inspector_overlay/css_grid_label_helpers.test.ts +0 -962
  2168. package/inspector_overlay/debug/tool_distances.html +0 -25
  2169. package/inspector_overlay/highlight_common.test.ts +0 -42
  2170. package/inspector_overlay/highlight_flex_common.test.ts +0 -511
  2171. package/inspector_overlay/tool_distances.ts +0 -125
  2172. package/inspector_overlay/tool_highlight.test.ts +0 -105
  2173. package/inspector_overlay/tool_source_order.test.ts +0 -130
  2174. package/inspector_overlay/tool_window_controls.test.ts +0 -81
  2175. package/scripts/DIR_METADATA +0 -3
  2176. package/scripts/README.md +0 -26
  2177. package/scripts/__init__.py +0 -0
  2178. package/scripts/add_icon_paths.py +0 -71
  2179. package/scripts/ai_assistance/README.md +0 -59
  2180. package/scripts/ai_assistance/auto-run/auto-run.ts +0 -389
  2181. package/scripts/ai_assistance/auto-run/shared/comment-parsers.test.ts +0 -168
  2182. package/scripts/ai_assistance/auto-run/shared/comment-parsers.ts +0 -97
  2183. package/scripts/ai_assistance/auto-run/shared/puppeteer-helpers.ts +0 -304
  2184. package/scripts/ai_assistance/auto-run/targets/elements-executor.ts +0 -60
  2185. package/scripts/ai_assistance/auto-run/targets/elements-multimodal-executor.ts +0 -60
  2186. package/scripts/ai_assistance/auto-run/targets/factory.ts +0 -33
  2187. package/scripts/ai_assistance/auto-run/targets/interface.ts +0 -28
  2188. package/scripts/ai_assistance/auto-run/targets/patching-executor.ts +0 -68
  2189. package/scripts/ai_assistance/auto-run/targets/performance-insights-executor.ts +0 -97
  2190. package/scripts/ai_assistance/auto-run/targets/performance-main-thread-executor.ts +0 -97
  2191. package/scripts/ai_assistance/auto-run/trace-downloader.ts +0 -91
  2192. package/scripts/ai_assistance/eval/index.html +0 -32
  2193. package/scripts/ai_assistance/eval/index.js +0 -564
  2194. package/scripts/ai_assistance/package.json +0 -7
  2195. package/scripts/ai_assistance/to_tsv.mjs +0 -39
  2196. package/scripts/ai_assistance/tsconfig.json +0 -14
  2197. package/scripts/ai_assistance/types.d.ts +0 -76
  2198. package/scripts/build/README.md +0 -2
  2199. package/scripts/build/__init__.py +0 -3
  2200. package/scripts/build/assert_grd.py +0 -57
  2201. package/scripts/build/assert_third_party_readmes.py +0 -70
  2202. package/scripts/build/build_inspector_overlay.py +0 -106
  2203. package/scripts/build/code_generator_frontend.py +0 -413
  2204. package/scripts/build/compress_files.js +0 -84
  2205. package/scripts/build/cross_reference_ninja_and_tsc.js +0 -180
  2206. package/scripts/build/devtools_plugin.js +0 -157
  2207. package/scripts/build/efficiently_recompile.py +0 -29
  2208. package/scripts/build/esbuild.js +0 -53
  2209. package/scripts/build/generate_aria.py +0 -36
  2210. package/scripts/build/generate_css_js_files.js +0 -83
  2211. package/scripts/build/generate_deprecations.py +0 -99
  2212. package/scripts/build/generate_devtools_grd.py +0 -123
  2213. package/scripts/build/generate_devtools_json.js +0 -27
  2214. package/scripts/build/generate_html_entrypoint.js +0 -48
  2215. package/scripts/build/generate_supported_css.py +0 -135
  2216. package/scripts/build/ninja/README.md +0 -191
  2217. package/scripts/build/ninja/bundle.gni +0 -108
  2218. package/scripts/build/ninja/copy-file.js +0 -38
  2219. package/scripts/build/ninja/copy-files.js +0 -39
  2220. package/scripts/build/ninja/copy.gni +0 -59
  2221. package/scripts/build/ninja/devtools_entrypoint.gni +0 -221
  2222. package/scripts/build/ninja/devtools_module.gni +0 -33
  2223. package/scripts/build/ninja/devtools_pre_built.gni +0 -54
  2224. package/scripts/build/ninja/generate-declaration.js +0 -18
  2225. package/scripts/build/ninja/generate-tsconfig.js +0 -46
  2226. package/scripts/build/ninja/generate_css.gni +0 -43
  2227. package/scripts/build/ninja/minify-json-files.js +0 -20
  2228. package/scripts/build/ninja/minify_json.gni +0 -32
  2229. package/scripts/build/ninja/node.gni +0 -36
  2230. package/scripts/build/ninja/vars.gni +0 -15
  2231. package/scripts/build/ninja/wasm.gni +0 -25
  2232. package/scripts/build/ninja/write-if-changed.js +0 -27
  2233. package/scripts/build/rollup.config.mjs +0 -31
  2234. package/scripts/build/tests/generate_css_js_files_test.js +0 -40
  2235. package/scripts/build/tests/plugins_test.js +0 -149
  2236. package/scripts/build/typescript/README.md +0 -94
  2237. package/scripts/build/typescript/tests/README.md +0 -10
  2238. package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/BUILDCONFIG.gn +0 -10
  2239. package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/build_output.txt.expected +0 -14
  2240. package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/front_end/module/exporting.ts +0 -1
  2241. package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/front_end/module/index.ts +0 -3
  2242. package/scripts/build/typescript/tests/fixtures/recompile/BUILDCONFIG.gn +0 -10
  2243. package/scripts/build/typescript/tests/fixtures/recompile/build_output.txt.expected +0 -8
  2244. package/scripts/build/typescript/tests/fixtures/recompile/build_output.txt.expected.regen +0 -4
  2245. package/scripts/build/typescript/tests/fixtures/recompile/front_end/module/exporting.ts +0 -1
  2246. package/scripts/build/typescript/tests/fixtures/recompile/front_end/module/module.ts +0 -5
  2247. package/scripts/build/typescript/tests/fixtures/recompile_dep/BUILDCONFIG.gn +0 -10
  2248. package/scripts/build/typescript/tests/fixtures/recompile_dep/build_output.txt.expected +0 -8
  2249. package/scripts/build/typescript/tests/fixtures/recompile_dep/build_output.txt.expected.regen +0 -6
  2250. package/scripts/build/typescript/tests/fixtures/recompile_dep/expected.tsbuildinfo +0 -2084
  2251. package/scripts/build/typescript/tests/fixtures/recompile_dep/front_end/module/exporting.ts +0 -1
  2252. package/scripts/build/typescript/tests/fixtures/recompile_dep/front_end/module/module.ts +0 -7
  2253. package/scripts/build/typescript/tests/fixtures/simple_dep/BUILDCONFIG.gn +0 -10
  2254. package/scripts/build/typescript/tests/fixtures/simple_dep/build_output.txt.expected +0 -6
  2255. package/scripts/build/typescript/tests/fixtures/simple_dep/build_output.txt.expected.regen +0 -2
  2256. package/scripts/build/typescript/tests/fixtures/simple_dep/front_end/module/exporting.ts +0 -1
  2257. package/scripts/build/typescript/tests/fixtures/simple_dep/front_end/module/index.ts +0 -3
  2258. package/scripts/build/typescript/tests/fixtures/test_dep/BUILDCONFIG.gn +0 -10
  2259. package/scripts/build/typescript/tests/fixtures/test_dep/build_output.txt.expected +0 -8
  2260. package/scripts/build/typescript/tests/fixtures/test_dep/front_end/module/exporting.ts +0 -1
  2261. package/scripts/build/typescript/tests/fixtures/test_dep/front_end/module/module.ts +0 -5
  2262. package/scripts/build/typescript/tests/verify_ts_libary.sh +0 -88
  2263. package/scripts/build/typescript/ts_library.py +0 -330
  2264. package/scripts/build/typescript/typescript.gni +0 -289
  2265. package/scripts/build/wasm-as.py +0 -87
  2266. package/scripts/build/wasm_sourcemap.mjs +0 -22
  2267. package/scripts/check_esbuild_versions.js +0 -51
  2268. package/scripts/check_experiments.js +0 -292
  2269. package/scripts/check_external_links.js +0 -150
  2270. package/scripts/component_server/README.md +0 -43
  2271. package/scripts/component_server/server.js +0 -596
  2272. package/scripts/devtools_build.mjs +0 -329
  2273. package/scripts/devtools_build.test.mjs +0 -243
  2274. package/scripts/devtools_paths.js +0 -193
  2275. package/scripts/devtools_paths.py +0 -132
  2276. package/scripts/eslint_rules/README.md +0 -27
  2277. package/scripts/eslint_rules/lib/canvas-context-tracking.ts +0 -154
  2278. package/scripts/eslint_rules/lib/check-css-import.ts +0 -52
  2279. package/scripts/eslint_rules/lib/check-enumerated-histograms.ts +0 -42
  2280. package/scripts/eslint_rules/lib/check-license-header.ts +0 -222
  2281. package/scripts/eslint_rules/lib/check-test-definitions.ts +0 -91
  2282. package/scripts/eslint_rules/lib/check-was-shown-methods.ts +0 -57
  2283. package/scripts/eslint_rules/lib/enforce-custom-element-definitions-location.ts +0 -95
  2284. package/scripts/eslint_rules/lib/enforce-custom-event-names.ts +0 -174
  2285. package/scripts/eslint_rules/lib/enforce-default-import-name.ts +0 -86
  2286. package/scripts/eslint_rules/lib/enforce-optional-properties-last.ts +0 -87
  2287. package/scripts/eslint_rules/lib/enforce-ui-strings-as-const.ts +0 -69
  2288. package/scripts/eslint_rules/lib/es-modules-import.ts +0 -404
  2289. package/scripts/eslint_rules/lib/html-tagged-template.ts +0 -85
  2290. package/scripts/eslint_rules/lib/inject-checkbox-styles.ts +0 -175
  2291. package/scripts/eslint_rules/lib/inline-type-imports.ts +0 -217
  2292. package/scripts/eslint_rules/lib/jslog-context-list.ts +0 -167
  2293. package/scripts/eslint_rules/lib/l10n-filename-matches.ts +0 -136
  2294. package/scripts/eslint_rules/lib/l10n-i18nString-call-only-with-uistrings.ts +0 -62
  2295. package/scripts/eslint_rules/lib/l10n-no-i18nString-calls-module-instantiation.ts +0 -61
  2296. package/scripts/eslint_rules/lib/l10n-no-locked-or-placeholder-only-phrase.ts +0 -72
  2297. package/scripts/eslint_rules/lib/l10n-no-uistrings-export.ts +0 -89
  2298. package/scripts/eslint_rules/lib/l10n-no-unused-message.ts +0 -159
  2299. package/scripts/eslint_rules/lib/lit-no-attribute-quotes.ts +0 -111
  2300. package/scripts/eslint_rules/lib/lit-template-result-or-nothing.ts +0 -158
  2301. package/scripts/eslint_rules/lib/no-a-tags-in-lit.ts +0 -43
  2302. package/scripts/eslint_rules/lib/no-adopted-style-sheets.ts +0 -37
  2303. package/scripts/eslint_rules/lib/no-assert-deep-strict-equal.ts +0 -60
  2304. package/scripts/eslint_rules/lib/no-assert-equal-boolean-null-undefined.ts +0 -178
  2305. package/scripts/eslint_rules/lib/no-assert-equal.ts +0 -88
  2306. package/scripts/eslint_rules/lib/no-assert-strict-equal-for-arrays-and-objects.ts +0 -86
  2307. package/scripts/eslint_rules/lib/no-bound-component-methods.ts +0 -161
  2308. package/scripts/eslint_rules/lib/no-commented-out-console.ts +0 -47
  2309. package/scripts/eslint_rules/lib/no-commented-out-import.ts +0 -46
  2310. package/scripts/eslint_rules/lib/no-customized-builtin-elements.ts +0 -143
  2311. package/scripts/eslint_rules/lib/no-deprecated-component-usages.ts +0 -46
  2312. package/scripts/eslint_rules/lib/no-document-body-mutation.ts +0 -102
  2313. package/scripts/eslint_rules/lib/no-imperative-dom-api/adorner.ts +0 -52
  2314. package/scripts/eslint_rules/lib/no-imperative-dom-api/aria-utils.ts +0 -112
  2315. package/scripts/eslint_rules/lib/no-imperative-dom-api/ast.ts +0 -63
  2316. package/scripts/eslint_rules/lib/no-imperative-dom-api/button.ts +0 -80
  2317. package/scripts/eslint_rules/lib/no-imperative-dom-api/class-member.ts +0 -54
  2318. package/scripts/eslint_rules/lib/no-imperative-dom-api/data-grid.ts +0 -153
  2319. package/scripts/eslint_rules/lib/no-imperative-dom-api/dom-api-devtools-extensions.ts +0 -36
  2320. package/scripts/eslint_rules/lib/no-imperative-dom-api/dom-api.ts +0 -146
  2321. package/scripts/eslint_rules/lib/no-imperative-dom-api/dom-fragment.ts +0 -307
  2322. package/scripts/eslint_rules/lib/no-imperative-dom-api/split-widget.ts +0 -129
  2323. package/scripts/eslint_rules/lib/no-imperative-dom-api/toolbar.ts +0 -194
  2324. package/scripts/eslint_rules/lib/no-imperative-dom-api/ui-fragment.ts +0 -60
  2325. package/scripts/eslint_rules/lib/no-imperative-dom-api/ui-utils.ts +0 -213
  2326. package/scripts/eslint_rules/lib/no-imperative-dom-api/widget.ts +0 -101
  2327. package/scripts/eslint_rules/lib/no-imperative-dom-api.ts +0 -289
  2328. package/scripts/eslint_rules/lib/no-importing-images-from-src.ts +0 -83
  2329. package/scripts/eslint_rules/lib/no-imports-in-directory.ts +0 -73
  2330. package/scripts/eslint_rules/lib/no-it-screenshot-only-or-repeat.ts +0 -47
  2331. package/scripts/eslint_rules/lib/no-lit-render-outside-of-view.ts +0 -94
  2332. package/scripts/eslint_rules/lib/no-new-lit-element-components.ts +0 -45
  2333. package/scripts/eslint_rules/lib/no-screenshot-test-outside-perf-panel.ts +0 -77
  2334. package/scripts/eslint_rules/lib/no-self-closing-custom-element-tagnames.ts +0 -42
  2335. package/scripts/eslint_rules/lib/no-underscored-properties.ts +0 -70
  2336. package/scripts/eslint_rules/lib/prefer-assert-instance-of.ts +0 -76
  2337. package/scripts/eslint_rules/lib/prefer-assert-is-ok.ts +0 -94
  2338. package/scripts/eslint_rules/lib/prefer-assert-length-of.ts +0 -69
  2339. package/scripts/eslint_rules/lib/prefer-assert-strict-equal.ts +0 -86
  2340. package/scripts/eslint_rules/lib/prefer-private-class-members.ts +0 -38
  2341. package/scripts/eslint_rules/lib/prefer-sinon-assert.ts +0 -143
  2342. package/scripts/eslint_rules/lib/prefer-url-string.ts +0 -109
  2343. package/scripts/eslint_rules/lib/screenshot-assertion-in-it-screenshot.ts +0 -110
  2344. package/scripts/eslint_rules/lib/set-data-type-reference.ts +0 -69
  2345. package/scripts/eslint_rules/lib/single-screenshot-assertion-per-test.ts +0 -85
  2346. package/scripts/eslint_rules/lib/static-custom-event-names.ts +0 -215
  2347. package/scripts/eslint_rules/lib/trace-engine-test-timeouts.ts +0 -125
  2348. package/scripts/eslint_rules/lib/utils/l10n-helper.ts +0 -48
  2349. package/scripts/eslint_rules/lib/utils/lit.ts +0 -56
  2350. package/scripts/eslint_rules/lib/utils/ruleCreator.ts +0 -16
  2351. package/scripts/eslint_rules/lib/utils/treeHelpers.ts +0 -13
  2352. package/scripts/eslint_rules/rules-dir.mjs +0 -75
  2353. package/scripts/eslint_rules/tests/canvas-context-tracking.test.ts +0 -124
  2354. package/scripts/eslint_rules/tests/check-css-import.test.ts +0 -43
  2355. package/scripts/eslint_rules/tests/check-enumerated-histograms.test.ts +0 -31
  2356. package/scripts/eslint_rules/tests/check-license-header.test.ts +0 -293
  2357. package/scripts/eslint_rules/tests/check-test-definitions.test.ts +0 -165
  2358. package/scripts/eslint_rules/tests/check-was-shown-methods.test.ts +0 -103
  2359. package/scripts/eslint_rules/tests/check_css_import_test_file.css +0 -5
  2360. package/scripts/eslint_rules/tests/enforce-custom-element-definitions-location.test.ts +0 -56
  2361. package/scripts/eslint_rules/tests/enforce-custom-event-names.test.ts +0 -124
  2362. package/scripts/eslint_rules/tests/enforce-default-import-name.test.ts +0 -53
  2363. package/scripts/eslint_rules/tests/enforce-optional-properties-last.test.ts +0 -137
  2364. package/scripts/eslint_rules/tests/enforce-ui-strings-as-const.test.ts +0 -35
  2365. package/scripts/eslint_rules/tests/es-modules-import.test.ts +0 -332
  2366. package/scripts/eslint_rules/tests/html-tagged-template.test.ts +0 -103
  2367. package/scripts/eslint_rules/tests/inject-checkbox-styles.test.ts +0 -170
  2368. package/scripts/eslint_rules/tests/inline-type-imports.test.ts +0 -82
  2369. package/scripts/eslint_rules/tests/jslog-context-list.test.ts +0 -218
  2370. package/scripts/eslint_rules/tests/l10n-filename-matches.test.ts +0 -90
  2371. package/scripts/eslint_rules/tests/l10n-i18nString-call-only-with-uistrings.test.ts +0 -44
  2372. package/scripts/eslint_rules/tests/l10n-no-i18nString-calls-module-instantiation.test.ts +0 -77
  2373. package/scripts/eslint_rules/tests/l10n-no-locked-or-placeholder-only-phrase.test.ts +0 -45
  2374. package/scripts/eslint_rules/tests/l10n-no-uistrings-export.test.ts +0 -50
  2375. package/scripts/eslint_rules/tests/l10n-no-unused-message.test.ts +0 -119
  2376. package/scripts/eslint_rules/tests/lit-no-attribute-quotes.test.ts +0 -43
  2377. package/scripts/eslint_rules/tests/lit-template-result-or-nothing.test.ts +0 -142
  2378. package/scripts/eslint_rules/tests/no-a-tags-in-lit.test.ts +0 -67
  2379. package/scripts/eslint_rules/tests/no-adopted-style-sheets.test.ts +0 -52
  2380. package/scripts/eslint_rules/tests/no-assert-deep-strict-equal.test.ts +0 -51
  2381. package/scripts/eslint_rules/tests/no-assert-equal-boolean-null-undefined.test.ts +0 -207
  2382. package/scripts/eslint_rules/tests/no-assert-equal.test.ts +0 -101
  2383. package/scripts/eslint_rules/tests/no-assert-strict-equal-for-arrays-and-objects.test.ts +0 -87
  2384. package/scripts/eslint_rules/tests/no-bound-component-methods.test.ts +0 -105
  2385. package/scripts/eslint_rules/tests/no-commented-out-console.test.ts +0 -35
  2386. package/scripts/eslint_rules/tests/no-commented-out-import.test.ts +0 -45
  2387. package/scripts/eslint_rules/tests/no-customized-builtin-elements.test.ts +0 -150
  2388. package/scripts/eslint_rules/tests/no-deprecated-component-usages.test.ts +0 -46
  2389. package/scripts/eslint_rules/tests/no-document-body-mutation.test.ts +0 -45
  2390. package/scripts/eslint_rules/tests/no-imperative-dom-api.test.ts +0 -1237
  2391. package/scripts/eslint_rules/tests/no-importing-images-from-src.test.ts +0 -40
  2392. package/scripts/eslint_rules/tests/no-imports-in-directory.test.ts +0 -89
  2393. package/scripts/eslint_rules/tests/no-it-screenshot-only-or-repeat.test.ts +0 -34
  2394. package/scripts/eslint_rules/tests/no-lit-render-outside-of-view.test.ts +0 -80
  2395. package/scripts/eslint_rules/tests/no-new-lit-element-components.test.ts +0 -27
  2396. package/scripts/eslint_rules/tests/no-screenshot-test-outside-perf-panel.test.ts +0 -99
  2397. package/scripts/eslint_rules/tests/no-self-closing-custom-element-tagnames.test.ts +0 -59
  2398. package/scripts/eslint_rules/tests/no-underscored-properties.test.ts +0 -99
  2399. package/scripts/eslint_rules/tests/prefer-assert-instance-of.test.ts +0 -195
  2400. package/scripts/eslint_rules/tests/prefer-assert-is-ok.test.ts +0 -182
  2401. package/scripts/eslint_rules/tests/prefer-assert-length-of.test.ts +0 -143
  2402. package/scripts/eslint_rules/tests/prefer-assert-strict-equal.test.ts +0 -367
  2403. package/scripts/eslint_rules/tests/prefer-private-class-members.test.ts +0 -59
  2404. package/scripts/eslint_rules/tests/prefer-sinon-assert.test.ts +0 -333
  2405. package/scripts/eslint_rules/tests/prefer-url-string.test.ts +0 -87
  2406. package/scripts/eslint_rules/tests/screenshot-assertion-in-it-screenshot.test.ts +0 -79
  2407. package/scripts/eslint_rules/tests/set-data-type-reference.test.ts +0 -60
  2408. package/scripts/eslint_rules/tests/single-screenshot-assertion-per-test.test.ts +0 -97
  2409. package/scripts/eslint_rules/tests/static-custom-event-names.test.ts +0 -179
  2410. package/scripts/eslint_rules/tests/trace-engine-test-timeouts.test.ts +0 -59
  2411. package/scripts/eslint_rules/tests/utils.test.ts +0 -79
  2412. package/scripts/eslint_rules/tsconfig.json +0 -13
  2413. package/scripts/extract_bugs.ts +0 -127
  2414. package/scripts/generate_metric_compare_strings.js +0 -130
  2415. package/scripts/hosted_mode/cert.pem +0 -21
  2416. package/scripts/hosted_mode/key.pem +0 -28
  2417. package/scripts/hosted_mode/server.js +0 -258
  2418. package/scripts/javascript_natives/helpers.js +0 -232
  2419. package/scripts/javascript_natives/index.js +0 -105
  2420. package/scripts/javascript_natives/package.json +0 -9
  2421. package/scripts/javascript_natives/test.d.ts +0 -13
  2422. package/scripts/javascript_natives/tests.js +0 -195
  2423. package/scripts/migration/class-fields/migrate.js +0 -77
  2424. package/scripts/migration/class-fields/migrate.sh +0 -8
  2425. package/scripts/migration/class-fields/package.json +0 -5
  2426. package/scripts/migration/web-tests-esm/rename-legacy-global.mjs +0 -129
  2427. package/scripts/npm_test.js +0 -141
  2428. package/scripts/protocol_typescript/protocol_dts_generator.ts +0 -459
  2429. package/scripts/protocol_typescript/protocol_schema.d.ts +0 -92
  2430. package/scripts/reformat-clang-js-ts.js +0 -71
  2431. package/scripts/run_build.mjs +0 -116
  2432. package/scripts/run_on_target.mjs +0 -88
  2433. package/scripts/run_start.mjs +0 -233
  2434. package/scripts/scaffold/README.md +0 -4
  2435. package/scripts/scaffold/scaffold-widget.js +0 -167
  2436. package/scripts/scaffold/templates/WidgetTemplate.css.txt +0 -9
  2437. package/scripts/scaffold/templates/WidgetTemplate.ts.txt +0 -60
  2438. package/scripts/search-trace-files.js +0 -66
  2439. package/scripts/stylelint_rules/lib/use_theme_colors.mjs +0 -322
  2440. package/scripts/stylelint_rules/tests/use_theme_colors.test.js +0 -515
  2441. package/scripts/tools/update_goldens.py +0 -457
  2442. package/scripts/tools/update_goldens_unittest.py +0 -88
  2443. package/scripts/tools/update_goldens_v2.py +0 -68
  2444. package/scripts/tsconfig.json +0 -10
  2445. package/scripts/utils.js +0 -160
  2446. package/scripts/watch_build.js +0 -230
  2447. package/scripts/whitespaces.txt +0 -12
@@ -98,16 +98,17 @@ inspectorBackend.registerEnum("Audits.SharedArrayBufferIssueType", {TransferIssu
98
98
  inspectorBackend.registerEnum("Audits.AttributionReportingIssueType", {PermissionPolicyDisabled: "PermissionPolicyDisabled", UntrustworthyReportingOrigin: "UntrustworthyReportingOrigin", InsecureContext: "InsecureContext", InvalidHeader: "InvalidHeader", InvalidRegisterTriggerHeader: "InvalidRegisterTriggerHeader", SourceAndTriggerHeaders: "SourceAndTriggerHeaders", SourceIgnored: "SourceIgnored", TriggerIgnored: "TriggerIgnored", OsSourceIgnored: "OsSourceIgnored", OsTriggerIgnored: "OsTriggerIgnored", InvalidRegisterOsSourceHeader: "InvalidRegisterOsSourceHeader", InvalidRegisterOsTriggerHeader: "InvalidRegisterOsTriggerHeader", WebAndOsHeaders: "WebAndOsHeaders", NoWebOrOsSupport: "NoWebOrOsSupport", NavigationRegistrationWithoutTransientUserActivation: "NavigationRegistrationWithoutTransientUserActivation", InvalidInfoHeader: "InvalidInfoHeader", NoRegisterSourceHeader: "NoRegisterSourceHeader", NoRegisterTriggerHeader: "NoRegisterTriggerHeader", NoRegisterOsSourceHeader: "NoRegisterOsSourceHeader", NoRegisterOsTriggerHeader: "NoRegisterOsTriggerHeader", NavigationRegistrationUniqueScopeAlreadySet: "NavigationRegistrationUniqueScopeAlreadySet"});
99
99
  inspectorBackend.registerEnum("Audits.SharedDictionaryError", {UseErrorCrossOriginNoCorsRequest: "UseErrorCrossOriginNoCorsRequest", UseErrorDictionaryLoadFailure: "UseErrorDictionaryLoadFailure", UseErrorMatchingDictionaryNotUsed: "UseErrorMatchingDictionaryNotUsed", UseErrorUnexpectedContentDictionaryHeader: "UseErrorUnexpectedContentDictionaryHeader", WriteErrorCossOriginNoCorsRequest: "WriteErrorCossOriginNoCorsRequest", WriteErrorDisallowedBySettings: "WriteErrorDisallowedBySettings", WriteErrorExpiredResponse: "WriteErrorExpiredResponse", WriteErrorFeatureDisabled: "WriteErrorFeatureDisabled", WriteErrorInsufficientResources: "WriteErrorInsufficientResources", WriteErrorInvalidMatchField: "WriteErrorInvalidMatchField", WriteErrorInvalidStructuredHeader: "WriteErrorInvalidStructuredHeader", WriteErrorNavigationRequest: "WriteErrorNavigationRequest", WriteErrorNoMatchField: "WriteErrorNoMatchField", WriteErrorNonListMatchDestField: "WriteErrorNonListMatchDestField", WriteErrorNonSecureContext: "WriteErrorNonSecureContext", WriteErrorNonStringIdField: "WriteErrorNonStringIdField", WriteErrorNonStringInMatchDestList: "WriteErrorNonStringInMatchDestList", WriteErrorNonStringMatchField: "WriteErrorNonStringMatchField", WriteErrorNonTokenTypeField: "WriteErrorNonTokenTypeField", WriteErrorRequestAborted: "WriteErrorRequestAborted", WriteErrorShuttingDown: "WriteErrorShuttingDown", WriteErrorTooLongIdField: "WriteErrorTooLongIdField", WriteErrorUnsupportedType: "WriteErrorUnsupportedType"});
100
100
  inspectorBackend.registerEnum("Audits.SRIMessageSignatureError", {MissingSignatureHeader: "MissingSignatureHeader", MissingSignatureInputHeader: "MissingSignatureInputHeader", InvalidSignatureHeader: "InvalidSignatureHeader", InvalidSignatureInputHeader: "InvalidSignatureInputHeader", SignatureHeaderValueIsNotByteSequence: "SignatureHeaderValueIsNotByteSequence", SignatureHeaderValueIsParameterized: "SignatureHeaderValueIsParameterized", SignatureHeaderValueIsIncorrectLength: "SignatureHeaderValueIsIncorrectLength", SignatureInputHeaderMissingLabel: "SignatureInputHeaderMissingLabel", SignatureInputHeaderValueNotInnerList: "SignatureInputHeaderValueNotInnerList", SignatureInputHeaderValueMissingComponents: "SignatureInputHeaderValueMissingComponents", SignatureInputHeaderInvalidComponentType: "SignatureInputHeaderInvalidComponentType", SignatureInputHeaderInvalidComponentName: "SignatureInputHeaderInvalidComponentName", SignatureInputHeaderInvalidHeaderComponentParameter: "SignatureInputHeaderInvalidHeaderComponentParameter", SignatureInputHeaderInvalidDerivedComponentParameter: "SignatureInputHeaderInvalidDerivedComponentParameter", SignatureInputHeaderKeyIdLength: "SignatureInputHeaderKeyIdLength", SignatureInputHeaderInvalidParameter: "SignatureInputHeaderInvalidParameter", SignatureInputHeaderMissingRequiredParameters: "SignatureInputHeaderMissingRequiredParameters", ValidationFailedSignatureExpired: "ValidationFailedSignatureExpired", ValidationFailedInvalidLength: "ValidationFailedInvalidLength", ValidationFailedSignatureMismatch: "ValidationFailedSignatureMismatch", ValidationFailedIntegrityMismatch: "ValidationFailedIntegrityMismatch"});
101
+ inspectorBackend.registerEnum("Audits.UnencodedDigestError", {MalformedDictionary: "MalformedDictionary", UnknownAlgorithm: "UnknownAlgorithm", IncorrectDigestType: "IncorrectDigestType", IncorrectDigestLength: "IncorrectDigestLength"});
101
102
  inspectorBackend.registerEnum("Audits.GenericIssueErrorType", {FormLabelForNameError: "FormLabelForNameError", FormDuplicateIdForInputError: "FormDuplicateIdForInputError", FormInputWithNoLabelError: "FormInputWithNoLabelError", FormAutocompleteAttributeEmptyError: "FormAutocompleteAttributeEmptyError", FormEmptyIdAndNameAttributesForInputError: "FormEmptyIdAndNameAttributesForInputError", FormAriaLabelledByToNonExistingId: "FormAriaLabelledByToNonExistingId", FormInputAssignedAutocompleteValueToIdOrNameAttributeError: "FormInputAssignedAutocompleteValueToIdOrNameAttributeError", FormLabelHasNeitherForNorNestedInput: "FormLabelHasNeitherForNorNestedInput", FormLabelForMatchesNonExistingIdError: "FormLabelForMatchesNonExistingIdError", FormInputHasWrongButWellIntendedAutocompleteValueError: "FormInputHasWrongButWellIntendedAutocompleteValueError", ResponseWasBlockedByORB: "ResponseWasBlockedByORB"});
102
103
  inspectorBackend.registerEnum("Audits.ClientHintIssueReason", {MetaTagAllowListInvalidOrigin: "MetaTagAllowListInvalidOrigin", MetaTagModifiedHTML: "MetaTagModifiedHTML"});
103
104
  inspectorBackend.registerEnum("Audits.FederatedAuthRequestIssueReason", {ShouldEmbargo: "ShouldEmbargo", TooManyRequests: "TooManyRequests", WellKnownHttpNotFound: "WellKnownHttpNotFound", WellKnownNoResponse: "WellKnownNoResponse", WellKnownInvalidResponse: "WellKnownInvalidResponse", WellKnownListEmpty: "WellKnownListEmpty", WellKnownInvalidContentType: "WellKnownInvalidContentType", ConfigNotInWellKnown: "ConfigNotInWellKnown", WellKnownTooBig: "WellKnownTooBig", ConfigHttpNotFound: "ConfigHttpNotFound", ConfigNoResponse: "ConfigNoResponse", ConfigInvalidResponse: "ConfigInvalidResponse", ConfigInvalidContentType: "ConfigInvalidContentType", ClientMetadataHttpNotFound: "ClientMetadataHttpNotFound", ClientMetadataNoResponse: "ClientMetadataNoResponse", ClientMetadataInvalidResponse: "ClientMetadataInvalidResponse", ClientMetadataInvalidContentType: "ClientMetadataInvalidContentType", IdpNotPotentiallyTrustworthy: "IdpNotPotentiallyTrustworthy", DisabledInSettings: "DisabledInSettings", DisabledInFlags: "DisabledInFlags", ErrorFetchingSignin: "ErrorFetchingSignin", InvalidSigninResponse: "InvalidSigninResponse", AccountsHttpNotFound: "AccountsHttpNotFound", AccountsNoResponse: "AccountsNoResponse", AccountsInvalidResponse: "AccountsInvalidResponse", AccountsListEmpty: "AccountsListEmpty", AccountsInvalidContentType: "AccountsInvalidContentType", IdTokenHttpNotFound: "IdTokenHttpNotFound", IdTokenNoResponse: "IdTokenNoResponse", IdTokenInvalidResponse: "IdTokenInvalidResponse", IdTokenIdpErrorResponse: "IdTokenIdpErrorResponse", IdTokenCrossSiteIdpErrorResponse: "IdTokenCrossSiteIdpErrorResponse", IdTokenInvalidRequest: "IdTokenInvalidRequest", IdTokenInvalidContentType: "IdTokenInvalidContentType", ErrorIdToken: "ErrorIdToken", Canceled: "Canceled", RpPageNotVisible: "RpPageNotVisible", SilentMediationFailure: "SilentMediationFailure", ThirdPartyCookiesBlocked: "ThirdPartyCookiesBlocked", NotSignedInWithIdp: "NotSignedInWithIdp", MissingTransientUserActivation: "MissingTransientUserActivation", ReplacedByActiveMode: "ReplacedByActiveMode", InvalidFieldsSpecified: "InvalidFieldsSpecified", RelyingPartyOriginIsOpaque: "RelyingPartyOriginIsOpaque", TypeNotMatching: "TypeNotMatching", UiDismissedNoEmbargo: "UiDismissedNoEmbargo", CorsError: "CorsError", SuppressedBySegmentationPlatform: "SuppressedBySegmentationPlatform"});
104
105
  inspectorBackend.registerEnum("Audits.FederatedAuthUserInfoRequestIssueReason", {NotSameOrigin: "NotSameOrigin", NotIframe: "NotIframe", NotPotentiallyTrustworthy: "NotPotentiallyTrustworthy", NoAPIPermission: "NoApiPermission", NotSignedInWithIdp: "NotSignedInWithIdp", NoAccountSharingPermission: "NoAccountSharingPermission", InvalidConfigOrWellKnown: "InvalidConfigOrWellKnown", InvalidAccountsResponse: "InvalidAccountsResponse", NoReturningUserFromFetchedAccounts: "NoReturningUserFromFetchedAccounts"});
105
106
  inspectorBackend.registerEnum("Audits.PartitioningBlobURLInfo", {BlockedCrossPartitionFetching: "BlockedCrossPartitionFetching", EnforceNoopenerForNavigation: "EnforceNoopenerForNavigation"});
106
- inspectorBackend.registerEnum("Audits.SelectElementAccessibilityIssueReason", {DisallowedSelectChild: "DisallowedSelectChild", DisallowedOptGroupChild: "DisallowedOptGroupChild", NonPhrasingContentOptionChild: "NonPhrasingContentOptionChild", InteractiveContentOptionChild: "InteractiveContentOptionChild", InteractiveContentLegendChild: "InteractiveContentLegendChild"});
107
+ inspectorBackend.registerEnum("Audits.ElementAccessibilityIssueReason", {DisallowedSelectChild: "DisallowedSelectChild", DisallowedOptGroupChild: "DisallowedOptGroupChild", NonPhrasingContentOptionChild: "NonPhrasingContentOptionChild", InteractiveContentOptionChild: "InteractiveContentOptionChild", InteractiveContentLegendChild: "InteractiveContentLegendChild", InteractiveContentSummaryDescendant: "InteractiveContentSummaryDescendant"});
107
108
  inspectorBackend.registerEnum("Audits.StyleSheetLoadingIssueReason", {LateImportRule: "LateImportRule", RequestFailed: "RequestFailed"});
108
109
  inspectorBackend.registerEnum("Audits.PropertyRuleIssueReason", {InvalidSyntax: "InvalidSyntax", InvalidInitialValue: "InvalidInitialValue", InvalidInherits: "InvalidInherits", InvalidName: "InvalidName"});
109
- inspectorBackend.registerEnum("Audits.UserReidentificationIssueType", {BlockedFrameNavigation: "BlockedFrameNavigation", BlockedSubresource: "BlockedSubresource"});
110
- inspectorBackend.registerEnum("Audits.InspectorIssueCode", {CookieIssue: "CookieIssue", MixedContentIssue: "MixedContentIssue", BlockedByResponseIssue: "BlockedByResponseIssue", HeavyAdIssue: "HeavyAdIssue", ContentSecurityPolicyIssue: "ContentSecurityPolicyIssue", SharedArrayBufferIssue: "SharedArrayBufferIssue", LowTextContrastIssue: "LowTextContrastIssue", CorsIssue: "CorsIssue", AttributionReportingIssue: "AttributionReportingIssue", QuirksModeIssue: "QuirksModeIssue", PartitioningBlobURLIssue: "PartitioningBlobURLIssue", NavigatorUserAgentIssue: "NavigatorUserAgentIssue", GenericIssue: "GenericIssue", DeprecationIssue: "DeprecationIssue", ClientHintIssue: "ClientHintIssue", FederatedAuthRequestIssue: "FederatedAuthRequestIssue", BounceTrackingIssue: "BounceTrackingIssue", CookieDeprecationMetadataIssue: "CookieDeprecationMetadataIssue", StylesheetLoadingIssue: "StylesheetLoadingIssue", FederatedAuthUserInfoRequestIssue: "FederatedAuthUserInfoRequestIssue", PropertyRuleIssue: "PropertyRuleIssue", SharedDictionaryIssue: "SharedDictionaryIssue", SelectElementAccessibilityIssue: "SelectElementAccessibilityIssue", SRIMessageSignatureIssue: "SRIMessageSignatureIssue", UserReidentificationIssue: "UserReidentificationIssue"});
110
+ inspectorBackend.registerEnum("Audits.UserReidentificationIssueType", {BlockedFrameNavigation: "BlockedFrameNavigation", BlockedSubresource: "BlockedSubresource", NoisedCanvasReadback: "NoisedCanvasReadback"});
111
+ inspectorBackend.registerEnum("Audits.InspectorIssueCode", {CookieIssue: "CookieIssue", MixedContentIssue: "MixedContentIssue", BlockedByResponseIssue: "BlockedByResponseIssue", HeavyAdIssue: "HeavyAdIssue", ContentSecurityPolicyIssue: "ContentSecurityPolicyIssue", SharedArrayBufferIssue: "SharedArrayBufferIssue", LowTextContrastIssue: "LowTextContrastIssue", CorsIssue: "CorsIssue", AttributionReportingIssue: "AttributionReportingIssue", QuirksModeIssue: "QuirksModeIssue", PartitioningBlobURLIssue: "PartitioningBlobURLIssue", NavigatorUserAgentIssue: "NavigatorUserAgentIssue", GenericIssue: "GenericIssue", DeprecationIssue: "DeprecationIssue", ClientHintIssue: "ClientHintIssue", FederatedAuthRequestIssue: "FederatedAuthRequestIssue", BounceTrackingIssue: "BounceTrackingIssue", CookieDeprecationMetadataIssue: "CookieDeprecationMetadataIssue", StylesheetLoadingIssue: "StylesheetLoadingIssue", FederatedAuthUserInfoRequestIssue: "FederatedAuthUserInfoRequestIssue", PropertyRuleIssue: "PropertyRuleIssue", SharedDictionaryIssue: "SharedDictionaryIssue", ElementAccessibilityIssue: "ElementAccessibilityIssue", SRIMessageSignatureIssue: "SRIMessageSignatureIssue", UnencodedDigestIssue: "UnencodedDigestIssue", UserReidentificationIssue: "UserReidentificationIssue"});
111
112
  inspectorBackend.registerEvent("Audits.issueAdded", ["issue"]);
112
113
  inspectorBackend.registerEnum("Audits.GetEncodedResponseRequestEncoding", {Webp: "webp", Jpeg: "jpeg", Png: "png"});
113
114
  inspectorBackend.registerCommand("Audits.getEncodedResponse", [{"name": "requestId", "type": "string", "optional": false, "description": "Identifier of the network request to get content for.", "typeRef": "Network.RequestId"}, {"name": "encoding", "type": "string", "optional": false, "description": "The encoding to use.", "typeRef": "Audits.GetEncodedResponseRequestEncoding"}, {"name": "quality", "type": "number", "optional": true, "description": "The quality of the encoding (0-1). (defaults to 1)", "typeRef": null}, {"name": "sizeOnly", "type": "boolean", "optional": true, "description": "Whether to only return the size information (defaults to false).", "typeRef": null}], ["body", "originalSize", "encodedSize"], "Returns the response body and size if it were re-encoded with the specified settings. Only applies to images.");
@@ -133,6 +134,7 @@ inspectorBackend.registerType("Audits.QuirksModeIssueDetails", [{"name": "isLimi
133
134
  inspectorBackend.registerType("Audits.NavigatorUserAgentIssueDetails", [{"name": "url", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "location", "type": "object", "optional": true, "description": "", "typeRef": "Audits.SourceCodeLocation"}]);
134
135
  inspectorBackend.registerType("Audits.SharedDictionaryIssueDetails", [{"name": "sharedDictionaryError", "type": "string", "optional": false, "description": "", "typeRef": "Audits.SharedDictionaryError"}, {"name": "request", "type": "object", "optional": false, "description": "", "typeRef": "Audits.AffectedRequest"}]);
135
136
  inspectorBackend.registerType("Audits.SRIMessageSignatureIssueDetails", [{"name": "error", "type": "string", "optional": false, "description": "", "typeRef": "Audits.SRIMessageSignatureError"}, {"name": "signatureBase", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "integrityAssertions", "type": "array", "optional": false, "description": "", "typeRef": "string"}, {"name": "request", "type": "object", "optional": false, "description": "", "typeRef": "Audits.AffectedRequest"}]);
137
+ inspectorBackend.registerType("Audits.UnencodedDigestIssueDetails", [{"name": "error", "type": "string", "optional": false, "description": "", "typeRef": "Audits.UnencodedDigestError"}, {"name": "request", "type": "object", "optional": false, "description": "", "typeRef": "Audits.AffectedRequest"}]);
136
138
  inspectorBackend.registerType("Audits.GenericIssueDetails", [{"name": "errorType", "type": "string", "optional": false, "description": "Issues with the same errorType are aggregated in the frontend.", "typeRef": "Audits.GenericIssueErrorType"}, {"name": "frameId", "type": "string", "optional": true, "description": "", "typeRef": "Page.FrameId"}, {"name": "violatingNodeId", "type": "number", "optional": true, "description": "", "typeRef": "DOM.BackendNodeId"}, {"name": "violatingNodeAttribute", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "request", "type": "object", "optional": true, "description": "", "typeRef": "Audits.AffectedRequest"}]);
137
139
  inspectorBackend.registerType("Audits.DeprecationIssueDetails", [{"name": "affectedFrame", "type": "object", "optional": true, "description": "", "typeRef": "Audits.AffectedFrame"}, {"name": "sourceCodeLocation", "type": "object", "optional": false, "description": "", "typeRef": "Audits.SourceCodeLocation"}, {"name": "type", "type": "string", "optional": false, "description": "One of the deprecation names from third_party/blink/renderer/core/frame/deprecation/deprecation.json5", "typeRef": null}]);
138
140
  inspectorBackend.registerType("Audits.BounceTrackingIssueDetails", [{"name": "trackingSites", "type": "array", "optional": false, "description": "", "typeRef": "string"}]);
@@ -142,22 +144,13 @@ inspectorBackend.registerType("Audits.FederatedAuthUserInfoRequestIssueDetails",
142
144
  inspectorBackend.registerType("Audits.ClientHintIssueDetails", [{"name": "sourceCodeLocation", "type": "object", "optional": false, "description": "", "typeRef": "Audits.SourceCodeLocation"}, {"name": "clientHintIssueReason", "type": "string", "optional": false, "description": "", "typeRef": "Audits.ClientHintIssueReason"}]);
143
145
  inspectorBackend.registerType("Audits.FailedRequestInfo", [{"name": "url", "type": "string", "optional": false, "description": "The URL that failed to load.", "typeRef": null}, {"name": "failureMessage", "type": "string", "optional": false, "description": "The failure message for the failed request.", "typeRef": null}, {"name": "requestId", "type": "string", "optional": true, "description": "", "typeRef": "Network.RequestId"}]);
144
146
  inspectorBackend.registerType("Audits.PartitioningBlobURLIssueDetails", [{"name": "url", "type": "string", "optional": false, "description": "The BlobURL that failed to load.", "typeRef": null}, {"name": "partitioningBlobURLInfo", "type": "string", "optional": false, "description": "Additional information about the Partitioning Blob URL issue.", "typeRef": "Audits.PartitioningBlobURLInfo"}]);
145
- inspectorBackend.registerType("Audits.SelectElementAccessibilityIssueDetails", [{"name": "nodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.BackendNodeId"}, {"name": "selectElementAccessibilityIssueReason", "type": "string", "optional": false, "description": "", "typeRef": "Audits.SelectElementAccessibilityIssueReason"}, {"name": "hasDisallowedAttributes", "type": "boolean", "optional": false, "description": "", "typeRef": null}]);
147
+ inspectorBackend.registerType("Audits.ElementAccessibilityIssueDetails", [{"name": "nodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.BackendNodeId"}, {"name": "elementAccessibilityIssueReason", "type": "string", "optional": false, "description": "", "typeRef": "Audits.ElementAccessibilityIssueReason"}, {"name": "hasDisallowedAttributes", "type": "boolean", "optional": false, "description": "", "typeRef": null}]);
146
148
  inspectorBackend.registerType("Audits.StylesheetLoadingIssueDetails", [{"name": "sourceCodeLocation", "type": "object", "optional": false, "description": "Source code position that referenced the failing stylesheet.", "typeRef": "Audits.SourceCodeLocation"}, {"name": "styleSheetLoadingIssueReason", "type": "string", "optional": false, "description": "Reason why the stylesheet couldn't be loaded.", "typeRef": "Audits.StyleSheetLoadingIssueReason"}, {"name": "failedRequestInfo", "type": "object", "optional": true, "description": "Contains additional info when the failure was due to a request.", "typeRef": "Audits.FailedRequestInfo"}]);
147
149
  inspectorBackend.registerType("Audits.PropertyRuleIssueDetails", [{"name": "sourceCodeLocation", "type": "object", "optional": false, "description": "Source code position of the property rule.", "typeRef": "Audits.SourceCodeLocation"}, {"name": "propertyRuleIssueReason", "type": "string", "optional": false, "description": "Reason why the property rule was discarded.", "typeRef": "Audits.PropertyRuleIssueReason"}, {"name": "propertyValue", "type": "string", "optional": true, "description": "The value of the property rule property that failed to parse", "typeRef": null}]);
148
- inspectorBackend.registerType("Audits.UserReidentificationIssueDetails", [{"name": "type", "type": "string", "optional": false, "description": "", "typeRef": "Audits.UserReidentificationIssueType"}, {"name": "request", "type": "object", "optional": true, "description": "Applies to BlockedFrameNavigation and BlockedSubresource issue types.", "typeRef": "Audits.AffectedRequest"}]);
149
- inspectorBackend.registerType("Audits.InspectorIssueDetails", [{"name": "cookieIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.CookieIssueDetails"}, {"name": "mixedContentIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.MixedContentIssueDetails"}, {"name": "blockedByResponseIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.BlockedByResponseIssueDetails"}, {"name": "heavyAdIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.HeavyAdIssueDetails"}, {"name": "contentSecurityPolicyIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.ContentSecurityPolicyIssueDetails"}, {"name": "sharedArrayBufferIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.SharedArrayBufferIssueDetails"}, {"name": "lowTextContrastIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.LowTextContrastIssueDetails"}, {"name": "corsIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.CorsIssueDetails"}, {"name": "attributionReportingIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.AttributionReportingIssueDetails"}, {"name": "quirksModeIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.QuirksModeIssueDetails"}, {"name": "partitioningBlobURLIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.PartitioningBlobURLIssueDetails"}, {"name": "navigatorUserAgentIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.NavigatorUserAgentIssueDetails"}, {"name": "genericIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.GenericIssueDetails"}, {"name": "deprecationIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.DeprecationIssueDetails"}, {"name": "clientHintIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.ClientHintIssueDetails"}, {"name": "federatedAuthRequestIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.FederatedAuthRequestIssueDetails"}, {"name": "bounceTrackingIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.BounceTrackingIssueDetails"}, {"name": "cookieDeprecationMetadataIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.CookieDeprecationMetadataIssueDetails"}, {"name": "stylesheetLoadingIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.StylesheetLoadingIssueDetails"}, {"name": "propertyRuleIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.PropertyRuleIssueDetails"}, {"name": "federatedAuthUserInfoRequestIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.FederatedAuthUserInfoRequestIssueDetails"}, {"name": "sharedDictionaryIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.SharedDictionaryIssueDetails"}, {"name": "selectElementAccessibilityIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.SelectElementAccessibilityIssueDetails"}, {"name": "sriMessageSignatureIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.SRIMessageSignatureIssueDetails"}, {"name": "userReidentificationIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.UserReidentificationIssueDetails"}]);
150
+ inspectorBackend.registerType("Audits.UserReidentificationIssueDetails", [{"name": "type", "type": "string", "optional": false, "description": "", "typeRef": "Audits.UserReidentificationIssueType"}, {"name": "request", "type": "object", "optional": true, "description": "Applies to BlockedFrameNavigation and BlockedSubresource issue types.", "typeRef": "Audits.AffectedRequest"}, {"name": "sourceCodeLocation", "type": "object", "optional": true, "description": "Applies to NoisedCanvasReadback issue type.", "typeRef": "Audits.SourceCodeLocation"}]);
151
+ inspectorBackend.registerType("Audits.InspectorIssueDetails", [{"name": "cookieIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.CookieIssueDetails"}, {"name": "mixedContentIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.MixedContentIssueDetails"}, {"name": "blockedByResponseIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.BlockedByResponseIssueDetails"}, {"name": "heavyAdIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.HeavyAdIssueDetails"}, {"name": "contentSecurityPolicyIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.ContentSecurityPolicyIssueDetails"}, {"name": "sharedArrayBufferIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.SharedArrayBufferIssueDetails"}, {"name": "lowTextContrastIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.LowTextContrastIssueDetails"}, {"name": "corsIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.CorsIssueDetails"}, {"name": "attributionReportingIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.AttributionReportingIssueDetails"}, {"name": "quirksModeIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.QuirksModeIssueDetails"}, {"name": "partitioningBlobURLIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.PartitioningBlobURLIssueDetails"}, {"name": "navigatorUserAgentIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.NavigatorUserAgentIssueDetails"}, {"name": "genericIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.GenericIssueDetails"}, {"name": "deprecationIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.DeprecationIssueDetails"}, {"name": "clientHintIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.ClientHintIssueDetails"}, {"name": "federatedAuthRequestIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.FederatedAuthRequestIssueDetails"}, {"name": "bounceTrackingIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.BounceTrackingIssueDetails"}, {"name": "cookieDeprecationMetadataIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.CookieDeprecationMetadataIssueDetails"}, {"name": "stylesheetLoadingIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.StylesheetLoadingIssueDetails"}, {"name": "propertyRuleIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.PropertyRuleIssueDetails"}, {"name": "federatedAuthUserInfoRequestIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.FederatedAuthUserInfoRequestIssueDetails"}, {"name": "sharedDictionaryIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.SharedDictionaryIssueDetails"}, {"name": "elementAccessibilityIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.ElementAccessibilityIssueDetails"}, {"name": "sriMessageSignatureIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.SRIMessageSignatureIssueDetails"}, {"name": "unencodedDigestIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.UnencodedDigestIssueDetails"}, {"name": "userReidentificationIssueDetails", "type": "object", "optional": true, "description": "", "typeRef": "Audits.UserReidentificationIssueDetails"}]);
150
152
  inspectorBackend.registerType("Audits.InspectorIssue", [{"name": "code", "type": "string", "optional": false, "description": "", "typeRef": "Audits.InspectorIssueCode"}, {"name": "details", "type": "object", "optional": false, "description": "", "typeRef": "Audits.InspectorIssueDetails"}, {"name": "issueId", "type": "string", "optional": true, "description": "A unique id for this issue. May be omitted if no other entity (e.g. exception, CDP message, etc.) is referencing this issue.", "typeRef": "Audits.IssueId"}]);
151
153
 
152
- // Extensions.
153
- inspectorBackend.registerEnum("Extensions.StorageArea", {Session: "session", Local: "local", Sync: "sync", Managed: "managed"});
154
- inspectorBackend.registerCommand("Extensions.loadUnpacked", [{"name": "path", "type": "string", "optional": false, "description": "Absolute file path.", "typeRef": null}], ["id"], "Installs an unpacked extension from the filesystem similar to --load-extension CLI flags. Returns extension ID once the extension has been installed. Available if the client is connected using the --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging flag is set.");
155
- inspectorBackend.registerCommand("Extensions.uninstall", [{"name": "id", "type": "string", "optional": false, "description": "Extension id.", "typeRef": null}], [], "Uninstalls an unpacked extension (others not supported) from the profile. Available if the client is connected using the --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging.");
156
- inspectorBackend.registerCommand("Extensions.getStorageItems", [{"name": "id", "type": "string", "optional": false, "description": "ID of extension.", "typeRef": null}, {"name": "storageArea", "type": "string", "optional": false, "description": "StorageArea to retrieve data from.", "typeRef": "Extensions.StorageArea"}, {"name": "keys", "type": "array", "optional": true, "description": "Keys to retrieve.", "typeRef": "string"}], ["data"], "Gets data from extension storage in the given `storageArea`. If `keys` is specified, these are used to filter the result.");
157
- inspectorBackend.registerCommand("Extensions.removeStorageItems", [{"name": "id", "type": "string", "optional": false, "description": "ID of extension.", "typeRef": null}, {"name": "storageArea", "type": "string", "optional": false, "description": "StorageArea to remove data from.", "typeRef": "Extensions.StorageArea"}, {"name": "keys", "type": "array", "optional": false, "description": "Keys to remove.", "typeRef": "string"}], [], "Removes `keys` from extension storage in the given `storageArea`.");
158
- inspectorBackend.registerCommand("Extensions.clearStorageItems", [{"name": "id", "type": "string", "optional": false, "description": "ID of extension.", "typeRef": null}, {"name": "storageArea", "type": "string", "optional": false, "description": "StorageArea to remove data from.", "typeRef": "Extensions.StorageArea"}], [], "Clears extension storage in the given `storageArea`.");
159
- inspectorBackend.registerCommand("Extensions.setStorageItems", [{"name": "id", "type": "string", "optional": false, "description": "ID of extension.", "typeRef": null}, {"name": "storageArea", "type": "string", "optional": false, "description": "StorageArea to set data in.", "typeRef": "Extensions.StorageArea"}, {"name": "values", "type": "object", "optional": false, "description": "Values to set.", "typeRef": null}], [], "Sets `values` in extension storage in the given `storageArea`. The provided `values` will be merged with existing values in the storage area.");
160
-
161
154
  // Autofill.
162
155
  inspectorBackend.registerEnum("Autofill.FillingStrategy", {AutocompleteAttribute: "autocompleteAttribute", AutofillInferred: "autofillInferred"});
163
156
  inspectorBackend.registerEvent("Autofill.addressFormFilled", ["filledFields", "addressUi"]);
@@ -183,6 +176,35 @@ inspectorBackend.registerCommand("BackgroundService.clearEvents", [{"name": "ser
183
176
  inspectorBackend.registerType("BackgroundService.EventMetadata", [{"name": "key", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "value", "type": "string", "optional": false, "description": "", "typeRef": null}]);
184
177
  inspectorBackend.registerType("BackgroundService.BackgroundServiceEvent", [{"name": "timestamp", "type": "number", "optional": false, "description": "Timestamp of the event (in seconds).", "typeRef": "Network.TimeSinceEpoch"}, {"name": "origin", "type": "string", "optional": false, "description": "The origin this event belongs to.", "typeRef": null}, {"name": "serviceWorkerRegistrationId", "type": "string", "optional": false, "description": "The Service Worker ID that initiated the event.", "typeRef": "ServiceWorker.RegistrationID"}, {"name": "service", "type": "string", "optional": false, "description": "The Background Service this event belongs to.", "typeRef": "BackgroundService.ServiceName"}, {"name": "eventName", "type": "string", "optional": false, "description": "A description of the event.", "typeRef": null}, {"name": "instanceId", "type": "string", "optional": false, "description": "An identifier that groups related events together.", "typeRef": null}, {"name": "eventMetadata", "type": "array", "optional": false, "description": "A list of event-specific information.", "typeRef": "BackgroundService.EventMetadata"}, {"name": "storageKey", "type": "string", "optional": false, "description": "Storage key this event belongs to.", "typeRef": null}]);
185
178
 
179
+ // BluetoothEmulation.
180
+ inspectorBackend.registerEnum("BluetoothEmulation.CentralState", {Absent: "absent", PoweredOff: "powered-off", PoweredOn: "powered-on"});
181
+ inspectorBackend.registerEnum("BluetoothEmulation.GATTOperationType", {Connection: "connection", Discovery: "discovery"});
182
+ inspectorBackend.registerEnum("BluetoothEmulation.CharacteristicWriteType", {WriteDefaultDeprecated: "write-default-deprecated", WriteWithResponse: "write-with-response", WriteWithoutResponse: "write-without-response"});
183
+ inspectorBackend.registerEnum("BluetoothEmulation.CharacteristicOperationType", {Read: "read", Write: "write", SubscribeToNotifications: "subscribe-to-notifications", UnsubscribeFromNotifications: "unsubscribe-from-notifications"});
184
+ inspectorBackend.registerEnum("BluetoothEmulation.DescriptorOperationType", {Read: "read", Write: "write"});
185
+ inspectorBackend.registerEvent("BluetoothEmulation.gattOperationReceived", ["address", "type"]);
186
+ inspectorBackend.registerEvent("BluetoothEmulation.characteristicOperationReceived", ["characteristicId", "type", "data", "writeType"]);
187
+ inspectorBackend.registerEvent("BluetoothEmulation.descriptorOperationReceived", ["descriptorId", "type", "data"]);
188
+ inspectorBackend.registerCommand("BluetoothEmulation.enable", [{"name": "state", "type": "string", "optional": false, "description": "State of the simulated central.", "typeRef": "BluetoothEmulation.CentralState"}, {"name": "leSupported", "type": "boolean", "optional": false, "description": "If the simulated central supports low-energy.", "typeRef": null}], [], "Enable the BluetoothEmulation domain.");
189
+ inspectorBackend.registerCommand("BluetoothEmulation.setSimulatedCentralState", [{"name": "state", "type": "string", "optional": false, "description": "State of the simulated central.", "typeRef": "BluetoothEmulation.CentralState"}], [], "Set the state of the simulated central.");
190
+ inspectorBackend.registerCommand("BluetoothEmulation.disable", [], [], "Disable the BluetoothEmulation domain.");
191
+ inspectorBackend.registerCommand("BluetoothEmulation.simulatePreconnectedPeripheral", [{"name": "address", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "manufacturerData", "type": "array", "optional": false, "description": "", "typeRef": "BluetoothEmulation.ManufacturerData"}, {"name": "knownServiceUuids", "type": "array", "optional": false, "description": "", "typeRef": "string"}], [], "Simulates a peripheral with |address|, |name| and |knownServiceUuids| that has already been connected to the system.");
192
+ inspectorBackend.registerCommand("BluetoothEmulation.simulateAdvertisement", [{"name": "entry", "type": "object", "optional": false, "description": "", "typeRef": "BluetoothEmulation.ScanEntry"}], [], "Simulates an advertisement packet described in |entry| being received by the central.");
193
+ inspectorBackend.registerCommand("BluetoothEmulation.simulateGATTOperationResponse", [{"name": "address", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "type", "type": "string", "optional": false, "description": "", "typeRef": "BluetoothEmulation.GATTOperationType"}, {"name": "code", "type": "number", "optional": false, "description": "", "typeRef": null}], [], "Simulates the response code from the peripheral with |address| for a GATT operation of |type|. The |code| value follows the HCI Error Codes from Bluetooth Core Specification Vol 2 Part D 1.3 List Of Error Codes.");
194
+ inspectorBackend.registerCommand("BluetoothEmulation.simulateCharacteristicOperationResponse", [{"name": "characteristicId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "type", "type": "string", "optional": false, "description": "", "typeRef": "BluetoothEmulation.CharacteristicOperationType"}, {"name": "code", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "data", "type": "string", "optional": true, "description": "", "typeRef": null}], [], "Simulates the response from the characteristic with |characteristicId| for a characteristic operation of |type|. The |code| value follows the Error Codes from Bluetooth Core Specification Vol 3 Part F 3.4.1.1 Error Response. The |data| is expected to exist when simulating a successful read operation response.");
195
+ inspectorBackend.registerCommand("BluetoothEmulation.simulateDescriptorOperationResponse", [{"name": "descriptorId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "type", "type": "string", "optional": false, "description": "", "typeRef": "BluetoothEmulation.DescriptorOperationType"}, {"name": "code", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "data", "type": "string", "optional": true, "description": "", "typeRef": null}], [], "Simulates the response from the descriptor with |descriptorId| for a descriptor operation of |type|. The |code| value follows the Error Codes from Bluetooth Core Specification Vol 3 Part F 3.4.1.1 Error Response. The |data| is expected to exist when simulating a successful read operation response.");
196
+ inspectorBackend.registerCommand("BluetoothEmulation.addService", [{"name": "address", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "serviceUuid", "type": "string", "optional": false, "description": "", "typeRef": null}], ["serviceId"], "Adds a service with |serviceUuid| to the peripheral with |address|.");
197
+ inspectorBackend.registerCommand("BluetoothEmulation.removeService", [{"name": "serviceId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Removes the service respresented by |serviceId| from the simulated central.");
198
+ inspectorBackend.registerCommand("BluetoothEmulation.addCharacteristic", [{"name": "serviceId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "characteristicUuid", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "properties", "type": "object", "optional": false, "description": "", "typeRef": "BluetoothEmulation.CharacteristicProperties"}], ["characteristicId"], "Adds a characteristic with |characteristicUuid| and |properties| to the service represented by |serviceId|.");
199
+ inspectorBackend.registerCommand("BluetoothEmulation.removeCharacteristic", [{"name": "characteristicId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Removes the characteristic respresented by |characteristicId| from the simulated central.");
200
+ inspectorBackend.registerCommand("BluetoothEmulation.addDescriptor", [{"name": "characteristicId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "descriptorUuid", "type": "string", "optional": false, "description": "", "typeRef": null}], ["descriptorId"], "Adds a descriptor with |descriptorUuid| to the characteristic respresented by |characteristicId|.");
201
+ inspectorBackend.registerCommand("BluetoothEmulation.removeDescriptor", [{"name": "descriptorId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Removes the descriptor with |descriptorId| from the simulated central.");
202
+ inspectorBackend.registerCommand("BluetoothEmulation.simulateGATTDisconnection", [{"name": "address", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Simulates a GATT disconnection from the peripheral with |address|.");
203
+ inspectorBackend.registerType("BluetoothEmulation.ManufacturerData", [{"name": "key", "type": "number", "optional": false, "description": "Company identifier https://bitbucket.org/bluetooth-SIG/public/src/main/assigned_numbers/company_identifiers/company_identifiers.yaml https://usb.org/developers", "typeRef": null}, {"name": "data", "type": "string", "optional": false, "description": "Manufacturer-specific data", "typeRef": null}]);
204
+ inspectorBackend.registerType("BluetoothEmulation.ScanRecord", [{"name": "name", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "uuids", "type": "array", "optional": true, "description": "", "typeRef": "string"}, {"name": "appearance", "type": "number", "optional": true, "description": "Stores the external appearance description of the device.", "typeRef": null}, {"name": "txPower", "type": "number", "optional": true, "description": "Stores the transmission power of a broadcasting device.", "typeRef": null}, {"name": "manufacturerData", "type": "array", "optional": true, "description": "Key is the company identifier and the value is an array of bytes of manufacturer specific data.", "typeRef": "BluetoothEmulation.ManufacturerData"}]);
205
+ inspectorBackend.registerType("BluetoothEmulation.ScanEntry", [{"name": "deviceAddress", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "rssi", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "scanRecord", "type": "object", "optional": false, "description": "", "typeRef": "BluetoothEmulation.ScanRecord"}]);
206
+ inspectorBackend.registerType("BluetoothEmulation.CharacteristicProperties", [{"name": "broadcast", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "read", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "writeWithoutResponse", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "write", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "notify", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "indicate", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "authenticatedSignedWrites", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "extendedProperties", "type": "boolean", "optional": true, "description": "", "typeRef": null}]);
207
+
186
208
  // Browser.
187
209
  inspectorBackend.registerEnum("Browser.WindowState", {Normal: "normal", Minimized: "minimized", Maximized: "maximized", Fullscreen: "fullscreen"});
188
210
  inspectorBackend.registerEnum("Browser.PermissionType", {Ar: "ar", AudioCapture: "audioCapture", AutomaticFullscreen: "automaticFullscreen", BackgroundFetch: "backgroundFetch", BackgroundSync: "backgroundSync", CameraPanTiltZoom: "cameraPanTiltZoom", CapturedSurfaceControl: "capturedSurfaceControl", ClipboardReadWrite: "clipboardReadWrite", ClipboardSanitizedWrite: "clipboardSanitizedWrite", DisplayCapture: "displayCapture", DurableStorage: "durableStorage", Geolocation: "geolocation", HandTracking: "handTracking", IdleDetection: "idleDetection", KeyboardLock: "keyboardLock", LocalFonts: "localFonts", LocalNetworkAccess: "localNetworkAccess", Midi: "midi", MidiSysex: "midiSysex", Nfc: "nfc", Notifications: "notifications", PaymentHandler: "paymentHandler", PeriodicBackgroundSync: "periodicBackgroundSync", PointerLock: "pointerLock", ProtectedMediaIdentifier: "protectedMediaIdentifier", Sensors: "sensors", SmartCard: "smartCard", SpeakerSelection: "speakerSelection", StorageAccess: "storageAccess", TopLevelStorageAccess: "topLevelStorageAccess", VideoCapture: "videoCapture", Vr: "vr", WakeLockScreen: "wakeLockScreen", WakeLockSystem: "wakeLockSystem", WebAppInstallation: "webAppInstallation", WebPrinting: "webPrinting", WindowManagement: "windowManagement"});
@@ -192,7 +214,7 @@ inspectorBackend.registerEnum("Browser.PrivacySandboxAPI", {BiddingAndAuctionSer
192
214
  inspectorBackend.registerEvent("Browser.downloadWillBegin", ["frameId", "guid", "url", "suggestedFilename"]);
193
215
  inspectorBackend.registerEnum("Browser.DownloadProgressEventState", {InProgress: "inProgress", Completed: "completed", Canceled: "canceled"});
194
216
  inspectorBackend.registerEvent("Browser.downloadProgress", ["guid", "totalBytes", "receivedBytes", "state", "filePath"]);
195
- inspectorBackend.registerCommand("Browser.setPermission", [{"name": "permission", "type": "object", "optional": false, "description": "Descriptor of permission to override.", "typeRef": "Browser.PermissionDescriptor"}, {"name": "setting", "type": "string", "optional": false, "description": "Setting of the permission.", "typeRef": "Browser.PermissionSetting"}, {"name": "origin", "type": "string", "optional": true, "description": "Origin the permission applies to, all origins if not specified.", "typeRef": null}, {"name": "browserContextId", "type": "string", "optional": true, "description": "Context to override. When omitted, default browser context is used.", "typeRef": "Browser.BrowserContextID"}], [], "Set permission settings for given origin.");
217
+ inspectorBackend.registerCommand("Browser.setPermission", [{"name": "permission", "type": "object", "optional": false, "description": "Descriptor of permission to override.", "typeRef": "Browser.PermissionDescriptor"}, {"name": "setting", "type": "string", "optional": false, "description": "Setting of the permission.", "typeRef": "Browser.PermissionSetting"}, {"name": "origin", "type": "string", "optional": true, "description": "Requesting origin the permission applies to, all origins if not specified.", "typeRef": null}, {"name": "embeddingOrigin", "type": "string", "optional": true, "description": "Embedding origin the permission applies to. It is ignored unless the requesting origin is present and valid. If the requesting origin is provided but the embedding origin isn't, the requesting origin is used as the embedding origin.", "typeRef": null}, {"name": "browserContextId", "type": "string", "optional": true, "description": "Context to override. When omitted, default browser context is used.", "typeRef": "Browser.BrowserContextID"}], [], "Set permission settings for given requesting and embedding origins.");
196
218
  inspectorBackend.registerCommand("Browser.grantPermissions", [{"name": "permissions", "type": "array", "optional": false, "description": "", "typeRef": "Browser.PermissionType"}, {"name": "origin", "type": "string", "optional": true, "description": "Origin the permission applies to, all origins if not specified.", "typeRef": null}, {"name": "browserContextId", "type": "string", "optional": true, "description": "BrowserContext to override permissions. When omitted, default browser context is used.", "typeRef": "Browser.BrowserContextID"}], [], "Grant specific permissions to the given origin and reject all others.");
197
219
  inspectorBackend.registerCommand("Browser.resetPermissions", [{"name": "browserContextId", "type": "string", "optional": true, "description": "BrowserContext to reset permissions. When omitted, default browser context is used.", "typeRef": "Browser.BrowserContextID"}], [], "Reset all permission management for all origins.");
198
220
  inspectorBackend.registerEnum("Browser.SetDownloadBehaviorRequestBehavior", {Deny: "deny", Allow: "allow", AllowAndName: "allowAndName", Default: "default"});
@@ -208,6 +230,7 @@ inspectorBackend.registerCommand("Browser.getHistogram", [{"name": "name", "type
208
230
  inspectorBackend.registerCommand("Browser.getWindowBounds", [{"name": "windowId", "type": "number", "optional": false, "description": "Browser window id.", "typeRef": "Browser.WindowID"}], ["bounds"], "Get position and size of the browser window.");
209
231
  inspectorBackend.registerCommand("Browser.getWindowForTarget", [{"name": "targetId", "type": "string", "optional": true, "description": "Devtools agent host id. If called as a part of the session, associated targetId is used.", "typeRef": "Target.TargetID"}], ["windowId", "bounds"], "Get the browser window that contains the devtools target.");
210
232
  inspectorBackend.registerCommand("Browser.setWindowBounds", [{"name": "windowId", "type": "number", "optional": false, "description": "Browser window id.", "typeRef": "Browser.WindowID"}, {"name": "bounds", "type": "object", "optional": false, "description": "New window bounds. The 'minimized', 'maximized' and 'fullscreen' states cannot be combined with 'left', 'top', 'width' or 'height'. Leaves unspecified fields unchanged.", "typeRef": "Browser.Bounds"}], [], "Set position and/or size of the browser window.");
233
+ inspectorBackend.registerCommand("Browser.setContentsSize", [{"name": "windowId", "type": "number", "optional": false, "description": "Browser window id.", "typeRef": "Browser.WindowID"}, {"name": "width", "type": "number", "optional": true, "description": "The window contents width in DIP. Assumes current width if omitted. Must be specified if 'height' is omitted.", "typeRef": null}, {"name": "height", "type": "number", "optional": true, "description": "The window contents height in DIP. Assumes current height if omitted. Must be specified if 'width' is omitted.", "typeRef": null}], [], "Set size of the browser contents resizing browser window as necessary.");
211
234
  inspectorBackend.registerCommand("Browser.setDockTile", [{"name": "badgeLabel", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "image", "type": "string", "optional": true, "description": "Png encoded image.", "typeRef": null}], [], "Set dock tile details, platform-specific.");
212
235
  inspectorBackend.registerCommand("Browser.executeBrowserCommand", [{"name": "commandId", "type": "string", "optional": false, "description": "", "typeRef": "Browser.BrowserCommandId"}], [], "Invoke custom browser commands used by telemetry.");
213
236
  inspectorBackend.registerCommand("Browser.addPrivacySandboxEnrollmentOverride", [{"name": "url", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Allows a site to use privacy sandbox features that require enrollment without the site actually being enrolled. Only supported on page targets.");
@@ -235,12 +258,13 @@ inspectorBackend.registerCommand("CSS.enable", [], [], "Enables the CSS agent fo
235
258
  inspectorBackend.registerCommand("CSS.forcePseudoState", [{"name": "nodeId", "type": "number", "optional": false, "description": "The element id for which to force the pseudo state.", "typeRef": "DOM.NodeId"}, {"name": "forcedPseudoClasses", "type": "array", "optional": false, "description": "Element pseudo classes to force when computing the element's style.", "typeRef": "string"}], [], "Ensures that the given node will have specified pseudo-classes whenever its style is computed by the browser.");
236
259
  inspectorBackend.registerCommand("CSS.forceStartingStyle", [{"name": "nodeId", "type": "number", "optional": false, "description": "The element id for which to force the starting-style state.", "typeRef": "DOM.NodeId"}, {"name": "forced", "type": "boolean", "optional": false, "description": "Boolean indicating if this is on or off.", "typeRef": null}], [], "Ensures that the given node is in its starting-style state.");
237
260
  inspectorBackend.registerCommand("CSS.getBackgroundColors", [{"name": "nodeId", "type": "number", "optional": false, "description": "Id of the node to get background colors for.", "typeRef": "DOM.NodeId"}], ["backgroundColors", "computedFontSize", "computedFontWeight"], "");
238
- inspectorBackend.registerCommand("CSS.getComputedStyleForNode", [{"name": "nodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.NodeId"}], ["computedStyle"], "Returns the computed style for a DOM node identified by `nodeId`.");
239
- inspectorBackend.registerCommand("CSS.resolveValues", [{"name": "values", "type": "array", "optional": false, "description": "Substitution functions (var()/env()/attr()) and cascade-dependent keywords (revert/revert-layer) do not work.", "typeRef": "string"}, {"name": "nodeId", "type": "number", "optional": false, "description": "Id of the node in whose context the expression is evaluated", "typeRef": "DOM.NodeId"}, {"name": "propertyName", "type": "string", "optional": true, "description": "Only longhands and custom property names are accepted.", "typeRef": null}, {"name": "pseudoType", "type": "string", "optional": true, "description": "Pseudo element type, only works for pseudo elements that generate elements in the tree, such as ::before and ::after.", "typeRef": "DOM.PseudoType"}, {"name": "pseudoIdentifier", "type": "string", "optional": true, "description": "Pseudo element custom ident.", "typeRef": null}], ["results"], "Resolve the specified values in the context of the provided element. For example, a value of '1em' is evaluated according to the computed 'font-size' of the element and a value 'calc(1px + 2px)' will be resolved to '3px'. If the `propertyName` was specified the `values` are resolved as if they were property's declaration. If a value cannot be parsed according to the provided property syntax, the value is parsed using combined syntax as if null `propertyName` was provided. If the value cannot be resolved even then, return the provided value without any changes.");
261
+ inspectorBackend.registerCommand("CSS.getComputedStyleForNode", [{"name": "nodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.NodeId"}], ["computedStyle", "extraFields"], "Returns the computed style for a DOM node identified by `nodeId`.");
262
+ inspectorBackend.registerCommand("CSS.resolveValues", [{"name": "values", "type": "array", "optional": false, "description": "Cascade-dependent keywords (revert/revert-layer) do not work.", "typeRef": "string"}, {"name": "nodeId", "type": "number", "optional": false, "description": "Id of the node in whose context the expression is evaluated", "typeRef": "DOM.NodeId"}, {"name": "propertyName", "type": "string", "optional": true, "description": "Only longhands and custom property names are accepted.", "typeRef": null}, {"name": "pseudoType", "type": "string", "optional": true, "description": "Pseudo element type, only works for pseudo elements that generate elements in the tree, such as ::before and ::after.", "typeRef": "DOM.PseudoType"}, {"name": "pseudoIdentifier", "type": "string", "optional": true, "description": "Pseudo element custom ident.", "typeRef": null}], ["results"], "Resolve the specified values in the context of the provided element. For example, a value of '1em' is evaluated according to the computed 'font-size' of the element and a value 'calc(1px + 2px)' will be resolved to '3px'. If the `propertyName` was specified the `values` are resolved as if they were property's declaration. If a value cannot be parsed according to the provided property syntax, the value is parsed using combined syntax as if null `propertyName` was provided. If the value cannot be resolved even then, return the provided value without any changes.");
240
263
  inspectorBackend.registerCommand("CSS.getLonghandProperties", [{"name": "shorthandName", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "value", "type": "string", "optional": false, "description": "", "typeRef": null}], ["longhandProperties"], "");
241
264
  inspectorBackend.registerCommand("CSS.getInlineStylesForNode", [{"name": "nodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.NodeId"}], ["inlineStyle", "attributesStyle"], "Returns the styles defined inline (explicitly in the \"style\" attribute and implicitly, using DOM attributes) for a DOM node identified by `nodeId`.");
242
265
  inspectorBackend.registerCommand("CSS.getAnimatedStylesForNode", [{"name": "nodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.NodeId"}], ["animationStyles", "transitionsStyle", "inherited"], "Returns the styles coming from animations & transitions including the animation & transition styles coming from inheritance chain.");
243
266
  inspectorBackend.registerCommand("CSS.getMatchedStylesForNode", [{"name": "nodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.NodeId"}], ["inlineStyle", "attributesStyle", "matchedCSSRules", "pseudoElements", "inherited", "inheritedPseudoElements", "cssKeyframesRules", "cssPositionTryRules", "activePositionFallbackIndex", "cssPropertyRules", "cssPropertyRegistrations", "cssFontPaletteValuesRule", "parentLayoutNodeId", "cssFunctionRules"], "Returns requested styles for a DOM node identified by `nodeId`.");
267
+ inspectorBackend.registerCommand("CSS.getEnvironmentVariables", [], ["environmentVariables"], "Returns the values of the default UA-defined environment variables used in env()");
244
268
  inspectorBackend.registerCommand("CSS.getMediaQueries", [], ["medias"], "Returns all media queries parsed by the rendering engine.");
245
269
  inspectorBackend.registerCommand("CSS.getPlatformFontsForNode", [{"name": "nodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.NodeId"}], ["fonts"], "Requests information about platform fonts which we used to render child TextNodes in the given node.");
246
270
  inspectorBackend.registerCommand("CSS.getStyleSheetText", [{"name": "styleSheetId", "type": "string", "optional": false, "description": "", "typeRef": "CSS.StyleSheetId"}], ["text"], "Returns the current textual content for a stylesheet.");
@@ -278,12 +302,13 @@ inspectorBackend.registerType("CSS.RuleUsage", [{"name": "styleSheetId", "type":
278
302
  inspectorBackend.registerType("CSS.SourceRange", [{"name": "startLine", "type": "number", "optional": false, "description": "Start line of range.", "typeRef": null}, {"name": "startColumn", "type": "number", "optional": false, "description": "Start column of range (inclusive).", "typeRef": null}, {"name": "endLine", "type": "number", "optional": false, "description": "End line of range", "typeRef": null}, {"name": "endColumn", "type": "number", "optional": false, "description": "End column of range (exclusive).", "typeRef": null}]);
279
303
  inspectorBackend.registerType("CSS.ShorthandEntry", [{"name": "name", "type": "string", "optional": false, "description": "Shorthand name.", "typeRef": null}, {"name": "value", "type": "string", "optional": false, "description": "Shorthand value.", "typeRef": null}, {"name": "important", "type": "boolean", "optional": true, "description": "Whether the property has \\\"!important\\\" annotation (implies `false` if absent).", "typeRef": null}]);
280
304
  inspectorBackend.registerType("CSS.CSSComputedStyleProperty", [{"name": "name", "type": "string", "optional": false, "description": "Computed style property name.", "typeRef": null}, {"name": "value", "type": "string", "optional": false, "description": "Computed style property value.", "typeRef": null}]);
305
+ inspectorBackend.registerType("CSS.ComputedStyleExtraFields", [{"name": "isAppearanceBase", "type": "boolean", "optional": false, "description": "Returns whether or not this node is being rendered with base appearance, which happens when it has its appearance property set to base/base-select or it is in the subtree of an element being rendered with base appearance.", "typeRef": null}]);
281
306
  inspectorBackend.registerType("CSS.CSSStyle", [{"name": "styleSheetId", "type": "string", "optional": true, "description": "The css style sheet identifier (absent for user agent stylesheet and user-specified stylesheet rules) this rule came from.", "typeRef": "CSS.StyleSheetId"}, {"name": "cssProperties", "type": "array", "optional": false, "description": "CSS properties in the style.", "typeRef": "CSS.CSSProperty"}, {"name": "shorthandEntries", "type": "array", "optional": false, "description": "Computed values for all shorthands found in the style.", "typeRef": "CSS.ShorthandEntry"}, {"name": "cssText", "type": "string", "optional": true, "description": "Style declaration text (if available).", "typeRef": null}, {"name": "range", "type": "object", "optional": true, "description": "Style declaration range in the enclosing stylesheet (if available).", "typeRef": "CSS.SourceRange"}]);
282
307
  inspectorBackend.registerType("CSS.CSSProperty", [{"name": "name", "type": "string", "optional": false, "description": "The property name.", "typeRef": null}, {"name": "value", "type": "string", "optional": false, "description": "The property value.", "typeRef": null}, {"name": "important", "type": "boolean", "optional": true, "description": "Whether the property has \\\"!important\\\" annotation (implies `false` if absent).", "typeRef": null}, {"name": "implicit", "type": "boolean", "optional": true, "description": "Whether the property is implicit (implies `false` if absent).", "typeRef": null}, {"name": "text", "type": "string", "optional": true, "description": "The full property text as specified in the style.", "typeRef": null}, {"name": "parsedOk", "type": "boolean", "optional": true, "description": "Whether the property is understood by the browser (implies `true` if absent).", "typeRef": null}, {"name": "disabled", "type": "boolean", "optional": true, "description": "Whether the property is disabled by the user (present for source-based properties only).", "typeRef": null}, {"name": "range", "type": "object", "optional": true, "description": "The entire property range in the enclosing style declaration (if available).", "typeRef": "CSS.SourceRange"}, {"name": "longhandProperties", "type": "array", "optional": true, "description": "Parsed longhand components of this property if it is a shorthand. This field will be empty if the given property is not a shorthand.", "typeRef": "CSS.CSSProperty"}]);
283
308
  inspectorBackend.registerType("CSS.CSSMedia", [{"name": "text", "type": "string", "optional": false, "description": "Media query text.", "typeRef": null}, {"name": "source", "type": "string", "optional": false, "description": "Source of the media query: \\\"mediaRule\\\" if specified by a @media rule, \\\"importRule\\\" if specified by an @import rule, \\\"linkedSheet\\\" if specified by a \\\"media\\\" attribute in a linked stylesheet's LINK tag, \\\"inlineSheet\\\" if specified by a \\\"media\\\" attribute in an inline stylesheet's STYLE tag.", "typeRef": null}, {"name": "sourceURL", "type": "string", "optional": true, "description": "URL of the document containing the media query description.", "typeRef": null}, {"name": "range", "type": "object", "optional": true, "description": "The associated rule (@media or @import) header range in the enclosing stylesheet (if available).", "typeRef": "CSS.SourceRange"}, {"name": "styleSheetId", "type": "string", "optional": true, "description": "Identifier of the stylesheet containing this object (if exists).", "typeRef": "CSS.StyleSheetId"}, {"name": "mediaList", "type": "array", "optional": true, "description": "Array of media queries.", "typeRef": "CSS.MediaQuery"}]);
284
309
  inspectorBackend.registerType("CSS.MediaQuery", [{"name": "expressions", "type": "array", "optional": false, "description": "Array of media query expressions.", "typeRef": "CSS.MediaQueryExpression"}, {"name": "active", "type": "boolean", "optional": false, "description": "Whether the media query condition is satisfied.", "typeRef": null}]);
285
310
  inspectorBackend.registerType("CSS.MediaQueryExpression", [{"name": "value", "type": "number", "optional": false, "description": "Media query expression value.", "typeRef": null}, {"name": "unit", "type": "string", "optional": false, "description": "Media query expression units.", "typeRef": null}, {"name": "feature", "type": "string", "optional": false, "description": "Media query expression feature.", "typeRef": null}, {"name": "valueRange", "type": "object", "optional": true, "description": "The associated range of the value text in the enclosing stylesheet (if available).", "typeRef": "CSS.SourceRange"}, {"name": "computedLength", "type": "number", "optional": true, "description": "Computed length of media query expression (if applicable).", "typeRef": null}]);
286
- inspectorBackend.registerType("CSS.CSSContainerQuery", [{"name": "text", "type": "string", "optional": false, "description": "Container query text.", "typeRef": null}, {"name": "range", "type": "object", "optional": true, "description": "The associated rule header range in the enclosing stylesheet (if available).", "typeRef": "CSS.SourceRange"}, {"name": "styleSheetId", "type": "string", "optional": true, "description": "Identifier of the stylesheet containing this object (if exists).", "typeRef": "CSS.StyleSheetId"}, {"name": "name", "type": "string", "optional": true, "description": "Optional name for the container.", "typeRef": null}, {"name": "physicalAxes", "type": "string", "optional": true, "description": "Optional physical axes queried for the container.", "typeRef": "DOM.PhysicalAxes"}, {"name": "logicalAxes", "type": "string", "optional": true, "description": "Optional logical axes queried for the container.", "typeRef": "DOM.LogicalAxes"}, {"name": "queriesScrollState", "type": "boolean", "optional": true, "description": "true if the query contains scroll-state() queries.", "typeRef": null}]);
311
+ inspectorBackend.registerType("CSS.CSSContainerQuery", [{"name": "text", "type": "string", "optional": false, "description": "Container query text.", "typeRef": null}, {"name": "range", "type": "object", "optional": true, "description": "The associated rule header range in the enclosing stylesheet (if available).", "typeRef": "CSS.SourceRange"}, {"name": "styleSheetId", "type": "string", "optional": true, "description": "Identifier of the stylesheet containing this object (if exists).", "typeRef": "CSS.StyleSheetId"}, {"name": "name", "type": "string", "optional": true, "description": "Optional name for the container.", "typeRef": null}, {"name": "physicalAxes", "type": "string", "optional": true, "description": "Optional physical axes queried for the container.", "typeRef": "DOM.PhysicalAxes"}, {"name": "logicalAxes", "type": "string", "optional": true, "description": "Optional logical axes queried for the container.", "typeRef": "DOM.LogicalAxes"}, {"name": "queriesScrollState", "type": "boolean", "optional": true, "description": "true if the query contains scroll-state() queries.", "typeRef": null}, {"name": "queriesAnchored", "type": "boolean", "optional": true, "description": "true if the query contains anchored() queries.", "typeRef": null}]);
287
312
  inspectorBackend.registerType("CSS.CSSSupports", [{"name": "text", "type": "string", "optional": false, "description": "Supports rule text.", "typeRef": null}, {"name": "active", "type": "boolean", "optional": false, "description": "Whether the supports condition is satisfied.", "typeRef": null}, {"name": "range", "type": "object", "optional": true, "description": "The associated rule header range in the enclosing stylesheet (if available).", "typeRef": "CSS.SourceRange"}, {"name": "styleSheetId", "type": "string", "optional": true, "description": "Identifier of the stylesheet containing this object (if exists).", "typeRef": "CSS.StyleSheetId"}]);
288
313
  inspectorBackend.registerType("CSS.CSSScope", [{"name": "text", "type": "string", "optional": false, "description": "Scope rule text.", "typeRef": null}, {"name": "range", "type": "object", "optional": true, "description": "The associated rule header range in the enclosing stylesheet (if available).", "typeRef": "CSS.SourceRange"}, {"name": "styleSheetId", "type": "string", "optional": true, "description": "Identifier of the stylesheet containing this object (if exists).", "typeRef": "CSS.StyleSheetId"}]);
289
314
  inspectorBackend.registerType("CSS.CSSLayer", [{"name": "text", "type": "string", "optional": false, "description": "Layer name.", "typeRef": null}, {"name": "range", "type": "object", "optional": true, "description": "The associated rule header range in the enclosing stylesheet (if available).", "typeRef": "CSS.SourceRange"}, {"name": "styleSheetId", "type": "string", "optional": true, "description": "Identifier of the stylesheet containing this object (if exists).", "typeRef": "CSS.StyleSheetId"}]);
@@ -329,7 +354,7 @@ inspectorBackend.registerCommand("Cast.stopCasting", [{"name": "sinkName", "type
329
354
  inspectorBackend.registerType("Cast.Sink", [{"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "id", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "session", "type": "string", "optional": true, "description": "Text describing the current session. Present only if there is an active session on the sink.", "typeRef": null}]);
330
355
 
331
356
  // DOM.
332
- inspectorBackend.registerEnum("DOM.PseudoType", {FirstLine: "first-line", FirstLetter: "first-letter", Checkmark: "checkmark", Before: "before", After: "after", PickerIcon: "picker-icon", Marker: "marker", Backdrop: "backdrop", Column: "column", Selection: "selection", SearchText: "search-text", TargetText: "target-text", SpellingError: "spelling-error", GrammarError: "grammar-error", Highlight: "highlight", FirstLineInherited: "first-line-inherited", ScrollMarker: "scroll-marker", ScrollMarkerGroup: "scroll-marker-group", ScrollButton: "scroll-button", Scrollbar: "scrollbar", ScrollbarThumb: "scrollbar-thumb", ScrollbarButton: "scrollbar-button", ScrollbarTrack: "scrollbar-track", ScrollbarTrackPiece: "scrollbar-track-piece", ScrollbarCorner: "scrollbar-corner", Resizer: "resizer", InputListButton: "input-list-button", ViewTransition: "view-transition", ViewTransitionGroup: "view-transition-group", ViewTransitionImagePair: "view-transition-image-pair", ViewTransitionGroupChildren: "view-transition-group-children", ViewTransitionOld: "view-transition-old", ViewTransitionNew: "view-transition-new", Placeholder: "placeholder", FileSelectorButton: "file-selector-button", DetailsContent: "details-content", Picker: "picker", PermissionIcon: "permission-icon"});
357
+ inspectorBackend.registerEnum("DOM.PseudoType", {FirstLine: "first-line", FirstLetter: "first-letter", Checkmark: "checkmark", Before: "before", After: "after", PickerIcon: "picker-icon", InterestHint: "interest-hint", Marker: "marker", Backdrop: "backdrop", Column: "column", Selection: "selection", SearchText: "search-text", TargetText: "target-text", SpellingError: "spelling-error", GrammarError: "grammar-error", Highlight: "highlight", FirstLineInherited: "first-line-inherited", ScrollMarker: "scroll-marker", ScrollMarkerGroup: "scroll-marker-group", ScrollButton: "scroll-button", Scrollbar: "scrollbar", ScrollbarThumb: "scrollbar-thumb", ScrollbarButton: "scrollbar-button", ScrollbarTrack: "scrollbar-track", ScrollbarTrackPiece: "scrollbar-track-piece", ScrollbarCorner: "scrollbar-corner", Resizer: "resizer", InputListButton: "input-list-button", ViewTransition: "view-transition", ViewTransitionGroup: "view-transition-group", ViewTransitionImagePair: "view-transition-image-pair", ViewTransitionGroupChildren: "view-transition-group-children", ViewTransitionOld: "view-transition-old", ViewTransitionNew: "view-transition-new", Placeholder: "placeholder", FileSelectorButton: "file-selector-button", DetailsContent: "details-content", Picker: "picker", PermissionIcon: "permission-icon"});
333
358
  inspectorBackend.registerEnum("DOM.ShadowRootType", {UserAgent: "user-agent", Open: "open", Closed: "closed"});
334
359
  inspectorBackend.registerEnum("DOM.CompatibilityMode", {QuirksMode: "QuirksMode", LimitedQuirksMode: "LimitedQuirksMode", NoQuirksMode: "NoQuirksMode"});
335
360
  inspectorBackend.registerEnum("DOM.PhysicalAxes", {Horizontal: "Horizontal", Vertical: "Vertical", Both: "Both"});
@@ -367,7 +392,7 @@ inspectorBackend.registerCommand("DOM.getDocument", [{"name": "depth", "type": "
367
392
  inspectorBackend.registerCommand("DOM.getFlattenedDocument", [{"name": "depth", "type": "number", "optional": true, "description": "The maximum depth at which children should be retrieved, defaults to 1. Use -1 for the entire subtree or provide an integer larger than 0.", "typeRef": null}, {"name": "pierce", "type": "boolean", "optional": true, "description": "Whether or not iframes and shadow roots should be traversed when returning the subtree (default is false).", "typeRef": null}], ["nodes"], "Returns the root DOM node (and optionally the subtree) to the caller. Deprecated, as it is not designed to work well with the rest of the DOM agent. Use DOMSnapshot.captureSnapshot instead.");
368
393
  inspectorBackend.registerCommand("DOM.getNodesForSubtreeByStyle", [{"name": "nodeId", "type": "number", "optional": false, "description": "Node ID pointing to the root of a subtree.", "typeRef": "DOM.NodeId"}, {"name": "computedStyles", "type": "array", "optional": false, "description": "The style to filter nodes by (includes nodes if any of properties matches).", "typeRef": "DOM.CSSComputedStyleProperty"}, {"name": "pierce", "type": "boolean", "optional": true, "description": "Whether or not iframes and shadow roots in the same target should be traversed when returning the results (default is false).", "typeRef": null}], ["nodeIds"], "Finds nodes with a given computed style in a subtree.");
369
394
  inspectorBackend.registerCommand("DOM.getNodeForLocation", [{"name": "x", "type": "number", "optional": false, "description": "X coordinate.", "typeRef": null}, {"name": "y", "type": "number", "optional": false, "description": "Y coordinate.", "typeRef": null}, {"name": "includeUserAgentShadowDOM", "type": "boolean", "optional": true, "description": "False to skip to the nearest non-UA shadow root ancestor (default: false).", "typeRef": null}, {"name": "ignorePointerEventsNone", "type": "boolean", "optional": true, "description": "Whether to ignore pointer-events: none on elements and hit test them.", "typeRef": null}], ["backendNodeId", "frameId", "nodeId"], "Returns node id at given location. Depending on whether DOM domain is enabled, nodeId is either returned or not.");
370
- inspectorBackend.registerCommand("DOM.getOuterHTML", [{"name": "nodeId", "type": "number", "optional": true, "description": "Identifier of the node.", "typeRef": "DOM.NodeId"}, {"name": "backendNodeId", "type": "number", "optional": true, "description": "Identifier of the backend node.", "typeRef": "DOM.BackendNodeId"}, {"name": "objectId", "type": "string", "optional": true, "description": "JavaScript object id of the node wrapper.", "typeRef": "Runtime.RemoteObjectId"}], ["outerHTML"], "Returns node's HTML markup.");
395
+ inspectorBackend.registerCommand("DOM.getOuterHTML", [{"name": "nodeId", "type": "number", "optional": true, "description": "Identifier of the node.", "typeRef": "DOM.NodeId"}, {"name": "backendNodeId", "type": "number", "optional": true, "description": "Identifier of the backend node.", "typeRef": "DOM.BackendNodeId"}, {"name": "objectId", "type": "string", "optional": true, "description": "JavaScript object id of the node wrapper.", "typeRef": "Runtime.RemoteObjectId"}, {"name": "includeShadowDOM", "type": "boolean", "optional": true, "description": "Include all shadow roots. Equals to false if not specified.", "typeRef": null}], ["outerHTML"], "Returns node's HTML markup.");
371
396
  inspectorBackend.registerCommand("DOM.getRelayoutBoundary", [{"name": "nodeId", "type": "number", "optional": false, "description": "Id of the node.", "typeRef": "DOM.NodeId"}], ["nodeId"], "Returns the id of the nearest ancestor that is a relayout boundary.");
372
397
  inspectorBackend.registerCommand("DOM.getSearchResults", [{"name": "searchId", "type": "string", "optional": false, "description": "Unique search session identifier.", "typeRef": null}, {"name": "fromIndex", "type": "number", "optional": false, "description": "Start index of the search result to be returned.", "typeRef": null}, {"name": "toIndex", "type": "number", "optional": false, "description": "End index of the search result to be returned.", "typeRef": null}], ["nodeIds"], "Returns search results from given `fromIndex` to given `toIndex` from the search with the given identifier.");
373
398
  inspectorBackend.registerCommand("DOM.hideHighlight", [], [], "Hides any highlight.");
@@ -402,9 +427,10 @@ inspectorBackend.registerCommand("DOM.setNodeValue", [{"name": "nodeId", "type":
402
427
  inspectorBackend.registerCommand("DOM.setOuterHTML", [{"name": "nodeId", "type": "number", "optional": false, "description": "Id of the node to set markup for.", "typeRef": "DOM.NodeId"}, {"name": "outerHTML", "type": "string", "optional": false, "description": "Outer HTML markup to set.", "typeRef": null}], [], "Sets node HTML markup, returns new node id.");
403
428
  inspectorBackend.registerCommand("DOM.undo", [], [], "Undoes the last performed action.");
404
429
  inspectorBackend.registerCommand("DOM.getFrameOwner", [{"name": "frameId", "type": "string", "optional": false, "description": "", "typeRef": "Page.FrameId"}], ["backendNodeId", "nodeId"], "Returns iframe node that owns iframe with the given domain.");
405
- inspectorBackend.registerCommand("DOM.getContainerForNode", [{"name": "nodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.NodeId"}, {"name": "containerName", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "physicalAxes", "type": "string", "optional": true, "description": "", "typeRef": "DOM.PhysicalAxes"}, {"name": "logicalAxes", "type": "string", "optional": true, "description": "", "typeRef": "DOM.LogicalAxes"}, {"name": "queriesScrollState", "type": "boolean", "optional": true, "description": "", "typeRef": null}], ["nodeId"], "Returns the query container of the given node based on container query conditions: containerName, physical and logical axes, and whether it queries scroll-state. If no axes are provided and queriesScrollState is false, the style container is returned, which is the direct parent or the closest element with a matching container-name.");
430
+ inspectorBackend.registerCommand("DOM.getContainerForNode", [{"name": "nodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.NodeId"}, {"name": "containerName", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "physicalAxes", "type": "string", "optional": true, "description": "", "typeRef": "DOM.PhysicalAxes"}, {"name": "logicalAxes", "type": "string", "optional": true, "description": "", "typeRef": "DOM.LogicalAxes"}, {"name": "queriesScrollState", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "queriesAnchored", "type": "boolean", "optional": true, "description": "", "typeRef": null}], ["nodeId"], "Returns the query container of the given node based on container query conditions: containerName, physical and logical axes, and whether it queries scroll-state or anchored elements. If no axes are provided and queriesScrollState is false, the style container is returned, which is the direct parent or the closest element with a matching container-name.");
406
431
  inspectorBackend.registerCommand("DOM.getQueryingDescendantsForContainer", [{"name": "nodeId", "type": "number", "optional": false, "description": "Id of the container node to find querying descendants from.", "typeRef": "DOM.NodeId"}], ["nodeIds"], "Returns the descendants of a container query container that have container queries against this container.");
407
432
  inspectorBackend.registerCommand("DOM.getAnchorElement", [{"name": "nodeId", "type": "number", "optional": false, "description": "Id of the positioned element from which to find the anchor.", "typeRef": "DOM.NodeId"}, {"name": "anchorSpecifier", "type": "string", "optional": true, "description": "An optional anchor specifier, as defined in https://www.w3.org/TR/css-anchor-position-1/#anchor-specifier. If not provided, it will return the implicit anchor element for the given positioned element.", "typeRef": null}], ["nodeId"], "Returns the target anchor element of the given anchor query according to https://www.w3.org/TR/css-anchor-position-1/#target.");
433
+ inspectorBackend.registerCommand("DOM.forceShowPopover", [{"name": "nodeId", "type": "number", "optional": false, "description": "Id of the popover HTMLElement", "typeRef": "DOM.NodeId"}, {"name": "enable", "type": "boolean", "optional": false, "description": "If true, opens the popover and keeps it open. If false, closes the popover if it was previously force-opened.", "typeRef": null}], ["nodeIds"], "When enabling, this API force-opens the popover identified by nodeId and keeps it open until disabled.");
408
434
  inspectorBackend.registerType("DOM.BackendNode", [{"name": "nodeType", "type": "number", "optional": false, "description": "`Node`'s nodeType.", "typeRef": null}, {"name": "nodeName", "type": "string", "optional": false, "description": "`Node`'s nodeName.", "typeRef": null}, {"name": "backendNodeId", "type": "number", "optional": false, "description": "", "typeRef": "DOM.BackendNodeId"}]);
409
435
  inspectorBackend.registerType("DOM.Node", [{"name": "nodeId", "type": "number", "optional": false, "description": "Node identifier that is passed into the rest of the DOM messages as the `nodeId`. Backend will only push node with given `id` once. It is aware of all requested nodes and will only fire DOM events for nodes known to the client.", "typeRef": "DOM.NodeId"}, {"name": "parentId", "type": "number", "optional": true, "description": "The id of the parent node if any.", "typeRef": "DOM.NodeId"}, {"name": "backendNodeId", "type": "number", "optional": false, "description": "The BackendNodeId for this node.", "typeRef": "DOM.BackendNodeId"}, {"name": "nodeType", "type": "number", "optional": false, "description": "`Node`'s nodeType.", "typeRef": null}, {"name": "nodeName", "type": "string", "optional": false, "description": "`Node`'s nodeName.", "typeRef": null}, {"name": "localName", "type": "string", "optional": false, "description": "`Node`'s localName.", "typeRef": null}, {"name": "nodeValue", "type": "string", "optional": false, "description": "`Node`'s nodeValue.", "typeRef": null}, {"name": "childNodeCount", "type": "number", "optional": true, "description": "Child count for `Container` nodes.", "typeRef": null}, {"name": "children", "type": "array", "optional": true, "description": "Child nodes of this node when requested with children.", "typeRef": "DOM.Node"}, {"name": "attributes", "type": "array", "optional": true, "description": "Attributes of the `Element` node in the form of flat array `[name1, value1, name2, value2]`.", "typeRef": "string"}, {"name": "documentURL", "type": "string", "optional": true, "description": "Document URL that `Document` or `FrameOwner` node points to.", "typeRef": null}, {"name": "baseURL", "type": "string", "optional": true, "description": "Base URL that `Document` or `FrameOwner` node uses for URL completion.", "typeRef": null}, {"name": "publicId", "type": "string", "optional": true, "description": "`DocumentType`'s publicId.", "typeRef": null}, {"name": "systemId", "type": "string", "optional": true, "description": "`DocumentType`'s systemId.", "typeRef": null}, {"name": "internalSubset", "type": "string", "optional": true, "description": "`DocumentType`'s internalSubset.", "typeRef": null}, {"name": "xmlVersion", "type": "string", "optional": true, "description": "`Document`'s XML version in case of XML documents.", "typeRef": null}, {"name": "name", "type": "string", "optional": true, "description": "`Attr`'s name.", "typeRef": null}, {"name": "value", "type": "string", "optional": true, "description": "`Attr`'s value.", "typeRef": null}, {"name": "pseudoType", "type": "string", "optional": true, "description": "Pseudo element type for this node.", "typeRef": "DOM.PseudoType"}, {"name": "pseudoIdentifier", "type": "string", "optional": true, "description": "Pseudo element identifier for this node. Only present if there is a valid pseudoType.", "typeRef": null}, {"name": "shadowRootType", "type": "string", "optional": true, "description": "Shadow root type.", "typeRef": "DOM.ShadowRootType"}, {"name": "frameId", "type": "string", "optional": true, "description": "Frame ID for frame owner elements.", "typeRef": "Page.FrameId"}, {"name": "contentDocument", "type": "object", "optional": true, "description": "Content document for frame owner elements.", "typeRef": "DOM.Node"}, {"name": "shadowRoots", "type": "array", "optional": true, "description": "Shadow root list for given element host.", "typeRef": "DOM.Node"}, {"name": "templateContent", "type": "object", "optional": true, "description": "Content document fragment for template elements.", "typeRef": "DOM.Node"}, {"name": "pseudoElements", "type": "array", "optional": true, "description": "Pseudo elements associated with this node.", "typeRef": "DOM.Node"}, {"name": "importedDocument", "type": "object", "optional": true, "description": "Deprecated, as the HTML Imports API has been removed (crbug.com/937746). This property used to return the imported document for the HTMLImport links. The property is always undefined now.", "typeRef": "DOM.Node"}, {"name": "distributedNodes", "type": "array", "optional": true, "description": "Distributed nodes for given insertion point.", "typeRef": "DOM.BackendNode"}, {"name": "isSVG", "type": "boolean", "optional": true, "description": "Whether the node is SVG.", "typeRef": null}, {"name": "compatibilityMode", "type": "string", "optional": true, "description": "", "typeRef": "DOM.CompatibilityMode"}, {"name": "assignedSlot", "type": "object", "optional": true, "description": "", "typeRef": "DOM.BackendNode"}, {"name": "isScrollable", "type": "boolean", "optional": true, "description": "", "typeRef": null}]);
410
436
  inspectorBackend.registerType("DOM.DetachedElementInfo", [{"name": "treeNode", "type": "object", "optional": false, "description": "", "typeRef": "DOM.Node"}, {"name": "retainedNodeIds", "type": "array", "optional": false, "description": "", "typeRef": "DOM.NodeId"}]);
@@ -430,11 +456,6 @@ inspectorBackend.registerCommand("DOMDebugger.setInstrumentationBreakpoint", [{"
430
456
  inspectorBackend.registerCommand("DOMDebugger.setXHRBreakpoint", [{"name": "url", "type": "string", "optional": false, "description": "Resource URL substring. All XHRs having this substring in the URL will get stopped upon.", "typeRef": null}], [], "Sets breakpoint on XMLHttpRequest.");
431
457
  inspectorBackend.registerType("DOMDebugger.EventListener", [{"name": "type", "type": "string", "optional": false, "description": "`EventListener`'s type.", "typeRef": null}, {"name": "useCapture", "type": "boolean", "optional": false, "description": "`EventListener`'s useCapture.", "typeRef": null}, {"name": "passive", "type": "boolean", "optional": false, "description": "`EventListener`'s passive flag.", "typeRef": null}, {"name": "once", "type": "boolean", "optional": false, "description": "`EventListener`'s once flag.", "typeRef": null}, {"name": "scriptId", "type": "string", "optional": false, "description": "Script id of the handler code.", "typeRef": "Runtime.ScriptId"}, {"name": "lineNumber", "type": "number", "optional": false, "description": "Line number in the script (0-based).", "typeRef": null}, {"name": "columnNumber", "type": "number", "optional": false, "description": "Column number in the script (0-based).", "typeRef": null}, {"name": "handler", "type": "object", "optional": true, "description": "Event handler function value.", "typeRef": "Runtime.RemoteObject"}, {"name": "originalHandler", "type": "object", "optional": true, "description": "Event original handler function value.", "typeRef": "Runtime.RemoteObject"}, {"name": "backendNodeId", "type": "number", "optional": true, "description": "Node the listener is added to (if any).", "typeRef": "DOM.BackendNodeId"}]);
432
458
 
433
- // EventBreakpoints.
434
- inspectorBackend.registerCommand("EventBreakpoints.setInstrumentationBreakpoint", [{"name": "eventName", "type": "string", "optional": false, "description": "Instrumentation name to stop on.", "typeRef": null}], [], "Sets breakpoint on particular native event.");
435
- inspectorBackend.registerCommand("EventBreakpoints.removeInstrumentationBreakpoint", [{"name": "eventName", "type": "string", "optional": false, "description": "Instrumentation name to stop on.", "typeRef": null}], [], "Removes breakpoint on particular native event.");
436
- inspectorBackend.registerCommand("EventBreakpoints.disable", [], [], "Removes all breakpoints");
437
-
438
459
  // DOMSnapshot.
439
460
  inspectorBackend.registerCommand("DOMSnapshot.disable", [], [], "Disables DOM snapshot agent for the given page.");
440
461
  inspectorBackend.registerCommand("DOMSnapshot.enable", [], [], "Enables DOM snapshot agent for the given page.");
@@ -469,6 +490,14 @@ inspectorBackend.registerCommand("DOMStorage.setDOMStorageItem", [{"name": "stor
469
490
  inspectorBackend.registerType("DOMStorage.StorageId", [{"name": "securityOrigin", "type": "string", "optional": true, "description": "Security origin for the storage.", "typeRef": null}, {"name": "storageKey", "type": "string", "optional": true, "description": "Represents a key by which DOM Storage keys its CachedStorageAreas", "typeRef": "DOMStorage.SerializedStorageKey"}, {"name": "isLocalStorage", "type": "boolean", "optional": false, "description": "Whether the storage is local storage (not session storage).", "typeRef": null}]);
470
491
  inspectorBackend.registerType("DOMStorage.Item", [{"name": "Item", "type": "array", "optional": false, "description": "DOM Storage item.", "typeRef": "string"}]);
471
492
 
493
+ // DeviceAccess.
494
+ inspectorBackend.registerEvent("DeviceAccess.deviceRequestPrompted", ["id", "devices"]);
495
+ inspectorBackend.registerCommand("DeviceAccess.enable", [], [], "Enable events in this domain.");
496
+ inspectorBackend.registerCommand("DeviceAccess.disable", [], [], "Disable events in this domain.");
497
+ inspectorBackend.registerCommand("DeviceAccess.selectPrompt", [{"name": "id", "type": "string", "optional": false, "description": "", "typeRef": "DeviceAccess.RequestId"}, {"name": "deviceId", "type": "string", "optional": false, "description": "", "typeRef": "DeviceAccess.DeviceId"}], [], "Select a device in response to a DeviceAccess.deviceRequestPrompted event.");
498
+ inspectorBackend.registerCommand("DeviceAccess.cancelPrompt", [{"name": "id", "type": "string", "optional": false, "description": "", "typeRef": "DeviceAccess.RequestId"}], [], "Cancel a prompt in response to a DeviceAccess.deviceRequestPrompted event.");
499
+ inspectorBackend.registerType("DeviceAccess.PromptDevice", [{"name": "id", "type": "string", "optional": false, "description": "", "typeRef": "DeviceAccess.DeviceId"}, {"name": "name", "type": "string", "optional": false, "description": "Display name as it appears in a device request user prompt.", "typeRef": null}]);
500
+
472
501
  // DeviceOrientation.
473
502
  inspectorBackend.registerCommand("DeviceOrientation.clearDeviceOrientationOverride", [], [], "Clears the overridden Device Orientation.");
474
503
  inspectorBackend.registerCommand("DeviceOrientation.setDeviceOrientationOverride", [{"name": "alpha", "type": "number", "optional": false, "description": "Mock alpha", "typeRef": null}, {"name": "beta", "type": "number", "optional": false, "description": "Mock beta", "typeRef": null}, {"name": "gamma", "type": "number", "optional": false, "description": "Mock gamma", "typeRef": null}], [], "Overrides the Device Orientation.");
@@ -478,7 +507,6 @@ inspectorBackend.registerEnum("Emulation.ScreenOrientationType", {PortraitPrimar
478
507
  inspectorBackend.registerEnum("Emulation.DisplayFeatureOrientation", {Vertical: "vertical", Horizontal: "horizontal"});
479
508
  inspectorBackend.registerEnum("Emulation.DevicePostureType", {Continuous: "continuous", Folded: "folded"});
480
509
  inspectorBackend.registerEnum("Emulation.VirtualTimePolicy", {Advance: "advance", Pause: "pause", PauseIfNetworkFetchesPending: "pauseIfNetworkFetchesPending"});
481
- inspectorBackend.registerEnum("Emulation.UserAgentFormFactor", {Desktop: "Desktop", Automotive: "Automotive", Mobile: "Mobile", Tablet: "Tablet", XR: "XR", EInk: "EInk", Watch: "Watch"});
482
510
  inspectorBackend.registerEnum("Emulation.SensorType", {AbsoluteOrientation: "absolute-orientation", Accelerometer: "accelerometer", AmbientLight: "ambient-light", Gravity: "gravity", Gyroscope: "gyroscope", LinearAcceleration: "linear-acceleration", Magnetometer: "magnetometer", RelativeOrientation: "relative-orientation"});
483
511
  inspectorBackend.registerEnum("Emulation.PressureSource", {Cpu: "cpu"});
484
512
  inspectorBackend.registerEnum("Emulation.PressureState", {Nominal: "nominal", Fair: "fair", Serious: "serious", Critical: "critical"});
@@ -524,23 +552,85 @@ inspectorBackend.registerCommand("Emulation.setLocaleOverride", [{"name": "local
524
552
  inspectorBackend.registerCommand("Emulation.setTimezoneOverride", [{"name": "timezoneId", "type": "string", "optional": false, "description": "The timezone identifier. List of supported timezones: https://source.chromium.org/chromium/chromium/deps/icu.git/+/faee8bc70570192d82d2978a71e2a615788597d1:source/data/misc/metaZones.txt If empty, disables the override and restores default host system timezone.", "typeRef": null}], [], "Overrides default host system timezone with the specified one.");
525
553
  inspectorBackend.registerCommand("Emulation.setVisibleSize", [{"name": "width", "type": "number", "optional": false, "description": "Frame width (DIP).", "typeRef": null}, {"name": "height", "type": "number", "optional": false, "description": "Frame height (DIP).", "typeRef": null}], [], "Resizes the frame/viewport of the page. Note that this does not affect the frame's container (e.g. browser window). Can be used to produce screenshots of the specified size. Not supported on Android.");
526
554
  inspectorBackend.registerCommand("Emulation.setDisabledImageTypes", [{"name": "imageTypes", "type": "array", "optional": false, "description": "Image types to disable.", "typeRef": "Emulation.DisabledImageType"}], [], "");
555
+ inspectorBackend.registerCommand("Emulation.setDataSaverOverride", [{"name": "dataSaverEnabled", "type": "boolean", "optional": true, "description": "Override value. Omitting the parameter disables the override.", "typeRef": null}], [], "Override the value of navigator.connection.saveData");
527
556
  inspectorBackend.registerCommand("Emulation.setHardwareConcurrencyOverride", [{"name": "hardwareConcurrency", "type": "number", "optional": false, "description": "Hardware concurrency to report", "typeRef": null}], [], "");
528
557
  inspectorBackend.registerCommand("Emulation.setUserAgentOverride", [{"name": "userAgent", "type": "string", "optional": false, "description": "User agent to use.", "typeRef": null}, {"name": "acceptLanguage", "type": "string", "optional": true, "description": "Browser language to emulate.", "typeRef": null}, {"name": "platform", "type": "string", "optional": true, "description": "The platform navigator.platform should return.", "typeRef": null}, {"name": "userAgentMetadata", "type": "object", "optional": true, "description": "To be sent in Sec-CH-UA-* headers and returned in navigator.userAgentData", "typeRef": "Emulation.UserAgentMetadata"}], [], "Allows overriding user agent with the given string. `userAgentMetadata` must be set for Client Hint headers to be sent.");
529
558
  inspectorBackend.registerCommand("Emulation.setAutomationOverride", [{"name": "enabled", "type": "boolean", "optional": false, "description": "Whether the override should be enabled.", "typeRef": null}], [], "Allows overriding the automation flag.");
530
559
  inspectorBackend.registerCommand("Emulation.setSmallViewportHeightDifferenceOverride", [{"name": "difference", "type": "number", "optional": false, "description": "This will cause an element of size 100svh to be `difference` pixels smaller than an element of size 100lvh.", "typeRef": null}], [], "Allows overriding the difference between the small and large viewport sizes, which determine the value of the `svh` and `lvh` unit, respectively. Only supported for top-level frames.");
560
+ inspectorBackend.registerCommand("Emulation.getScreenInfos", [], ["screenInfos"], "Returns device's screen configuration.");
561
+ inspectorBackend.registerCommand("Emulation.addScreen", [{"name": "left", "type": "number", "optional": false, "description": "Offset of the left edge of the screen in pixels.", "typeRef": null}, {"name": "top", "type": "number", "optional": false, "description": "Offset of the top edge of the screen in pixels.", "typeRef": null}, {"name": "width", "type": "number", "optional": false, "description": "The width of the screen in pixels.", "typeRef": null}, {"name": "height", "type": "number", "optional": false, "description": "The height of the screen in pixels.", "typeRef": null}, {"name": "workAreaInsets", "type": "object", "optional": true, "description": "Specifies the screen's work area. Default is entire screen.", "typeRef": "Emulation.WorkAreaInsets"}, {"name": "devicePixelRatio", "type": "number", "optional": true, "description": "Specifies the screen's device pixel ratio. Default is 1.", "typeRef": null}, {"name": "rotation", "type": "number", "optional": true, "description": "Specifies the screen's rotation angle. Available values are 0, 90, 180 and 270. Default is 0.", "typeRef": null}, {"name": "colorDepth", "type": "number", "optional": true, "description": "Specifies the screen's color depth in bits. Default is 24.", "typeRef": null}, {"name": "label", "type": "string", "optional": true, "description": "Specifies the descriptive label for the screen. Default is none.", "typeRef": null}, {"name": "isInternal", "type": "boolean", "optional": true, "description": "Indicates whether the screen is internal to the device or external, attached to the device. Default is false.", "typeRef": null}], ["screenInfo"], "Add a new screen to the device. Only supported in headless mode.");
562
+ inspectorBackend.registerCommand("Emulation.removeScreen", [{"name": "screenId", "type": "string", "optional": false, "description": "", "typeRef": "Emulation.ScreenId"}], [], "Remove screen from the device. Only supported in headless mode.");
531
563
  inspectorBackend.registerType("Emulation.SafeAreaInsets", [{"name": "top", "type": "number", "optional": true, "description": "Overrides safe-area-inset-top.", "typeRef": null}, {"name": "topMax", "type": "number", "optional": true, "description": "Overrides safe-area-max-inset-top.", "typeRef": null}, {"name": "left", "type": "number", "optional": true, "description": "Overrides safe-area-inset-left.", "typeRef": null}, {"name": "leftMax", "type": "number", "optional": true, "description": "Overrides safe-area-max-inset-left.", "typeRef": null}, {"name": "bottom", "type": "number", "optional": true, "description": "Overrides safe-area-inset-bottom.", "typeRef": null}, {"name": "bottomMax", "type": "number", "optional": true, "description": "Overrides safe-area-max-inset-bottom.", "typeRef": null}, {"name": "right", "type": "number", "optional": true, "description": "Overrides safe-area-inset-right.", "typeRef": null}, {"name": "rightMax", "type": "number", "optional": true, "description": "Overrides safe-area-max-inset-right.", "typeRef": null}]);
532
564
  inspectorBackend.registerType("Emulation.ScreenOrientation", [{"name": "type", "type": "string", "optional": false, "description": "Orientation type.", "typeRef": null}, {"name": "angle", "type": "number", "optional": false, "description": "Orientation angle.", "typeRef": null}]);
533
565
  inspectorBackend.registerType("Emulation.DisplayFeature", [{"name": "orientation", "type": "string", "optional": false, "description": "Orientation of a display feature in relation to screen", "typeRef": null}, {"name": "offset", "type": "number", "optional": false, "description": "The offset from the screen origin in either the x (for vertical orientation) or y (for horizontal orientation) direction.", "typeRef": null}, {"name": "maskLength", "type": "number", "optional": false, "description": "A display feature may mask content such that it is not physically displayed - this length along with the offset describes this area. A display feature that only splits content will have a 0 mask_length.", "typeRef": null}]);
534
566
  inspectorBackend.registerType("Emulation.DevicePosture", [{"name": "type", "type": "string", "optional": false, "description": "Current posture of the device", "typeRef": null}]);
535
567
  inspectorBackend.registerType("Emulation.MediaFeature", [{"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "value", "type": "string", "optional": false, "description": "", "typeRef": null}]);
536
568
  inspectorBackend.registerType("Emulation.UserAgentBrandVersion", [{"name": "brand", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "version", "type": "string", "optional": false, "description": "", "typeRef": null}]);
537
- inspectorBackend.registerType("Emulation.UserAgentMetadata", [{"name": "brands", "type": "array", "optional": true, "description": "Brands appearing in Sec-CH-UA.", "typeRef": "Emulation.UserAgentBrandVersion"}, {"name": "fullVersionList", "type": "array", "optional": true, "description": "Brands appearing in Sec-CH-UA-Full-Version-List.", "typeRef": "Emulation.UserAgentBrandVersion"}, {"name": "fullVersion", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "platform", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "platformVersion", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "architecture", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "model", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "mobile", "type": "boolean", "optional": false, "description": "", "typeRef": null}, {"name": "bitness", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "wow64", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "formFactors", "type": "array", "optional": true, "description": "", "typeRef": "Emulation.UserAgentFormFactor"}]);
569
+ inspectorBackend.registerType("Emulation.UserAgentMetadata", [{"name": "brands", "type": "array", "optional": true, "description": "Brands appearing in Sec-CH-UA.", "typeRef": "Emulation.UserAgentBrandVersion"}, {"name": "fullVersionList", "type": "array", "optional": true, "description": "Brands appearing in Sec-CH-UA-Full-Version-List.", "typeRef": "Emulation.UserAgentBrandVersion"}, {"name": "fullVersion", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "platform", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "platformVersion", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "architecture", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "model", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "mobile", "type": "boolean", "optional": false, "description": "", "typeRef": null}, {"name": "bitness", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "wow64", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "formFactors", "type": "array", "optional": true, "description": "Used to specify User Agent form-factor values. See https://wicg.github.io/ua-client-hints/#sec-ch-ua-form-factors", "typeRef": "string"}]);
538
570
  inspectorBackend.registerType("Emulation.SensorMetadata", [{"name": "available", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "minimumFrequency", "type": "number", "optional": true, "description": "", "typeRef": null}, {"name": "maximumFrequency", "type": "number", "optional": true, "description": "", "typeRef": null}]);
539
571
  inspectorBackend.registerType("Emulation.SensorReadingSingle", [{"name": "value", "type": "number", "optional": false, "description": "", "typeRef": null}]);
540
572
  inspectorBackend.registerType("Emulation.SensorReadingXYZ", [{"name": "x", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "y", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "z", "type": "number", "optional": false, "description": "", "typeRef": null}]);
541
573
  inspectorBackend.registerType("Emulation.SensorReadingQuaternion", [{"name": "x", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "y", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "z", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "w", "type": "number", "optional": false, "description": "", "typeRef": null}]);
542
574
  inspectorBackend.registerType("Emulation.SensorReading", [{"name": "single", "type": "object", "optional": true, "description": "", "typeRef": "Emulation.SensorReadingSingle"}, {"name": "xyz", "type": "object", "optional": true, "description": "", "typeRef": "Emulation.SensorReadingXYZ"}, {"name": "quaternion", "type": "object", "optional": true, "description": "", "typeRef": "Emulation.SensorReadingQuaternion"}]);
543
575
  inspectorBackend.registerType("Emulation.PressureMetadata", [{"name": "available", "type": "boolean", "optional": true, "description": "", "typeRef": null}]);
576
+ inspectorBackend.registerType("Emulation.WorkAreaInsets", [{"name": "top", "type": "number", "optional": true, "description": "Work area top inset in pixels. Default is 0;", "typeRef": null}, {"name": "left", "type": "number", "optional": true, "description": "Work area left inset in pixels. Default is 0;", "typeRef": null}, {"name": "bottom", "type": "number", "optional": true, "description": "Work area bottom inset in pixels. Default is 0;", "typeRef": null}, {"name": "right", "type": "number", "optional": true, "description": "Work area right inset in pixels. Default is 0;", "typeRef": null}]);
577
+ inspectorBackend.registerType("Emulation.ScreenInfo", [{"name": "left", "type": "number", "optional": false, "description": "Offset of the left edge of the screen.", "typeRef": null}, {"name": "top", "type": "number", "optional": false, "description": "Offset of the top edge of the screen.", "typeRef": null}, {"name": "width", "type": "number", "optional": false, "description": "Width of the screen.", "typeRef": null}, {"name": "height", "type": "number", "optional": false, "description": "Height of the screen.", "typeRef": null}, {"name": "availLeft", "type": "number", "optional": false, "description": "Offset of the left edge of the available screen area.", "typeRef": null}, {"name": "availTop", "type": "number", "optional": false, "description": "Offset of the top edge of the available screen area.", "typeRef": null}, {"name": "availWidth", "type": "number", "optional": false, "description": "Width of the available screen area.", "typeRef": null}, {"name": "availHeight", "type": "number", "optional": false, "description": "Height of the available screen area.", "typeRef": null}, {"name": "devicePixelRatio", "type": "number", "optional": false, "description": "Specifies the screen's device pixel ratio.", "typeRef": null}, {"name": "orientation", "type": "object", "optional": false, "description": "Specifies the screen's orientation.", "typeRef": "Emulation.ScreenOrientation"}, {"name": "colorDepth", "type": "number", "optional": false, "description": "Specifies the screen's color depth in bits.", "typeRef": null}, {"name": "isExtended", "type": "boolean", "optional": false, "description": "Indicates whether the device has multiple screens.", "typeRef": null}, {"name": "isInternal", "type": "boolean", "optional": false, "description": "Indicates whether the screen is internal to the device or external, attached to the device.", "typeRef": null}, {"name": "isPrimary", "type": "boolean", "optional": false, "description": "Indicates whether the screen is set as the the operating system primary screen.", "typeRef": null}, {"name": "label", "type": "string", "optional": false, "description": "Specifies the descriptive label for the screen.", "typeRef": null}, {"name": "id", "type": "string", "optional": false, "description": "Specifies the unique identifier of the screen.", "typeRef": "Emulation.ScreenId"}]);
578
+
579
+ // EventBreakpoints.
580
+ inspectorBackend.registerCommand("EventBreakpoints.setInstrumentationBreakpoint", [{"name": "eventName", "type": "string", "optional": false, "description": "Instrumentation name to stop on.", "typeRef": null}], [], "Sets breakpoint on particular native event.");
581
+ inspectorBackend.registerCommand("EventBreakpoints.removeInstrumentationBreakpoint", [{"name": "eventName", "type": "string", "optional": false, "description": "Instrumentation name to stop on.", "typeRef": null}], [], "Removes breakpoint on particular native event.");
582
+ inspectorBackend.registerCommand("EventBreakpoints.disable", [], [], "Removes all breakpoints");
583
+
584
+ // Extensions.
585
+ inspectorBackend.registerEnum("Extensions.StorageArea", {Session: "session", Local: "local", Sync: "sync", Managed: "managed"});
586
+ inspectorBackend.registerCommand("Extensions.loadUnpacked", [{"name": "path", "type": "string", "optional": false, "description": "Absolute file path.", "typeRef": null}], ["id"], "Installs an unpacked extension from the filesystem similar to --load-extension CLI flags. Returns extension ID once the extension has been installed. Available if the client is connected using the --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging flag is set.");
587
+ inspectorBackend.registerCommand("Extensions.uninstall", [{"name": "id", "type": "string", "optional": false, "description": "Extension id.", "typeRef": null}], [], "Uninstalls an unpacked extension (others not supported) from the profile. Available if the client is connected using the --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging.");
588
+ inspectorBackend.registerCommand("Extensions.getStorageItems", [{"name": "id", "type": "string", "optional": false, "description": "ID of extension.", "typeRef": null}, {"name": "storageArea", "type": "string", "optional": false, "description": "StorageArea to retrieve data from.", "typeRef": "Extensions.StorageArea"}, {"name": "keys", "type": "array", "optional": true, "description": "Keys to retrieve.", "typeRef": "string"}], ["data"], "Gets data from extension storage in the given `storageArea`. If `keys` is specified, these are used to filter the result.");
589
+ inspectorBackend.registerCommand("Extensions.removeStorageItems", [{"name": "id", "type": "string", "optional": false, "description": "ID of extension.", "typeRef": null}, {"name": "storageArea", "type": "string", "optional": false, "description": "StorageArea to remove data from.", "typeRef": "Extensions.StorageArea"}, {"name": "keys", "type": "array", "optional": false, "description": "Keys to remove.", "typeRef": "string"}], [], "Removes `keys` from extension storage in the given `storageArea`.");
590
+ inspectorBackend.registerCommand("Extensions.clearStorageItems", [{"name": "id", "type": "string", "optional": false, "description": "ID of extension.", "typeRef": null}, {"name": "storageArea", "type": "string", "optional": false, "description": "StorageArea to remove data from.", "typeRef": "Extensions.StorageArea"}], [], "Clears extension storage in the given `storageArea`.");
591
+ inspectorBackend.registerCommand("Extensions.setStorageItems", [{"name": "id", "type": "string", "optional": false, "description": "ID of extension.", "typeRef": null}, {"name": "storageArea", "type": "string", "optional": false, "description": "StorageArea to set data in.", "typeRef": "Extensions.StorageArea"}, {"name": "values", "type": "object", "optional": false, "description": "Values to set.", "typeRef": null}], [], "Sets `values` in extension storage in the given `storageArea`. The provided `values` will be merged with existing values in the storage area.");
592
+
593
+ // FedCm.
594
+ inspectorBackend.registerEnum("FedCm.LoginState", {SignIn: "SignIn", SignUp: "SignUp"});
595
+ inspectorBackend.registerEnum("FedCm.DialogType", {AccountChooser: "AccountChooser", AutoReauthn: "AutoReauthn", ConfirmIdpLogin: "ConfirmIdpLogin", Error: "Error"});
596
+ inspectorBackend.registerEnum("FedCm.DialogButton", {ConfirmIdpLoginContinue: "ConfirmIdpLoginContinue", ErrorGotIt: "ErrorGotIt", ErrorMoreDetails: "ErrorMoreDetails"});
597
+ inspectorBackend.registerEnum("FedCm.AccountUrlType", {TermsOfService: "TermsOfService", PrivacyPolicy: "PrivacyPolicy"});
598
+ inspectorBackend.registerEvent("FedCm.dialogShown", ["dialogId", "dialogType", "accounts", "title", "subtitle"]);
599
+ inspectorBackend.registerEvent("FedCm.dialogClosed", ["dialogId"]);
600
+ inspectorBackend.registerCommand("FedCm.enable", [{"name": "disableRejectionDelay", "type": "boolean", "optional": true, "description": "Allows callers to disable the promise rejection delay that would normally happen, if this is unimportant to what's being tested. (step 4 of https://fedidcg.github.io/FedCM/#browser-api-rp-sign-in)", "typeRef": null}], [], "");
601
+ inspectorBackend.registerCommand("FedCm.disable", [], [], "");
602
+ inspectorBackend.registerCommand("FedCm.selectAccount", [{"name": "dialogId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "accountIndex", "type": "number", "optional": false, "description": "", "typeRef": null}], [], "");
603
+ inspectorBackend.registerCommand("FedCm.clickDialogButton", [{"name": "dialogId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "dialogButton", "type": "string", "optional": false, "description": "", "typeRef": "FedCm.DialogButton"}], [], "");
604
+ inspectorBackend.registerCommand("FedCm.openUrl", [{"name": "dialogId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "accountIndex", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "accountUrlType", "type": "string", "optional": false, "description": "", "typeRef": "FedCm.AccountUrlType"}], [], "");
605
+ inspectorBackend.registerCommand("FedCm.dismissDialog", [{"name": "dialogId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "triggerCooldown", "type": "boolean", "optional": true, "description": "", "typeRef": null}], [], "");
606
+ inspectorBackend.registerCommand("FedCm.resetCooldown", [], [], "Resets the cooldown time, if any, to allow the next FedCM call to show a dialog even if one was recently dismissed by the user.");
607
+ inspectorBackend.registerType("FedCm.Account", [{"name": "accountId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "email", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "givenName", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "pictureUrl", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "idpConfigUrl", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "idpLoginUrl", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "loginState", "type": "string", "optional": false, "description": "", "typeRef": "FedCm.LoginState"}, {"name": "termsOfServiceUrl", "type": "string", "optional": true, "description": "These two are only set if the loginState is signUp", "typeRef": null}, {"name": "privacyPolicyUrl", "type": "string", "optional": true, "description": "", "typeRef": null}]);
608
+
609
+ // Fetch.
610
+ inspectorBackend.registerEnum("Fetch.RequestStage", {Request: "Request", Response: "Response"});
611
+ inspectorBackend.registerEnum("Fetch.AuthChallengeSource", {Server: "Server", Proxy: "Proxy"});
612
+ inspectorBackend.registerEnum("Fetch.AuthChallengeResponseResponse", {Default: "Default", CancelAuth: "CancelAuth", ProvideCredentials: "ProvideCredentials"});
613
+ inspectorBackend.registerEvent("Fetch.requestPaused", ["requestId", "request", "frameId", "resourceType", "responseErrorReason", "responseStatusCode", "responseStatusText", "responseHeaders", "networkId", "redirectedRequestId"]);
614
+ inspectorBackend.registerEvent("Fetch.authRequired", ["requestId", "request", "frameId", "resourceType", "authChallenge"]);
615
+ inspectorBackend.registerCommand("Fetch.disable", [], [], "Disables the fetch domain.");
616
+ inspectorBackend.registerCommand("Fetch.enable", [{"name": "patterns", "type": "array", "optional": true, "description": "If specified, only requests matching any of these patterns will produce fetchRequested event and will be paused until clients response. If not set, all requests will be affected.", "typeRef": "Fetch.RequestPattern"}, {"name": "handleAuthRequests", "type": "boolean", "optional": true, "description": "If true, authRequired events will be issued and requests will be paused expecting a call to continueWithAuth.", "typeRef": null}], [], "Enables issuing of requestPaused events. A request will be paused until client calls one of failRequest, fulfillRequest or continueRequest/continueWithAuth.");
617
+ inspectorBackend.registerCommand("Fetch.failRequest", [{"name": "requestId", "type": "string", "optional": false, "description": "An id the client received in requestPaused event.", "typeRef": "Fetch.RequestId"}, {"name": "errorReason", "type": "string", "optional": false, "description": "Causes the request to fail with the given reason.", "typeRef": "Network.ErrorReason"}], [], "Causes the request to fail with specified reason.");
618
+ inspectorBackend.registerCommand("Fetch.fulfillRequest", [{"name": "requestId", "type": "string", "optional": false, "description": "An id the client received in requestPaused event.", "typeRef": "Fetch.RequestId"}, {"name": "responseCode", "type": "number", "optional": false, "description": "An HTTP response code.", "typeRef": null}, {"name": "responseHeaders", "type": "array", "optional": true, "description": "Response headers.", "typeRef": "Fetch.HeaderEntry"}, {"name": "binaryResponseHeaders", "type": "string", "optional": true, "description": "Alternative way of specifying response headers as a \\0-separated series of name: value pairs. Prefer the above method unless you need to represent some non-UTF8 values that can't be transmitted over the protocol as text.", "typeRef": null}, {"name": "body", "type": "string", "optional": true, "description": "A response body. If absent, original response body will be used if the request is intercepted at the response stage and empty body will be used if the request is intercepted at the request stage.", "typeRef": null}, {"name": "responsePhrase", "type": "string", "optional": true, "description": "A textual representation of responseCode. If absent, a standard phrase matching responseCode is used.", "typeRef": null}], [], "Provides response to the request.");
619
+ inspectorBackend.registerCommand("Fetch.continueRequest", [{"name": "requestId", "type": "string", "optional": false, "description": "An id the client received in requestPaused event.", "typeRef": "Fetch.RequestId"}, {"name": "url", "type": "string", "optional": true, "description": "If set, the request url will be modified in a way that's not observable by page.", "typeRef": null}, {"name": "method", "type": "string", "optional": true, "description": "If set, the request method is overridden.", "typeRef": null}, {"name": "postData", "type": "string", "optional": true, "description": "If set, overrides the post data in the request.", "typeRef": null}, {"name": "headers", "type": "array", "optional": true, "description": "If set, overrides the request headers. Note that the overrides do not extend to subsequent redirect hops, if a redirect happens. Another override may be applied to a different request produced by a redirect.", "typeRef": "Fetch.HeaderEntry"}, {"name": "interceptResponse", "type": "boolean", "optional": true, "description": "If set, overrides response interception behavior for this request.", "typeRef": null}], [], "Continues the request, optionally modifying some of its parameters.");
620
+ inspectorBackend.registerCommand("Fetch.continueWithAuth", [{"name": "requestId", "type": "string", "optional": false, "description": "An id the client received in authRequired event.", "typeRef": "Fetch.RequestId"}, {"name": "authChallengeResponse", "type": "object", "optional": false, "description": "Response to with an authChallenge.", "typeRef": "Fetch.AuthChallengeResponse"}], [], "Continues a request supplying authChallengeResponse following authRequired event.");
621
+ inspectorBackend.registerCommand("Fetch.continueResponse", [{"name": "requestId", "type": "string", "optional": false, "description": "An id the client received in requestPaused event.", "typeRef": "Fetch.RequestId"}, {"name": "responseCode", "type": "number", "optional": true, "description": "An HTTP response code. If absent, original response code will be used.", "typeRef": null}, {"name": "responsePhrase", "type": "string", "optional": true, "description": "A textual representation of responseCode. If absent, a standard phrase matching responseCode is used.", "typeRef": null}, {"name": "responseHeaders", "type": "array", "optional": true, "description": "Response headers. If absent, original response headers will be used.", "typeRef": "Fetch.HeaderEntry"}, {"name": "binaryResponseHeaders", "type": "string", "optional": true, "description": "Alternative way of specifying response headers as a \\0-separated series of name: value pairs. Prefer the above method unless you need to represent some non-UTF8 values that can't be transmitted over the protocol as text.", "typeRef": null}], [], "Continues loading of the paused response, optionally modifying the response headers. If either responseCode or headers are modified, all of them must be present.");
622
+ inspectorBackend.registerCommand("Fetch.getResponseBody", [{"name": "requestId", "type": "string", "optional": false, "description": "Identifier for the intercepted request to get body for.", "typeRef": "Fetch.RequestId"}], ["body", "base64Encoded"], "Causes the body of the response to be received from the server and returned as a single string. May only be issued for a request that is paused in the Response stage and is mutually exclusive with takeResponseBodyForInterceptionAsStream. Calling other methods that affect the request or disabling fetch domain before body is received results in an undefined behavior. Note that the response body is not available for redirects. Requests paused in the _redirect received_ state may be differentiated by `responseCode` and presence of `location` response header, see comments to `requestPaused` for details.");
623
+ inspectorBackend.registerCommand("Fetch.takeResponseBodyAsStream", [{"name": "requestId", "type": "string", "optional": false, "description": "", "typeRef": "Fetch.RequestId"}], ["stream"], "Returns a handle to the stream representing the response body. The request must be paused in the HeadersReceived stage. Note that after this command the request can't be continued as is -- client either needs to cancel it or to provide the response body. The stream only supports sequential read, IO.read will fail if the position is specified. This method is mutually exclusive with getResponseBody. Calling other methods that affect the request or disabling fetch domain before body is received results in an undefined behavior.");
624
+ inspectorBackend.registerType("Fetch.RequestPattern", [{"name": "urlPattern", "type": "string", "optional": true, "description": "Wildcards (`'*'` -> zero or more, `'?'` -> exactly one) are allowed. Escape character is backslash. Omitting is equivalent to `\\\"*\\\"`.", "typeRef": null}, {"name": "resourceType", "type": "string", "optional": true, "description": "If set, only requests for matching resource types will be intercepted.", "typeRef": "Network.ResourceType"}, {"name": "requestStage", "type": "string", "optional": true, "description": "Stage at which to begin intercepting requests. Default is Request.", "typeRef": "Fetch.RequestStage"}]);
625
+ inspectorBackend.registerType("Fetch.HeaderEntry", [{"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "value", "type": "string", "optional": false, "description": "", "typeRef": null}]);
626
+ inspectorBackend.registerType("Fetch.AuthChallenge", [{"name": "source", "type": "string", "optional": true, "description": "Source of the authentication challenge.", "typeRef": null}, {"name": "origin", "type": "string", "optional": false, "description": "Origin of the challenger.", "typeRef": null}, {"name": "scheme", "type": "string", "optional": false, "description": "The authentication scheme used, such as basic or digest", "typeRef": null}, {"name": "realm", "type": "string", "optional": false, "description": "The realm of the challenge. May be empty.", "typeRef": null}]);
627
+ inspectorBackend.registerType("Fetch.AuthChallengeResponse", [{"name": "response", "type": "string", "optional": false, "description": "The decision on what to do in response to the authorization challenge. Default means deferring to the default behavior of the net stack, which will likely either the Cancel authentication or display a popup dialog box.", "typeRef": null}, {"name": "username", "type": "string", "optional": true, "description": "The username to provide, possibly empty. Should only be set if response is ProvideCredentials.", "typeRef": null}, {"name": "password", "type": "string", "optional": true, "description": "The password to provide, possibly empty. Should only be set if response is ProvideCredentials.", "typeRef": null}]);
628
+
629
+ // FileSystem.
630
+ inspectorBackend.registerCommand("FileSystem.getDirectory", [{"name": "bucketFileSystemLocator", "type": "object", "optional": false, "description": "", "typeRef": "FileSystem.BucketFileSystemLocator"}], ["directory"], "");
631
+ inspectorBackend.registerType("FileSystem.File", [{"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "lastModified", "type": "number", "optional": false, "description": "Timestamp", "typeRef": "Network.TimeSinceEpoch"}, {"name": "size", "type": "number", "optional": false, "description": "Size in bytes", "typeRef": null}, {"name": "type", "type": "string", "optional": false, "description": "", "typeRef": null}]);
632
+ inspectorBackend.registerType("FileSystem.Directory", [{"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "nestedDirectories", "type": "array", "optional": false, "description": "", "typeRef": "string"}, {"name": "nestedFiles", "type": "array", "optional": false, "description": "Files that are directly nested under this directory.", "typeRef": "FileSystem.File"}]);
633
+ inspectorBackend.registerType("FileSystem.BucketFileSystemLocator", [{"name": "storageKey", "type": "string", "optional": false, "description": "Storage key", "typeRef": "Storage.SerializedStorageKey"}, {"name": "bucketName", "type": "string", "optional": true, "description": "Bucket name. Not passing a `bucketName` will retrieve the default Bucket. (https://developer.mozilla.org/en-US/docs/Web/API/Storage_API#storage_buckets)", "typeRef": null}, {"name": "pathComponents", "type": "array", "optional": false, "description": "Path to the directory using each path component as an array item.", "typeRef": "string"}]);
544
634
 
545
635
  // HeadlessExperimental.
546
636
  inspectorBackend.registerEnum("HeadlessExperimental.ScreenshotParamsFormat", {Jpeg: "jpeg", Png: "png", Webp: "webp"});
@@ -554,12 +644,6 @@ inspectorBackend.registerCommand("IO.close", [{"name": "handle", "type": "string
554
644
  inspectorBackend.registerCommand("IO.read", [{"name": "handle", "type": "string", "optional": false, "description": "Handle of the stream to read.", "typeRef": "IO.StreamHandle"}, {"name": "offset", "type": "number", "optional": true, "description": "Seek to the specified offset before reading (if not specified, proceed with offset following the last read). Some types of streams may only support sequential reads.", "typeRef": null}, {"name": "size", "type": "number", "optional": true, "description": "Maximum number of bytes to read (left upon the agent discretion if not specified).", "typeRef": null}], ["base64Encoded", "data", "eof"], "Read a chunk of the stream");
555
645
  inspectorBackend.registerCommand("IO.resolveBlob", [{"name": "objectId", "type": "string", "optional": false, "description": "Object id of a Blob object wrapper.", "typeRef": "Runtime.RemoteObjectId"}], ["uuid"], "Return UUID of Blob object specified by a remote object id.");
556
646
 
557
- // FileSystem.
558
- inspectorBackend.registerCommand("FileSystem.getDirectory", [{"name": "bucketFileSystemLocator", "type": "object", "optional": false, "description": "", "typeRef": "FileSystem.BucketFileSystemLocator"}], ["directory"], "");
559
- inspectorBackend.registerType("FileSystem.File", [{"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "lastModified", "type": "number", "optional": false, "description": "Timestamp", "typeRef": "Network.TimeSinceEpoch"}, {"name": "size", "type": "number", "optional": false, "description": "Size in bytes", "typeRef": null}, {"name": "type", "type": "string", "optional": false, "description": "", "typeRef": null}]);
560
- inspectorBackend.registerType("FileSystem.Directory", [{"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "nestedDirectories", "type": "array", "optional": false, "description": "", "typeRef": "string"}, {"name": "nestedFiles", "type": "array", "optional": false, "description": "Files that are directly nested under this directory.", "typeRef": "FileSystem.File"}]);
561
- inspectorBackend.registerType("FileSystem.BucketFileSystemLocator", [{"name": "storageKey", "type": "string", "optional": false, "description": "Storage key", "typeRef": "Storage.SerializedStorageKey"}, {"name": "bucketName", "type": "string", "optional": true, "description": "Bucket name. Not passing a `bucketName` will retrieve the default Bucket. (https://developer.mozilla.org/en-US/docs/Web/API/Storage_API#storage_buckets)", "typeRef": null}, {"name": "pathComponents", "type": "array", "optional": false, "description": "Path to the directory using each path component as an array item.", "typeRef": "string"}]);
562
-
563
647
  // IndexedDB.
564
648
  inspectorBackend.registerEnum("IndexedDB.KeyType", {Number: "number", String: "string", Date: "date", Array: "array"});
565
649
  inspectorBackend.registerEnum("IndexedDB.KeyPathType", {Null: "null", String: "string", Array: "array"});
@@ -647,6 +731,22 @@ inspectorBackend.registerCommand("Log.stopViolationsReport", [], [], "Stop viola
647
731
  inspectorBackend.registerType("Log.LogEntry", [{"name": "source", "type": "string", "optional": false, "description": "Log entry source.", "typeRef": null}, {"name": "level", "type": "string", "optional": false, "description": "Log entry severity.", "typeRef": null}, {"name": "text", "type": "string", "optional": false, "description": "Logged text.", "typeRef": null}, {"name": "category", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "timestamp", "type": "number", "optional": false, "description": "Timestamp when this entry was added.", "typeRef": "Runtime.Timestamp"}, {"name": "url", "type": "string", "optional": true, "description": "URL of the resource if known.", "typeRef": null}, {"name": "lineNumber", "type": "number", "optional": true, "description": "Line number in the resource.", "typeRef": null}, {"name": "stackTrace", "type": "object", "optional": true, "description": "JavaScript stack trace.", "typeRef": "Runtime.StackTrace"}, {"name": "networkRequestId", "type": "string", "optional": true, "description": "Identifier of the network request associated with this entry.", "typeRef": "Network.RequestId"}, {"name": "workerId", "type": "string", "optional": true, "description": "Identifier of the worker associated with this entry.", "typeRef": null}, {"name": "args", "type": "array", "optional": true, "description": "Call arguments.", "typeRef": "Runtime.RemoteObject"}]);
648
732
  inspectorBackend.registerType("Log.ViolationSetting", [{"name": "name", "type": "string", "optional": false, "description": "Violation type.", "typeRef": null}, {"name": "threshold", "type": "number", "optional": false, "description": "Time threshold to trigger upon.", "typeRef": null}]);
649
733
 
734
+ // Media.
735
+ inspectorBackend.registerEnum("Media.PlayerMessageLevel", {Error: "error", Warning: "warning", Info: "info", Debug: "debug"});
736
+ inspectorBackend.registerEvent("Media.playerPropertiesChanged", ["playerId", "properties"]);
737
+ inspectorBackend.registerEvent("Media.playerEventsAdded", ["playerId", "events"]);
738
+ inspectorBackend.registerEvent("Media.playerMessagesLogged", ["playerId", "messages"]);
739
+ inspectorBackend.registerEvent("Media.playerErrorsRaised", ["playerId", "errors"]);
740
+ inspectorBackend.registerEvent("Media.playerCreated", ["player"]);
741
+ inspectorBackend.registerCommand("Media.enable", [], [], "Enables the Media domain");
742
+ inspectorBackend.registerCommand("Media.disable", [], [], "Disables the Media domain.");
743
+ inspectorBackend.registerType("Media.PlayerMessage", [{"name": "level", "type": "string", "optional": false, "description": "Keep in sync with MediaLogMessageLevel We are currently keeping the message level 'error' separate from the PlayerError type because right now they represent different things, this one being a DVLOG(ERROR) style log message that gets printed based on what log level is selected in the UI, and the other is a representation of a media::PipelineStatus object. Soon however we're going to be moving away from using PipelineStatus for errors and introducing a new error type which should hopefully let us integrate the error log level into the PlayerError type.", "typeRef": null}, {"name": "message", "type": "string", "optional": false, "description": "", "typeRef": null}]);
744
+ inspectorBackend.registerType("Media.PlayerProperty", [{"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "value", "type": "string", "optional": false, "description": "", "typeRef": null}]);
745
+ inspectorBackend.registerType("Media.PlayerEvent", [{"name": "timestamp", "type": "number", "optional": false, "description": "", "typeRef": "Media.Timestamp"}, {"name": "value", "type": "string", "optional": false, "description": "", "typeRef": null}]);
746
+ inspectorBackend.registerType("Media.PlayerErrorSourceLocation", [{"name": "file", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "line", "type": "number", "optional": false, "description": "", "typeRef": null}]);
747
+ inspectorBackend.registerType("Media.PlayerError", [{"name": "errorType", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "code", "type": "number", "optional": false, "description": "Code is the numeric enum entry for a specific set of error codes, such as PipelineStatusCodes in media/base/pipeline_status.h", "typeRef": null}, {"name": "stack", "type": "array", "optional": false, "description": "A trace of where this error was caused / where it passed through.", "typeRef": "Media.PlayerErrorSourceLocation"}, {"name": "cause", "type": "array", "optional": false, "description": "Errors potentially have a root cause error, ie, a DecoderError might be caused by an WindowsError", "typeRef": "Media.PlayerError"}, {"name": "data", "type": "object", "optional": false, "description": "Extra data attached to an error, such as an HRESULT, Video Codec, etc.", "typeRef": null}]);
748
+ inspectorBackend.registerType("Media.Player", [{"name": "playerId", "type": "string", "optional": false, "description": "", "typeRef": "Media.PlayerId"}, {"name": "domNodeId", "type": "number", "optional": true, "description": "", "typeRef": "DOM.BackendNodeId"}]);
749
+
650
750
  // Memory.
651
751
  inspectorBackend.registerEnum("Memory.PressureLevel", {Moderate: "moderate", Critical: "critical"});
652
752
  inspectorBackend.registerCommand("Memory.getDOMCounters", [], ["documents", "nodes", "jsEventListeners"], "Retruns current DOM object counters.");
@@ -676,6 +776,7 @@ inspectorBackend.registerEnum("Network.ResourcePriority", {VeryLow: "VeryLow", L
676
776
  inspectorBackend.registerEnum("Network.RequestReferrerPolicy", {UnsafeUrl: "unsafe-url", NoReferrerWhenDowngrade: "no-referrer-when-downgrade", NoReferrer: "no-referrer", Origin: "origin", OriginWhenCrossOrigin: "origin-when-cross-origin", SameOrigin: "same-origin", StrictOrigin: "strict-origin", StrictOriginWhenCrossOrigin: "strict-origin-when-cross-origin"});
677
777
  inspectorBackend.registerEnum("Network.CertificateTransparencyCompliance", {Unknown: "unknown", NotCompliant: "not-compliant", Compliant: "compliant"});
678
778
  inspectorBackend.registerEnum("Network.BlockedReason", {Other: "other", Csp: "csp", MixedContent: "mixed-content", Origin: "origin", Inspector: "inspector", Integrity: "integrity", SubresourceFilter: "subresource-filter", ContentType: "content-type", CoepFrameResourceNeedsCoepHeader: "coep-frame-resource-needs-coep-header", CoopSandboxedIframeCannotNavigateToCoopPage: "coop-sandboxed-iframe-cannot-navigate-to-coop-page", CorpNotSameOrigin: "corp-not-same-origin", CorpNotSameOriginAfterDefaultedToSameOriginByCoep: "corp-not-same-origin-after-defaulted-to-same-origin-by-coep", CorpNotSameOriginAfterDefaultedToSameOriginByDip: "corp-not-same-origin-after-defaulted-to-same-origin-by-dip", CorpNotSameOriginAfterDefaultedToSameOriginByCoepAndDip: "corp-not-same-origin-after-defaulted-to-same-origin-by-coep-and-dip", CorpNotSameSite: "corp-not-same-site", SriMessageSignatureMismatch: "sri-message-signature-mismatch"});
779
+ inspectorBackend.registerEnum("Network.IpProxyStatus", {Available: "Available", FeatureNotEnabled: "FeatureNotEnabled", MaskedDomainListNotEnabled: "MaskedDomainListNotEnabled", MaskedDomainListNotPopulated: "MaskedDomainListNotPopulated", AuthTokensUnavailable: "AuthTokensUnavailable", Unavailable: "Unavailable", BypassedByDevTools: "BypassedByDevTools"});
679
780
  inspectorBackend.registerEnum("Network.CorsError", {DisallowedByMode: "DisallowedByMode", InvalidResponse: "InvalidResponse", WildcardOriginNotAllowed: "WildcardOriginNotAllowed", MissingAllowOriginHeader: "MissingAllowOriginHeader", MultipleAllowOriginValues: "MultipleAllowOriginValues", InvalidAllowOriginValue: "InvalidAllowOriginValue", AllowOriginMismatch: "AllowOriginMismatch", InvalidAllowCredentials: "InvalidAllowCredentials", CorsDisabledScheme: "CorsDisabledScheme", PreflightInvalidStatus: "PreflightInvalidStatus", PreflightDisallowedRedirect: "PreflightDisallowedRedirect", PreflightWildcardOriginNotAllowed: "PreflightWildcardOriginNotAllowed", PreflightMissingAllowOriginHeader: "PreflightMissingAllowOriginHeader", PreflightMultipleAllowOriginValues: "PreflightMultipleAllowOriginValues", PreflightInvalidAllowOriginValue: "PreflightInvalidAllowOriginValue", PreflightAllowOriginMismatch: "PreflightAllowOriginMismatch", PreflightInvalidAllowCredentials: "PreflightInvalidAllowCredentials", PreflightMissingAllowExternal: "PreflightMissingAllowExternal", PreflightInvalidAllowExternal: "PreflightInvalidAllowExternal", PreflightMissingAllowPrivateNetwork: "PreflightMissingAllowPrivateNetwork", PreflightInvalidAllowPrivateNetwork: "PreflightInvalidAllowPrivateNetwork", InvalidAllowMethodsPreflightResponse: "InvalidAllowMethodsPreflightResponse", InvalidAllowHeadersPreflightResponse: "InvalidAllowHeadersPreflightResponse", MethodDisallowedByPreflightResponse: "MethodDisallowedByPreflightResponse", HeaderDisallowedByPreflightResponse: "HeaderDisallowedByPreflightResponse", RedirectContainsCredentials: "RedirectContainsCredentials", InsecurePrivateNetwork: "InsecurePrivateNetwork", InvalidPrivateNetworkAccess: "InvalidPrivateNetworkAccess", UnexpectedPrivateNetworkAccess: "UnexpectedPrivateNetworkAccess", NoCorsRedirectModeNotFollow: "NoCorsRedirectModeNotFollow", PreflightMissingPrivateNetworkAccessId: "PreflightMissingPrivateNetworkAccessId", PreflightMissingPrivateNetworkAccessName: "PreflightMissingPrivateNetworkAccessName", PrivateNetworkAccessPermissionUnavailable: "PrivateNetworkAccessPermissionUnavailable", PrivateNetworkAccessPermissionDenied: "PrivateNetworkAccessPermissionDenied", LocalNetworkAccessPermissionDenied: "LocalNetworkAccessPermissionDenied"});
680
781
  inspectorBackend.registerEnum("Network.ServiceWorkerResponseSource", {CacheStorage: "cache-storage", HttpCache: "http-cache", FallbackCode: "fallback-code", Network: "network"});
681
782
  inspectorBackend.registerEnum("Network.TrustTokenParamsRefreshPolicy", {UseCached: "UseCached", Refresh: "Refresh"});
@@ -693,7 +794,7 @@ inspectorBackend.registerEnum("Network.SignedExchangeErrorField", {SignatureSig:
693
794
  inspectorBackend.registerEnum("Network.ContentEncoding", {Deflate: "deflate", Gzip: "gzip", Br: "br", Zstd: "zstd"});
694
795
  inspectorBackend.registerEnum("Network.DirectSocketDnsQueryType", {Ipv4: "ipv4", Ipv6: "ipv6"});
695
796
  inspectorBackend.registerEnum("Network.PrivateNetworkRequestPolicy", {Allow: "Allow", BlockFromInsecureToMorePrivate: "BlockFromInsecureToMorePrivate", WarnFromInsecureToMorePrivate: "WarnFromInsecureToMorePrivate", PreflightBlock: "PreflightBlock", PreflightWarn: "PreflightWarn", PermissionBlock: "PermissionBlock", PermissionWarn: "PermissionWarn"});
696
- inspectorBackend.registerEnum("Network.IPAddressSpace", {Local: "Local", Private: "Private", Public: "Public", Unknown: "Unknown"});
797
+ inspectorBackend.registerEnum("Network.IPAddressSpace", {Loopback: "Loopback", Local: "Local", Public: "Public", Unknown: "Unknown"});
697
798
  inspectorBackend.registerEnum("Network.CrossOriginOpenerPolicyValue", {SameOrigin: "SameOrigin", SameOriginAllowPopups: "SameOriginAllowPopups", RestrictProperties: "RestrictProperties", UnsafeNone: "UnsafeNone", SameOriginPlusCoep: "SameOriginPlusCoep", RestrictPropertiesPlusCoep: "RestrictPropertiesPlusCoep", NoopenerAllowPopups: "NoopenerAllowPopups"});
698
799
  inspectorBackend.registerEnum("Network.CrossOriginEmbedderPolicyValue", {None: "None", Credentialless: "Credentialless", RequireCorp: "RequireCorp"});
699
800
  inspectorBackend.registerEnum("Network.ContentSecurityPolicySource", {HTTP: "HTTP", Meta: "Meta"});
@@ -743,6 +844,8 @@ inspectorBackend.registerEvent("Network.subresourceWebBundleInnerResponseError",
743
844
  inspectorBackend.registerEvent("Network.reportingApiReportAdded", ["report"]);
744
845
  inspectorBackend.registerEvent("Network.reportingApiReportUpdated", ["report"]);
745
846
  inspectorBackend.registerEvent("Network.reportingApiEndpointsChangedForOrigin", ["origin", "endpoints"]);
847
+ inspectorBackend.registerCommand("Network.getIPProtectionProxyStatus", [], ["status"], "Returns enum representing if IP Proxy of requests is available or reason it is not active.");
848
+ inspectorBackend.registerCommand("Network.setIPProtectionProxyBypassEnabled", [{"name": "enabled", "type": "boolean", "optional": false, "description": "Whether IP Proxy is being bypassed by devtools; false by default.", "typeRef": null}], [], "Sets bypass IP Protection Proxy boolean.");
746
849
  inspectorBackend.registerCommand("Network.setAcceptedEncodings", [{"name": "encodings", "type": "array", "optional": false, "description": "List of accepted content encodings.", "typeRef": "Network.ContentEncoding"}], [], "Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.");
747
850
  inspectorBackend.registerCommand("Network.clearAcceptedEncodingsOverride", [], [], "Clears accepted encodings set by setAcceptedEncodings");
748
851
  inspectorBackend.registerCommand("Network.canClearBrowserCache", [], ["result"], "Tells whether clearing browser cache is supported.");
@@ -754,7 +857,7 @@ inspectorBackend.registerCommand("Network.continueInterceptedRequest", [{"name":
754
857
  inspectorBackend.registerCommand("Network.deleteCookies", [{"name": "name", "type": "string", "optional": false, "description": "Name of the cookies to remove.", "typeRef": null}, {"name": "url", "type": "string", "optional": true, "description": "If specified, deletes all the cookies with the given name where domain and path match provided URL.", "typeRef": null}, {"name": "domain", "type": "string", "optional": true, "description": "If specified, deletes only cookies with the exact domain.", "typeRef": null}, {"name": "path", "type": "string", "optional": true, "description": "If specified, deletes only cookies with the exact path.", "typeRef": null}, {"name": "partitionKey", "type": "object", "optional": true, "description": "If specified, deletes only cookies with the the given name and partitionKey where all partition key attributes match the cookie partition key attribute.", "typeRef": "Network.CookiePartitionKey"}], [], "Deletes browser cookies with matching name and url or domain/path/partitionKey pair.");
755
858
  inspectorBackend.registerCommand("Network.disable", [], [], "Disables network tracking, prevents network events from being sent to the client.");
756
859
  inspectorBackend.registerCommand("Network.emulateNetworkConditions", [{"name": "offline", "type": "boolean", "optional": false, "description": "True to emulate internet disconnection.", "typeRef": null}, {"name": "latency", "type": "number", "optional": false, "description": "Minimum latency from request sent to response headers received (ms).", "typeRef": null}, {"name": "downloadThroughput", "type": "number", "optional": false, "description": "Maximal aggregated download throughput (bytes/sec). -1 disables download throttling.", "typeRef": null}, {"name": "uploadThroughput", "type": "number", "optional": false, "description": "Maximal aggregated upload throughput (bytes/sec). -1 disables upload throttling.", "typeRef": null}, {"name": "connectionType", "type": "string", "optional": true, "description": "Connection type if known.", "typeRef": "Network.ConnectionType"}, {"name": "packetLoss", "type": "number", "optional": true, "description": "WebRTC packet loss (percent, 0-100). 0 disables packet loss emulation, 100 drops all the packets.", "typeRef": null}, {"name": "packetQueueLength", "type": "number", "optional": true, "description": "WebRTC packet queue length (packet). 0 removes any queue length limitations.", "typeRef": null}, {"name": "packetReordering", "type": "boolean", "optional": true, "description": "WebRTC packetReordering feature.", "typeRef": null}], [], "Activates emulation of network conditions.");
757
- inspectorBackend.registerCommand("Network.enable", [{"name": "maxTotalBufferSize", "type": "number", "optional": true, "description": "Buffer size in bytes to use when preserving network payloads (XHRs, etc).", "typeRef": null}, {"name": "maxResourceBufferSize", "type": "number", "optional": true, "description": "Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).", "typeRef": null}, {"name": "maxPostDataSize", "type": "number", "optional": true, "description": "Longest post body size (in bytes) that would be included in requestWillBeSent notification", "typeRef": null}, {"name": "reportDirectSocketTraffic", "type": "boolean", "optional": true, "description": "Whether DirectSocket chunk send/receive events should be reported.", "typeRef": null}], [], "Enables network tracking, network events will now be delivered to the client.");
860
+ inspectorBackend.registerCommand("Network.enable", [{"name": "maxTotalBufferSize", "type": "number", "optional": true, "description": "Buffer size in bytes to use when preserving network payloads (XHRs, etc).", "typeRef": null}, {"name": "maxResourceBufferSize", "type": "number", "optional": true, "description": "Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).", "typeRef": null}, {"name": "maxPostDataSize", "type": "number", "optional": true, "description": "Longest post body size (in bytes) that would be included in requestWillBeSent notification", "typeRef": null}, {"name": "reportDirectSocketTraffic", "type": "boolean", "optional": true, "description": "Whether DirectSocket chunk send/receive events should be reported.", "typeRef": null}, {"name": "enableDurableMessages", "type": "boolean", "optional": true, "description": "Enable storing response bodies outside of renderer, so that these survive a cross-process navigation. Requires maxTotalBufferSize to be set. Currently defaults to false.", "typeRef": null}], [], "Enables network tracking, network events will now be delivered to the client.");
758
861
  inspectorBackend.registerCommand("Network.getAllCookies", [], ["cookies"], "Returns all browser cookies. Depending on the backend support, will return detailed cookie information in the `cookies` field. Deprecated. Use Storage.getCookies instead.");
759
862
  inspectorBackend.registerCommand("Network.getCertificate", [{"name": "origin", "type": "string", "optional": false, "description": "Origin to get certificate for.", "typeRef": null}], ["tableNames"], "Returns the DER-encoded certificate.");
760
863
  inspectorBackend.registerCommand("Network.getCookies", [{"name": "urls", "type": "array", "optional": true, "description": "The list of URLs for which applicable cookies will be fetched. If not specified, it's assumed to be set to the list containing the URLs of the page and all of its subframes.", "typeRef": "string"}], ["cookies"], "Returns all browser cookies for the current URL. Depending on the backend support, will return detailed cookie information in the `cookies` field.");
@@ -786,7 +889,7 @@ inspectorBackend.registerType("Network.SecurityDetails", [{"name": "protocol", "
786
889
  inspectorBackend.registerType("Network.CorsErrorStatus", [{"name": "corsError", "type": "string", "optional": false, "description": "", "typeRef": "Network.CorsError"}, {"name": "failedParameter", "type": "string", "optional": false, "description": "", "typeRef": null}]);
787
890
  inspectorBackend.registerType("Network.TrustTokenParams", [{"name": "operation", "type": "string", "optional": false, "description": "", "typeRef": "Network.TrustTokenOperationType"}, {"name": "refreshPolicy", "type": "string", "optional": false, "description": "Only set for \\\"token-redemption\\\" operation and determine whether to request a fresh SRR or use a still valid cached SRR.", "typeRef": null}, {"name": "issuers", "type": "array", "optional": true, "description": "Origins of issuers from whom to request tokens or redemption records.", "typeRef": "string"}]);
788
891
  inspectorBackend.registerType("Network.ServiceWorkerRouterInfo", [{"name": "ruleIdMatched", "type": "number", "optional": true, "description": "ID of the rule matched. If there is a matched rule, this field will be set, otherwiser no value will be set.", "typeRef": null}, {"name": "matchedSourceType", "type": "string", "optional": true, "description": "The router source of the matched rule. If there is a matched rule, this field will be set, otherwise no value will be set.", "typeRef": "Network.ServiceWorkerRouterSource"}, {"name": "actualSourceType", "type": "string", "optional": true, "description": "The actual router source used.", "typeRef": "Network.ServiceWorkerRouterSource"}]);
789
- inspectorBackend.registerType("Network.Response", [{"name": "url", "type": "string", "optional": false, "description": "Response URL. This URL can be different from CachedResource.url in case of redirect.", "typeRef": null}, {"name": "status", "type": "number", "optional": false, "description": "HTTP response status code.", "typeRef": null}, {"name": "statusText", "type": "string", "optional": false, "description": "HTTP response status text.", "typeRef": null}, {"name": "headers", "type": "object", "optional": false, "description": "HTTP response headers.", "typeRef": "Network.Headers"}, {"name": "headersText", "type": "string", "optional": true, "description": "HTTP response headers text. This has been replaced by the headers in Network.responseReceivedExtraInfo.", "typeRef": null}, {"name": "mimeType", "type": "string", "optional": false, "description": "Resource mimeType as determined by the browser.", "typeRef": null}, {"name": "charset", "type": "string", "optional": false, "description": "Resource charset as determined by the browser (if applicable).", "typeRef": null}, {"name": "requestHeaders", "type": "object", "optional": true, "description": "Refined HTTP request headers that were actually transmitted over the network.", "typeRef": "Network.Headers"}, {"name": "requestHeadersText", "type": "string", "optional": true, "description": "HTTP request headers text. This has been replaced by the headers in Network.requestWillBeSentExtraInfo.", "typeRef": null}, {"name": "connectionReused", "type": "boolean", "optional": false, "description": "Specifies whether physical connection was actually reused for this request.", "typeRef": null}, {"name": "connectionId", "type": "number", "optional": false, "description": "Physical connection id that was actually used for this request.", "typeRef": null}, {"name": "remoteIPAddress", "type": "string", "optional": true, "description": "Remote IP address.", "typeRef": null}, {"name": "remotePort", "type": "number", "optional": true, "description": "Remote port.", "typeRef": null}, {"name": "fromDiskCache", "type": "boolean", "optional": true, "description": "Specifies that the request was served from the disk cache.", "typeRef": null}, {"name": "fromServiceWorker", "type": "boolean", "optional": true, "description": "Specifies that the request was served from the ServiceWorker.", "typeRef": null}, {"name": "fromPrefetchCache", "type": "boolean", "optional": true, "description": "Specifies that the request was served from the prefetch cache.", "typeRef": null}, {"name": "fromEarlyHints", "type": "boolean", "optional": true, "description": "Specifies that the request was served from the prefetch cache.", "typeRef": null}, {"name": "serviceWorkerRouterInfo", "type": "object", "optional": true, "description": "Information about how ServiceWorker Static Router API was used. If this field is set with `matchedSourceType` field, a matching rule is found. If this field is set without `matchedSource`, no matching rule is found. Otherwise, the API is not used.", "typeRef": "Network.ServiceWorkerRouterInfo"}, {"name": "encodedDataLength", "type": "number", "optional": false, "description": "Total number of bytes received for this request so far.", "typeRef": null}, {"name": "timing", "type": "object", "optional": true, "description": "Timing information for the given request.", "typeRef": "Network.ResourceTiming"}, {"name": "serviceWorkerResponseSource", "type": "string", "optional": true, "description": "Response source of response from ServiceWorker.", "typeRef": "Network.ServiceWorkerResponseSource"}, {"name": "responseTime", "type": "number", "optional": true, "description": "The time at which the returned response was generated.", "typeRef": "Network.TimeSinceEpoch"}, {"name": "cacheStorageCacheName", "type": "string", "optional": true, "description": "Cache Storage Cache Name.", "typeRef": null}, {"name": "protocol", "type": "string", "optional": true, "description": "Protocol used to fetch this request.", "typeRef": null}, {"name": "alternateProtocolUsage", "type": "string", "optional": true, "description": "The reason why Chrome uses a specific transport protocol for HTTP semantics.", "typeRef": "Network.AlternateProtocolUsage"}, {"name": "securityState", "type": "string", "optional": false, "description": "Security state of the request resource.", "typeRef": "Security.SecurityState"}, {"name": "securityDetails", "type": "object", "optional": true, "description": "Security details for the request.", "typeRef": "Network.SecurityDetails"}]);
892
+ inspectorBackend.registerType("Network.Response", [{"name": "url", "type": "string", "optional": false, "description": "Response URL. This URL can be different from CachedResource.url in case of redirect.", "typeRef": null}, {"name": "status", "type": "number", "optional": false, "description": "HTTP response status code.", "typeRef": null}, {"name": "statusText", "type": "string", "optional": false, "description": "HTTP response status text.", "typeRef": null}, {"name": "headers", "type": "object", "optional": false, "description": "HTTP response headers.", "typeRef": "Network.Headers"}, {"name": "headersText", "type": "string", "optional": true, "description": "HTTP response headers text. This has been replaced by the headers in Network.responseReceivedExtraInfo.", "typeRef": null}, {"name": "mimeType", "type": "string", "optional": false, "description": "Resource mimeType as determined by the browser.", "typeRef": null}, {"name": "charset", "type": "string", "optional": false, "description": "Resource charset as determined by the browser (if applicable).", "typeRef": null}, {"name": "requestHeaders", "type": "object", "optional": true, "description": "Refined HTTP request headers that were actually transmitted over the network.", "typeRef": "Network.Headers"}, {"name": "requestHeadersText", "type": "string", "optional": true, "description": "HTTP request headers text. This has been replaced by the headers in Network.requestWillBeSentExtraInfo.", "typeRef": null}, {"name": "connectionReused", "type": "boolean", "optional": false, "description": "Specifies whether physical connection was actually reused for this request.", "typeRef": null}, {"name": "connectionId", "type": "number", "optional": false, "description": "Physical connection id that was actually used for this request.", "typeRef": null}, {"name": "remoteIPAddress", "type": "string", "optional": true, "description": "Remote IP address.", "typeRef": null}, {"name": "remotePort", "type": "number", "optional": true, "description": "Remote port.", "typeRef": null}, {"name": "fromDiskCache", "type": "boolean", "optional": true, "description": "Specifies that the request was served from the disk cache.", "typeRef": null}, {"name": "fromServiceWorker", "type": "boolean", "optional": true, "description": "Specifies that the request was served from the ServiceWorker.", "typeRef": null}, {"name": "fromPrefetchCache", "type": "boolean", "optional": true, "description": "Specifies that the request was served from the prefetch cache.", "typeRef": null}, {"name": "fromEarlyHints", "type": "boolean", "optional": true, "description": "Specifies that the request was served from the prefetch cache.", "typeRef": null}, {"name": "serviceWorkerRouterInfo", "type": "object", "optional": true, "description": "Information about how ServiceWorker Static Router API was used. If this field is set with `matchedSourceType` field, a matching rule is found. If this field is set without `matchedSource`, no matching rule is found. Otherwise, the API is not used.", "typeRef": "Network.ServiceWorkerRouterInfo"}, {"name": "encodedDataLength", "type": "number", "optional": false, "description": "Total number of bytes received for this request so far.", "typeRef": null}, {"name": "timing", "type": "object", "optional": true, "description": "Timing information for the given request.", "typeRef": "Network.ResourceTiming"}, {"name": "serviceWorkerResponseSource", "type": "string", "optional": true, "description": "Response source of response from ServiceWorker.", "typeRef": "Network.ServiceWorkerResponseSource"}, {"name": "responseTime", "type": "number", "optional": true, "description": "The time at which the returned response was generated.", "typeRef": "Network.TimeSinceEpoch"}, {"name": "cacheStorageCacheName", "type": "string", "optional": true, "description": "Cache Storage Cache Name.", "typeRef": null}, {"name": "protocol", "type": "string", "optional": true, "description": "Protocol used to fetch this request.", "typeRef": null}, {"name": "alternateProtocolUsage", "type": "string", "optional": true, "description": "The reason why Chrome uses a specific transport protocol for HTTP semantics.", "typeRef": "Network.AlternateProtocolUsage"}, {"name": "securityState", "type": "string", "optional": false, "description": "Security state of the request resource.", "typeRef": "Security.SecurityState"}, {"name": "securityDetails", "type": "object", "optional": true, "description": "Security details for the request.", "typeRef": "Network.SecurityDetails"}, {"name": "isIpProtectionUsed", "type": "boolean", "optional": true, "description": "Indicates whether the request was sent through IP Protection proxies. If set to true, the request used the IP Protection privacy feature.", "typeRef": null}]);
790
893
  inspectorBackend.registerType("Network.WebSocketRequest", [{"name": "headers", "type": "object", "optional": false, "description": "HTTP request headers.", "typeRef": "Network.Headers"}]);
791
894
  inspectorBackend.registerType("Network.WebSocketResponse", [{"name": "status", "type": "number", "optional": false, "description": "HTTP response status code.", "typeRef": null}, {"name": "statusText", "type": "string", "optional": false, "description": "HTTP response status text.", "typeRef": null}, {"name": "headers", "type": "object", "optional": false, "description": "HTTP response headers.", "typeRef": "Network.Headers"}, {"name": "headersText", "type": "string", "optional": true, "description": "HTTP response headers text.", "typeRef": null}, {"name": "requestHeaders", "type": "object", "optional": true, "description": "HTTP request headers.", "typeRef": "Network.Headers"}, {"name": "requestHeadersText", "type": "string", "optional": true, "description": "HTTP request headers text.", "typeRef": null}]);
792
895
  inspectorBackend.registerType("Network.WebSocketFrame", [{"name": "opcode", "type": "number", "optional": false, "description": "WebSocket message opcode.", "typeRef": null}, {"name": "mask", "type": "boolean", "optional": false, "description": "WebSocket message mask.", "typeRef": null}, {"name": "payloadData", "type": "string", "optional": false, "description": "WebSocket message payload data. If the opcode is 1, this is a text message and payloadData is a UTF-8 string. If the opcode isn't 1, then payloadData is a base64 encoded string representing binary data.", "typeRef": null}]);
@@ -823,7 +926,7 @@ inspectorBackend.registerType("Network.LoadNetworkResourceOptions", [{"name": "d
823
926
  inspectorBackend.registerEnum("Overlay.LineStylePattern", {Dashed: "dashed", Dotted: "dotted"});
824
927
  inspectorBackend.registerEnum("Overlay.ContrastAlgorithm", {Aa: "aa", Aaa: "aaa", Apca: "apca"});
825
928
  inspectorBackend.registerEnum("Overlay.ColorFormat", {Rgb: "rgb", Hsl: "hsl", Hwb: "hwb", Hex: "hex"});
826
- inspectorBackend.registerEnum("Overlay.InspectMode", {SearchForNode: "searchForNode", SearchForUAShadowDOM: "searchForUAShadowDOM", CaptureAreaScreenshot: "captureAreaScreenshot", ShowDistances: "showDistances", None: "none"});
929
+ inspectorBackend.registerEnum("Overlay.InspectMode", {SearchForNode: "searchForNode", SearchForUAShadowDOM: "searchForUAShadowDOM", CaptureAreaScreenshot: "captureAreaScreenshot", None: "none"});
827
930
  inspectorBackend.registerEvent("Overlay.inspectNodeRequested", ["backendNodeId"]);
828
931
  inspectorBackend.registerEvent("Overlay.nodeHighlightRequested", ["nodeId"]);
829
932
  inspectorBackend.registerEvent("Overlay.screenshotRequested", ["viewport"]);
@@ -837,7 +940,7 @@ inspectorBackend.registerCommand("Overlay.hideHighlight", [], [], "Hides any hig
837
940
  inspectorBackend.registerCommand("Overlay.highlightFrame", [{"name": "frameId", "type": "string", "optional": false, "description": "Identifier of the frame to highlight.", "typeRef": "Page.FrameId"}, {"name": "contentColor", "type": "object", "optional": true, "description": "The content box highlight fill color (default: transparent).", "typeRef": "DOM.RGBA"}, {"name": "contentOutlineColor", "type": "object", "optional": true, "description": "The content box highlight outline color (default: transparent).", "typeRef": "DOM.RGBA"}], [], "Highlights owner element of the frame with given id. Deprecated: Doesn't work reliably and cannot be fixed due to process separation (the owner node might be in a different process). Determine the owner node in the client and use highlightNode.");
838
941
  inspectorBackend.registerCommand("Overlay.highlightNode", [{"name": "highlightConfig", "type": "object", "optional": false, "description": "A descriptor for the highlight appearance.", "typeRef": "Overlay.HighlightConfig"}, {"name": "nodeId", "type": "number", "optional": true, "description": "Identifier of the node to highlight.", "typeRef": "DOM.NodeId"}, {"name": "backendNodeId", "type": "number", "optional": true, "description": "Identifier of the backend node to highlight.", "typeRef": "DOM.BackendNodeId"}, {"name": "objectId", "type": "string", "optional": true, "description": "JavaScript object id of the node to be highlighted.", "typeRef": "Runtime.RemoteObjectId"}, {"name": "selector", "type": "string", "optional": true, "description": "Selectors to highlight relevant nodes.", "typeRef": null}], [], "Highlights DOM node with given id or with the given JavaScript object wrapper. Either nodeId or objectId must be specified.");
839
942
  inspectorBackend.registerCommand("Overlay.highlightQuad", [{"name": "quad", "type": "array", "optional": false, "description": "Quad to highlight", "typeRef": "DOM.Quad"}, {"name": "color", "type": "object", "optional": true, "description": "The highlight fill color (default: transparent).", "typeRef": "DOM.RGBA"}, {"name": "outlineColor", "type": "object", "optional": true, "description": "The highlight outline color (default: transparent).", "typeRef": "DOM.RGBA"}], [], "Highlights given quad. Coordinates are absolute with respect to the main frame viewport.");
840
- inspectorBackend.registerCommand("Overlay.highlightRect", [{"name": "x", "type": "number", "optional": false, "description": "X coordinate", "typeRef": null}, {"name": "y", "type": "number", "optional": false, "description": "Y coordinate", "typeRef": null}, {"name": "width", "type": "number", "optional": false, "description": "Rectangle width", "typeRef": null}, {"name": "height", "type": "number", "optional": false, "description": "Rectangle height", "typeRef": null}, {"name": "color", "type": "object", "optional": true, "description": "The highlight fill color (default: transparent).", "typeRef": "DOM.RGBA"}, {"name": "outlineColor", "type": "object", "optional": true, "description": "The highlight outline color (default: transparent).", "typeRef": "DOM.RGBA"}], [], "Highlights given rectangle. Coordinates are absolute with respect to the main frame viewport.");
943
+ inspectorBackend.registerCommand("Overlay.highlightRect", [{"name": "x", "type": "number", "optional": false, "description": "X coordinate", "typeRef": null}, {"name": "y", "type": "number", "optional": false, "description": "Y coordinate", "typeRef": null}, {"name": "width", "type": "number", "optional": false, "description": "Rectangle width", "typeRef": null}, {"name": "height", "type": "number", "optional": false, "description": "Rectangle height", "typeRef": null}, {"name": "color", "type": "object", "optional": true, "description": "The highlight fill color (default: transparent).", "typeRef": "DOM.RGBA"}, {"name": "outlineColor", "type": "object", "optional": true, "description": "The highlight outline color (default: transparent).", "typeRef": "DOM.RGBA"}], [], "Highlights given rectangle. Coordinates are absolute with respect to the main frame viewport. Issue: the method does not handle device pixel ratio (DPR) correctly. The coordinates currently have to be adjusted by the client if DPR is not 1 (see crbug.com/437807128).");
841
944
  inspectorBackend.registerCommand("Overlay.highlightSourceOrder", [{"name": "sourceOrderConfig", "type": "object", "optional": false, "description": "A descriptor for the appearance of the overlay drawing.", "typeRef": "Overlay.SourceOrderConfig"}, {"name": "nodeId", "type": "number", "optional": true, "description": "Identifier of the node to highlight.", "typeRef": "DOM.NodeId"}, {"name": "backendNodeId", "type": "number", "optional": true, "description": "Identifier of the backend node to highlight.", "typeRef": "DOM.BackendNodeId"}, {"name": "objectId", "type": "string", "optional": true, "description": "JavaScript object id of the node to be highlighted.", "typeRef": "Runtime.RemoteObjectId"}], [], "Highlights the source order of the children of the DOM node with given id or with the given JavaScript object wrapper. Either nodeId or objectId must be specified.");
842
945
  inspectorBackend.registerCommand("Overlay.setInspectMode", [{"name": "mode", "type": "string", "optional": false, "description": "Set an inspection mode.", "typeRef": "Overlay.InspectMode"}, {"name": "highlightConfig", "type": "object", "optional": true, "description": "A descriptor for the highlight appearance of hovered-over nodes. May be omitted if `enabled == false`.", "typeRef": "Overlay.HighlightConfig"}], [], "Enters the 'inspect' mode. In this mode, elements that user is hovering over are highlighted. Backend then generates 'inspectNodeRequested' event upon element selection.");
843
946
  inspectorBackend.registerCommand("Overlay.setShowAdHighlights", [{"name": "show", "type": "boolean", "optional": false, "description": "True for showing ad highlights", "typeRef": null}], [], "Highlights owner element of all frames detected to be ads.");
@@ -875,13 +978,25 @@ inspectorBackend.registerType("Overlay.ContainerQueryContainerHighlightConfig",
875
978
  inspectorBackend.registerType("Overlay.IsolatedElementHighlightConfig", [{"name": "isolationModeHighlightConfig", "type": "object", "optional": false, "description": "A descriptor for the highlight appearance of an element in isolation mode.", "typeRef": "Overlay.IsolationModeHighlightConfig"}, {"name": "nodeId", "type": "number", "optional": false, "description": "Identifier of the isolated element to highlight.", "typeRef": "DOM.NodeId"}]);
876
979
  inspectorBackend.registerType("Overlay.IsolationModeHighlightConfig", [{"name": "resizerColor", "type": "object", "optional": true, "description": "The fill color of the resizers (default: transparent).", "typeRef": "DOM.RGBA"}, {"name": "resizerHandleColor", "type": "object", "optional": true, "description": "The fill color for resizer handles (default: transparent).", "typeRef": "DOM.RGBA"}, {"name": "maskColor", "type": "object", "optional": true, "description": "The fill color for the mask covering non-isolated elements (default: transparent).", "typeRef": "DOM.RGBA"}]);
877
980
 
981
+ // PWA.
982
+ inspectorBackend.registerEnum("PWA.DisplayMode", {Standalone: "standalone", Browser: "browser"});
983
+ inspectorBackend.registerCommand("PWA.getOsAppState", [{"name": "manifestId", "type": "string", "optional": false, "description": "The id from the webapp's manifest file, commonly it's the url of the site installing the webapp. See https://web.dev/learn/pwa/web-app-manifest.", "typeRef": null}], ["badgeCount", "fileHandlers"], "Returns the following OS state for the given manifest id.");
984
+ inspectorBackend.registerCommand("PWA.install", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "installUrlOrBundleUrl", "type": "string", "optional": true, "description": "The location of the app or bundle overriding the one derived from the manifestId.", "typeRef": null}], [], "Installs the given manifest identity, optionally using the given installUrlOrBundleUrl IWA-specific install description: manifestId corresponds to isolated-app:// + web_package::SignedWebBundleId File installation mode: The installUrlOrBundleUrl can be either file:// or http(s):// pointing to a signed web bundle (.swbn). In this case SignedWebBundleId must correspond to The .swbn file's signing key. Dev proxy installation mode: installUrlOrBundleUrl must be http(s):// that serves dev mode IWA. web_package::SignedWebBundleId must be of type dev proxy. The advantage of dev proxy mode is that all changes to IWA automatically will be reflected in the running app without reinstallation. To generate bundle id for proxy mode: 1. Generate 32 random bytes. 2. Add a specific suffix 0x00 at the end. 3. Encode the entire sequence using Base32 without padding. If Chrome is not in IWA dev mode, the installation will fail, regardless of the state of the allowlist.");
985
+ inspectorBackend.registerCommand("PWA.uninstall", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Uninstalls the given manifest_id and closes any opened app windows.");
986
+ inspectorBackend.registerCommand("PWA.launch", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "url", "type": "string", "optional": true, "description": "", "typeRef": null}], ["targetId"], "Launches the installed web app, or an url in the same web app instead of the default start url if it is provided. Returns a page Target.TargetID which can be used to attach to via Target.attachToTarget or similar APIs.");
987
+ inspectorBackend.registerCommand("PWA.launchFilesInApp", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "files", "type": "array", "optional": false, "description": "", "typeRef": "string"}], ["targetIds"], "Opens one or more local files from an installed web app identified by its manifestId. The web app needs to have file handlers registered to process the files. The API returns one or more page Target.TargetIDs which can be used to attach to via Target.attachToTarget or similar APIs. If some files in the parameters cannot be handled by the web app, they will be ignored. If none of the files can be handled, this API returns an error. If no files are provided as the parameter, this API also returns an error. According to the definition of the file handlers in the manifest file, one Target.TargetID may represent a page handling one or more files. The order of the returned Target.TargetIDs is not guaranteed. TODO(crbug.com/339454034): Check the existences of the input files.");
988
+ inspectorBackend.registerCommand("PWA.openCurrentPageInApp", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Opens the current page in its web app identified by the manifest id, needs to be called on a page target. This function returns immediately without waiting for the app to finish loading.");
989
+ inspectorBackend.registerCommand("PWA.changeAppUserSettings", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "linkCapturing", "type": "boolean", "optional": true, "description": "If user allows the links clicked on by the user in the app's scope, or extended scope if the manifest has scope extensions and the flags `DesktopPWAsLinkCapturingWithScopeExtensions` and `WebAppEnableScopeExtensions` are enabled. Note, the API does not support resetting the linkCapturing to the initial value, uninstalling and installing the web app again will reset it. TODO(crbug.com/339453269): Setting this value on ChromeOS is not supported yet.", "typeRef": null}, {"name": "displayMode", "type": "string", "optional": true, "description": "", "typeRef": "PWA.DisplayMode"}], [], "Changes user settings of the web app identified by its manifestId. If the app was not installed, this command returns an error. Unset parameters will be ignored; unrecognized values will cause an error. Unlike the ones defined in the manifest files of the web apps, these settings are provided by the browser and controlled by the users, they impact the way the browser handling the web apps. See the comment of each parameter.");
990
+ inspectorBackend.registerType("PWA.FileHandlerAccept", [{"name": "mediaType", "type": "string", "optional": false, "description": "New name of the mimetype according to https://www.iana.org/assignments/media-types/media-types.xhtml", "typeRef": null}, {"name": "fileExtensions", "type": "array", "optional": false, "description": "", "typeRef": "string"}]);
991
+ inspectorBackend.registerType("PWA.FileHandler", [{"name": "action", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "accepts", "type": "array", "optional": false, "description": "", "typeRef": "PWA.FileHandlerAccept"}, {"name": "displayName", "type": "string", "optional": false, "description": "", "typeRef": null}]);
992
+
878
993
  // Page.
879
994
  inspectorBackend.registerEnum("Page.AdFrameType", {None: "none", Child: "child", Root: "root"});
880
995
  inspectorBackend.registerEnum("Page.AdFrameExplanation", {ParentIsAd: "ParentIsAd", CreatedByAdScript: "CreatedByAdScript", MatchedBlockingRule: "MatchedBlockingRule"});
881
996
  inspectorBackend.registerEnum("Page.SecureContextType", {Secure: "Secure", SecureLocalhost: "SecureLocalhost", InsecureScheme: "InsecureScheme", InsecureAncestor: "InsecureAncestor"});
882
997
  inspectorBackend.registerEnum("Page.CrossOriginIsolatedContextType", {Isolated: "Isolated", NotIsolated: "NotIsolated", NotIsolatedFeatureDisabled: "NotIsolatedFeatureDisabled"});
883
998
  inspectorBackend.registerEnum("Page.GatedAPIFeatures", {SharedArrayBuffers: "SharedArrayBuffers", SharedArrayBuffersTransferAllowed: "SharedArrayBuffersTransferAllowed", PerformanceMeasureMemory: "PerformanceMeasureMemory", PerformanceProfile: "PerformanceProfile"});
884
- inspectorBackend.registerEnum("Page.PermissionsPolicyFeature", {Accelerometer: "accelerometer", AllScreensCapture: "all-screens-capture", AmbientLightSensor: "ambient-light-sensor", AttributionReporting: "attribution-reporting", Autoplay: "autoplay", Bluetooth: "bluetooth", BrowsingTopics: "browsing-topics", Camera: "camera", CapturedSurfaceControl: "captured-surface-control", ChDpr: "ch-dpr", ChDeviceMemory: "ch-device-memory", ChDownlink: "ch-downlink", ChEct: "ch-ect", ChPrefersColorScheme: "ch-prefers-color-scheme", ChPrefersReducedMotion: "ch-prefers-reduced-motion", ChPrefersReducedTransparency: "ch-prefers-reduced-transparency", ChRtt: "ch-rtt", ChSaveData: "ch-save-data", ChUa: "ch-ua", ChUaArch: "ch-ua-arch", ChUaBitness: "ch-ua-bitness", ChUaHighEntropyValues: "ch-ua-high-entropy-values", ChUaPlatform: "ch-ua-platform", ChUaModel: "ch-ua-model", ChUaMobile: "ch-ua-mobile", ChUaFormFactors: "ch-ua-form-factors", ChUaFullVersion: "ch-ua-full-version", ChUaFullVersionList: "ch-ua-full-version-list", ChUaPlatformVersion: "ch-ua-platform-version", ChUaWow64: "ch-ua-wow64", ChViewportHeight: "ch-viewport-height", ChViewportWidth: "ch-viewport-width", ChWidth: "ch-width", ClipboardRead: "clipboard-read", ClipboardWrite: "clipboard-write", ComputePressure: "compute-pressure", ControlledFrame: "controlled-frame", CrossOriginIsolated: "cross-origin-isolated", DeferredFetch: "deferred-fetch", DeferredFetchMinimal: "deferred-fetch-minimal", DeviceAttributes: "device-attributes", DigitalCredentialsGet: "digital-credentials-get", DirectSockets: "direct-sockets", DirectSocketsPrivate: "direct-sockets-private", DisplayCapture: "display-capture", DocumentDomain: "document-domain", EncryptedMedia: "encrypted-media", ExecutionWhileOutOfViewport: "execution-while-out-of-viewport", ExecutionWhileNotRendered: "execution-while-not-rendered", FencedUnpartitionedStorageRead: "fenced-unpartitioned-storage-read", FocusWithoutUserActivation: "focus-without-user-activation", Fullscreen: "fullscreen", Frobulate: "frobulate", Gamepad: "gamepad", Geolocation: "geolocation", Gyroscope: "gyroscope", Hid: "hid", IdentityCredentialsGet: "identity-credentials-get", IdleDetection: "idle-detection", InterestCohort: "interest-cohort", JoinAdInterestGroup: "join-ad-interest-group", KeyboardMap: "keyboard-map", LanguageDetector: "language-detector", LanguageModel: "language-model", LocalFonts: "local-fonts", LocalNetworkAccess: "local-network-access", Magnetometer: "magnetometer", MediaPlaybackWhileNotVisible: "media-playback-while-not-visible", Microphone: "microphone", Midi: "midi", OnDeviceSpeechRecognition: "on-device-speech-recognition", OtpCredentials: "otp-credentials", Payment: "payment", PictureInPicture: "picture-in-picture", Popins: "popins", PrivateAggregation: "private-aggregation", PrivateStateTokenIssuance: "private-state-token-issuance", PrivateStateTokenRedemption: "private-state-token-redemption", PublickeyCredentialsCreate: "publickey-credentials-create", PublickeyCredentialsGet: "publickey-credentials-get", RecordAdAuctionEvents: "record-ad-auction-events", Rewriter: "rewriter", RunAdAuction: "run-ad-auction", ScreenWakeLock: "screen-wake-lock", Serial: "serial", SharedAutofill: "shared-autofill", SharedStorage: "shared-storage", SharedStorageSelectUrl: "shared-storage-select-url", SmartCard: "smart-card", SpeakerSelection: "speaker-selection", StorageAccess: "storage-access", SubApps: "sub-apps", Summarizer: "summarizer", SyncXhr: "sync-xhr", Translator: "translator", Unload: "unload", Usb: "usb", UsbUnrestricted: "usb-unrestricted", VerticalScroll: "vertical-scroll", WebAppInstallation: "web-app-installation", WebPrinting: "web-printing", WebShare: "web-share", WindowManagement: "window-management", Writer: "writer", XrSpatialTracking: "xr-spatial-tracking"});
999
+ inspectorBackend.registerEnum("Page.PermissionsPolicyFeature", {Accelerometer: "accelerometer", AllScreensCapture: "all-screens-capture", AmbientLightSensor: "ambient-light-sensor", AriaNotify: "aria-notify", AttributionReporting: "attribution-reporting", Autoplay: "autoplay", Bluetooth: "bluetooth", BrowsingTopics: "browsing-topics", Camera: "camera", CapturedSurfaceControl: "captured-surface-control", ChDpr: "ch-dpr", ChDeviceMemory: "ch-device-memory", ChDownlink: "ch-downlink", ChEct: "ch-ect", ChPrefersColorScheme: "ch-prefers-color-scheme", ChPrefersReducedMotion: "ch-prefers-reduced-motion", ChPrefersReducedTransparency: "ch-prefers-reduced-transparency", ChRtt: "ch-rtt", ChSaveData: "ch-save-data", ChUa: "ch-ua", ChUaArch: "ch-ua-arch", ChUaBitness: "ch-ua-bitness", ChUaHighEntropyValues: "ch-ua-high-entropy-values", ChUaPlatform: "ch-ua-platform", ChUaModel: "ch-ua-model", ChUaMobile: "ch-ua-mobile", ChUaFormFactors: "ch-ua-form-factors", ChUaFullVersion: "ch-ua-full-version", ChUaFullVersionList: "ch-ua-full-version-list", ChUaPlatformVersion: "ch-ua-platform-version", ChUaWow64: "ch-ua-wow64", ChViewportHeight: "ch-viewport-height", ChViewportWidth: "ch-viewport-width", ChWidth: "ch-width", ClipboardRead: "clipboard-read", ClipboardWrite: "clipboard-write", ComputePressure: "compute-pressure", ControlledFrame: "controlled-frame", CrossOriginIsolated: "cross-origin-isolated", DeferredFetch: "deferred-fetch", DeferredFetchMinimal: "deferred-fetch-minimal", DeviceAttributes: "device-attributes", DigitalCredentialsCreate: "digital-credentials-create", DigitalCredentialsGet: "digital-credentials-get", DirectSockets: "direct-sockets", DirectSocketsPrivate: "direct-sockets-private", DisplayCapture: "display-capture", DocumentDomain: "document-domain", EncryptedMedia: "encrypted-media", ExecutionWhileOutOfViewport: "execution-while-out-of-viewport", ExecutionWhileNotRendered: "execution-while-not-rendered", FencedUnpartitionedStorageRead: "fenced-unpartitioned-storage-read", FocusWithoutUserActivation: "focus-without-user-activation", Fullscreen: "fullscreen", Frobulate: "frobulate", Gamepad: "gamepad", Geolocation: "geolocation", Gyroscope: "gyroscope", Hid: "hid", IdentityCredentialsGet: "identity-credentials-get", IdleDetection: "idle-detection", InterestCohort: "interest-cohort", JoinAdInterestGroup: "join-ad-interest-group", KeyboardMap: "keyboard-map", LanguageDetector: "language-detector", LanguageModel: "language-model", LocalFonts: "local-fonts", LocalNetworkAccess: "local-network-access", Magnetometer: "magnetometer", MediaPlaybackWhileNotVisible: "media-playback-while-not-visible", Microphone: "microphone", Midi: "midi", OnDeviceSpeechRecognition: "on-device-speech-recognition", OtpCredentials: "otp-credentials", Payment: "payment", PictureInPicture: "picture-in-picture", Popins: "popins", PrivateAggregation: "private-aggregation", PrivateStateTokenIssuance: "private-state-token-issuance", PrivateStateTokenRedemption: "private-state-token-redemption", PublickeyCredentialsCreate: "publickey-credentials-create", PublickeyCredentialsGet: "publickey-credentials-get", RecordAdAuctionEvents: "record-ad-auction-events", Rewriter: "rewriter", RunAdAuction: "run-ad-auction", ScreenWakeLock: "screen-wake-lock", Serial: "serial", SharedAutofill: "shared-autofill", SharedStorage: "shared-storage", SharedStorageSelectUrl: "shared-storage-select-url", SmartCard: "smart-card", SpeakerSelection: "speaker-selection", StorageAccess: "storage-access", SubApps: "sub-apps", Summarizer: "summarizer", SyncXhr: "sync-xhr", Translator: "translator", Unload: "unload", Usb: "usb", UsbUnrestricted: "usb-unrestricted", VerticalScroll: "vertical-scroll", WebAppInstallation: "web-app-installation", WebPrinting: "web-printing", WebShare: "web-share", WindowManagement: "window-management", Writer: "writer", XrSpatialTracking: "xr-spatial-tracking"});
885
1000
  inspectorBackend.registerEnum("Page.PermissionsPolicyBlockReason", {Header: "Header", IframeAttribute: "IframeAttribute", InFencedFrameTree: "InFencedFrameTree", InIsolatedApp: "InIsolatedApp"});
886
1001
  inspectorBackend.registerEnum("Page.OriginTrialTokenStatus", {Success: "Success", NotSupported: "NotSupported", Insecure: "Insecure", Expired: "Expired", WrongOrigin: "WrongOrigin", InvalidSignature: "InvalidSignature", Malformed: "Malformed", WrongVersion: "WrongVersion", FeatureDisabled: "FeatureDisabled", TokenDisabled: "TokenDisabled", FeatureDisabledForUser: "FeatureDisabledForUser", UnknownTrial: "UnknownTrial"});
887
1002
  inspectorBackend.registerEnum("Page.OriginTrialStatus", {Enabled: "Enabled", ValidTokenNotProvided: "ValidTokenNotProvided", OSNotSupported: "OSNotSupported", TrialNotAllowed: "TrialNotAllowed"});
@@ -891,9 +1006,8 @@ inspectorBackend.registerEnum("Page.DialogType", {Alert: "alert", Confirm: "conf
891
1006
  inspectorBackend.registerEnum("Page.ClientNavigationReason", {AnchorClick: "anchorClick", FormSubmissionGet: "formSubmissionGet", FormSubmissionPost: "formSubmissionPost", HttpHeaderRefresh: "httpHeaderRefresh", InitialFrameNavigation: "initialFrameNavigation", MetaTagRefresh: "metaTagRefresh", Other: "other", PageBlockInterstitial: "pageBlockInterstitial", Reload: "reload", ScriptInitiated: "scriptInitiated"});
892
1007
  inspectorBackend.registerEnum("Page.ClientNavigationDisposition", {CurrentTab: "currentTab", NewTab: "newTab", NewWindow: "newWindow", Download: "download"});
893
1008
  inspectorBackend.registerEnum("Page.ReferrerPolicy", {NoReferrer: "noReferrer", NoReferrerWhenDowngrade: "noReferrerWhenDowngrade", Origin: "origin", OriginWhenCrossOrigin: "originWhenCrossOrigin", SameOrigin: "sameOrigin", StrictOrigin: "strictOrigin", StrictOriginWhenCrossOrigin: "strictOriginWhenCrossOrigin", UnsafeUrl: "unsafeUrl"});
894
- inspectorBackend.registerEnum("Page.AutoResponseMode", {None: "none", AutoAccept: "autoAccept", AutoReject: "autoReject", AutoOptOut: "autoOptOut"});
895
1009
  inspectorBackend.registerEnum("Page.NavigationType", {Navigation: "Navigation", BackForwardCacheRestore: "BackForwardCacheRestore"});
896
- inspectorBackend.registerEnum("Page.BackForwardCacheNotRestoredReason", {NotPrimaryMainFrame: "NotPrimaryMainFrame", BackForwardCacheDisabled: "BackForwardCacheDisabled", RelatedActiveContentsExist: "RelatedActiveContentsExist", HTTPStatusNotOK: "HTTPStatusNotOK", SchemeNotHTTPOrHTTPS: "SchemeNotHTTPOrHTTPS", Loading: "Loading", WasGrantedMediaAccess: "WasGrantedMediaAccess", DisableForRenderFrameHostCalled: "DisableForRenderFrameHostCalled", DomainNotAllowed: "DomainNotAllowed", HTTPMethodNotGET: "HTTPMethodNotGET", SubframeIsNavigating: "SubframeIsNavigating", Timeout: "Timeout", CacheLimit: "CacheLimit", JavaScriptExecution: "JavaScriptExecution", RendererProcessKilled: "RendererProcessKilled", RendererProcessCrashed: "RendererProcessCrashed", SchedulerTrackedFeatureUsed: "SchedulerTrackedFeatureUsed", ConflictingBrowsingInstance: "ConflictingBrowsingInstance", CacheFlushed: "CacheFlushed", ServiceWorkerVersionActivation: "ServiceWorkerVersionActivation", SessionRestored: "SessionRestored", ServiceWorkerPostMessage: "ServiceWorkerPostMessage", EnteredBackForwardCacheBeforeServiceWorkerHostAdded: "EnteredBackForwardCacheBeforeServiceWorkerHostAdded", RenderFrameHostReused_SameSite: "RenderFrameHostReused_SameSite", RenderFrameHostReused_CrossSite: "RenderFrameHostReused_CrossSite", ServiceWorkerClaim: "ServiceWorkerClaim", IgnoreEventAndEvict: "IgnoreEventAndEvict", HaveInnerContents: "HaveInnerContents", TimeoutPuttingInCache: "TimeoutPuttingInCache", BackForwardCacheDisabledByLowMemory: "BackForwardCacheDisabledByLowMemory", BackForwardCacheDisabledByCommandLine: "BackForwardCacheDisabledByCommandLine", NetworkRequestDatAPIpeDrainedAsBytesConsumer: "NetworkRequestDatapipeDrainedAsBytesConsumer", NetworkRequestRedirected: "NetworkRequestRedirected", NetworkRequestTimeout: "NetworkRequestTimeout", NetworkExceedsBufferLimit: "NetworkExceedsBufferLimit", NavigationCancelledWhileRestoring: "NavigationCancelledWhileRestoring", NotMostRecentNavigationEntry: "NotMostRecentNavigationEntry", BackForwardCacheDisabledForPrerender: "BackForwardCacheDisabledForPrerender", UserAgentOverrideDiffers: "UserAgentOverrideDiffers", ForegroundCacheLimit: "ForegroundCacheLimit", BrowsingInstanceNotSwapped: "BrowsingInstanceNotSwapped", BackForwardCacheDisabledForDelegate: "BackForwardCacheDisabledForDelegate", UnloadHandlerExistsInMainFrame: "UnloadHandlerExistsInMainFrame", UnloadHandlerExistsInSubFrame: "UnloadHandlerExistsInSubFrame", ServiceWorkerUnregistration: "ServiceWorkerUnregistration", CacheControlNoStore: "CacheControlNoStore", CacheControlNoStoreCookieModified: "CacheControlNoStoreCookieModified", CacheControlNoStoreHTTPOnlyCookieModified: "CacheControlNoStoreHTTPOnlyCookieModified", NoResponseHead: "NoResponseHead", Unknown: "Unknown", ActivationNavigationsDisallowedForBug1234857: "ActivationNavigationsDisallowedForBug1234857", ErrorDocument: "ErrorDocument", FencedFramesEmbedder: "FencedFramesEmbedder", CookieDisabled: "CookieDisabled", HTTPAuthRequired: "HTTPAuthRequired", CookieFlushed: "CookieFlushed", BroadcastChannelOnMessage: "BroadcastChannelOnMessage", WebViewSettingsChanged: "WebViewSettingsChanged", WebViewJavaScriptObjectChanged: "WebViewJavaScriptObjectChanged", WebViewMessageListenerInjected: "WebViewMessageListenerInjected", WebViewSafeBrowsingAllowlistChanged: "WebViewSafeBrowsingAllowlistChanged", WebViewDocumentStartJavascriptChanged: "WebViewDocumentStartJavascriptChanged", WebSocket: "WebSocket", WebTransport: "WebTransport", WebRTC: "WebRTC", MainResourceHasCacheControlNoStore: "MainResourceHasCacheControlNoStore", MainResourceHasCacheControlNoCache: "MainResourceHasCacheControlNoCache", SubresourceHasCacheControlNoStore: "SubresourceHasCacheControlNoStore", SubresourceHasCacheControlNoCache: "SubresourceHasCacheControlNoCache", ContainsPlugins: "ContainsPlugins", DocumentLoaded: "DocumentLoaded", OutstandingNetworkRequestOthers: "OutstandingNetworkRequestOthers", RequestedMIDIPermission: "RequestedMIDIPermission", RequestedAudioCapturePermission: "RequestedAudioCapturePermission", RequestedVideoCapturePermission: "RequestedVideoCapturePermission", RequestedBackForwardCacheBlockedSensors: "RequestedBackForwardCacheBlockedSensors", RequestedBackgroundWorkPermission: "RequestedBackgroundWorkPermission", BroadcastChannel: "BroadcastChannel", WebXR: "WebXR", SharedWorker: "SharedWorker", WebLocks: "WebLocks", WebHID: "WebHID", WebShare: "WebShare", RequestedStorageAccessGrant: "RequestedStorageAccessGrant", WebNfc: "WebNfc", OutstandingNetworkRequestFetch: "OutstandingNetworkRequestFetch", OutstandingNetworkRequestXHR: "OutstandingNetworkRequestXHR", AppBanner: "AppBanner", Printing: "Printing", WebDatabase: "WebDatabase", PictureInPicture: "PictureInPicture", SpeechRecognizer: "SpeechRecognizer", IdleManager: "IdleManager", PaymentManager: "PaymentManager", SpeechSynthesis: "SpeechSynthesis", KeyboardLock: "KeyboardLock", WebOTPService: "WebOTPService", OutstandingNetworkRequestDirectSocket: "OutstandingNetworkRequestDirectSocket", InjectedJavascript: "InjectedJavascript", InjectedStyleSheet: "InjectedStyleSheet", KeepaliveRequest: "KeepaliveRequest", IndexedDBEvent: "IndexedDBEvent", Dummy: "Dummy", JsNetworkRequestReceivedCacheControlNoStoreResource: "JsNetworkRequestReceivedCacheControlNoStoreResource", WebRTCSticky: "WebRTCSticky", WebTransportSticky: "WebTransportSticky", WebSocketSticky: "WebSocketSticky", SmartCard: "SmartCard", LiveMediaStreamTrack: "LiveMediaStreamTrack", UnloadHandler: "UnloadHandler", ParserAborted: "ParserAborted", ContentSecurityHandler: "ContentSecurityHandler", ContentWebAuthenticationAPI: "ContentWebAuthenticationAPI", ContentFileChooser: "ContentFileChooser", ContentSerial: "ContentSerial", ContentFileSystemAccess: "ContentFileSystemAccess", ContentMediaDevicesDispatcherHost: "ContentMediaDevicesDispatcherHost", ContentWebBluetooth: "ContentWebBluetooth", ContentWebUSB: "ContentWebUSB", ContentMediaSessionService: "ContentMediaSessionService", ContentScreenReader: "ContentScreenReader", ContentDiscarded: "ContentDiscarded", EmbedderPopupBlockerTabHelper: "EmbedderPopupBlockerTabHelper", EmbedderSafeBrowsingTriggeredPopupBlocker: "EmbedderSafeBrowsingTriggeredPopupBlocker", EmbedderSafeBrowsingThreatDetails: "EmbedderSafeBrowsingThreatDetails", EmbedderAppBannerManager: "EmbedderAppBannerManager", EmbedderDomDistillerViewerSource: "EmbedderDomDistillerViewerSource", EmbedderDomDistillerSelfDeletingRequestDelegate: "EmbedderDomDistillerSelfDeletingRequestDelegate", EmbedderOomInterventionTabHelper: "EmbedderOomInterventionTabHelper", EmbedderOfflinePage: "EmbedderOfflinePage", EmbedderChromePasswordManagerClientBindCredentialManager: "EmbedderChromePasswordManagerClientBindCredentialManager", EmbedderPermissionRequestManager: "EmbedderPermissionRequestManager", EmbedderModalDialog: "EmbedderModalDialog", EmbedderExtensions: "EmbedderExtensions", EmbedderExtensionMessaging: "EmbedderExtensionMessaging", EmbedderExtensionMessagingForOpenPort: "EmbedderExtensionMessagingForOpenPort", EmbedderExtensionSentMessageToCachedFrame: "EmbedderExtensionSentMessageToCachedFrame", RequestedByWebViewClient: "RequestedByWebViewClient", PostMessageByWebViewClient: "PostMessageByWebViewClient", CacheControlNoStoreDeviceBoundSessionTerminated: "CacheControlNoStoreDeviceBoundSessionTerminated", CacheLimitPrunedOnModerateMemoryPressure: "CacheLimitPrunedOnModerateMemoryPressure", CacheLimitPrunedOnCriticalMemoryPressure: "CacheLimitPrunedOnCriticalMemoryPressure"});
1010
+ inspectorBackend.registerEnum("Page.BackForwardCacheNotRestoredReason", {NotPrimaryMainFrame: "NotPrimaryMainFrame", BackForwardCacheDisabled: "BackForwardCacheDisabled", RelatedActiveContentsExist: "RelatedActiveContentsExist", HTTPStatusNotOK: "HTTPStatusNotOK", SchemeNotHTTPOrHTTPS: "SchemeNotHTTPOrHTTPS", Loading: "Loading", WasGrantedMediaAccess: "WasGrantedMediaAccess", DisableForRenderFrameHostCalled: "DisableForRenderFrameHostCalled", DomainNotAllowed: "DomainNotAllowed", HTTPMethodNotGET: "HTTPMethodNotGET", SubframeIsNavigating: "SubframeIsNavigating", Timeout: "Timeout", CacheLimit: "CacheLimit", JavaScriptExecution: "JavaScriptExecution", RendererProcessKilled: "RendererProcessKilled", RendererProcessCrashed: "RendererProcessCrashed", SchedulerTrackedFeatureUsed: "SchedulerTrackedFeatureUsed", ConflictingBrowsingInstance: "ConflictingBrowsingInstance", CacheFlushed: "CacheFlushed", ServiceWorkerVersionActivation: "ServiceWorkerVersionActivation", SessionRestored: "SessionRestored", ServiceWorkerPostMessage: "ServiceWorkerPostMessage", EnteredBackForwardCacheBeforeServiceWorkerHostAdded: "EnteredBackForwardCacheBeforeServiceWorkerHostAdded", RenderFrameHostReused_SameSite: "RenderFrameHostReused_SameSite", RenderFrameHostReused_CrossSite: "RenderFrameHostReused_CrossSite", ServiceWorkerClaim: "ServiceWorkerClaim", IgnoreEventAndEvict: "IgnoreEventAndEvict", HaveInnerContents: "HaveInnerContents", TimeoutPuttingInCache: "TimeoutPuttingInCache", BackForwardCacheDisabledByLowMemory: "BackForwardCacheDisabledByLowMemory", BackForwardCacheDisabledByCommandLine: "BackForwardCacheDisabledByCommandLine", NetworkRequestDatAPIpeDrainedAsBytesConsumer: "NetworkRequestDatapipeDrainedAsBytesConsumer", NetworkRequestRedirected: "NetworkRequestRedirected", NetworkRequestTimeout: "NetworkRequestTimeout", NetworkExceedsBufferLimit: "NetworkExceedsBufferLimit", NavigationCancelledWhileRestoring: "NavigationCancelledWhileRestoring", NotMostRecentNavigationEntry: "NotMostRecentNavigationEntry", BackForwardCacheDisabledForPrerender: "BackForwardCacheDisabledForPrerender", UserAgentOverrideDiffers: "UserAgentOverrideDiffers", ForegroundCacheLimit: "ForegroundCacheLimit", BrowsingInstanceNotSwapped: "BrowsingInstanceNotSwapped", BackForwardCacheDisabledForDelegate: "BackForwardCacheDisabledForDelegate", UnloadHandlerExistsInMainFrame: "UnloadHandlerExistsInMainFrame", UnloadHandlerExistsInSubFrame: "UnloadHandlerExistsInSubFrame", ServiceWorkerUnregistration: "ServiceWorkerUnregistration", CacheControlNoStore: "CacheControlNoStore", CacheControlNoStoreCookieModified: "CacheControlNoStoreCookieModified", CacheControlNoStoreHTTPOnlyCookieModified: "CacheControlNoStoreHTTPOnlyCookieModified", NoResponseHead: "NoResponseHead", Unknown: "Unknown", ActivationNavigationsDisallowedForBug1234857: "ActivationNavigationsDisallowedForBug1234857", ErrorDocument: "ErrorDocument", FencedFramesEmbedder: "FencedFramesEmbedder", CookieDisabled: "CookieDisabled", HTTPAuthRequired: "HTTPAuthRequired", CookieFlushed: "CookieFlushed", BroadcastChannelOnMessage: "BroadcastChannelOnMessage", WebViewSettingsChanged: "WebViewSettingsChanged", WebViewJavaScriptObjectChanged: "WebViewJavaScriptObjectChanged", WebViewMessageListenerInjected: "WebViewMessageListenerInjected", WebViewSafeBrowsingAllowlistChanged: "WebViewSafeBrowsingAllowlistChanged", WebViewDocumentStartJavascriptChanged: "WebViewDocumentStartJavascriptChanged", WebSocket: "WebSocket", WebTransport: "WebTransport", WebRTC: "WebRTC", MainResourceHasCacheControlNoStore: "MainResourceHasCacheControlNoStore", MainResourceHasCacheControlNoCache: "MainResourceHasCacheControlNoCache", SubresourceHasCacheControlNoStore: "SubresourceHasCacheControlNoStore", SubresourceHasCacheControlNoCache: "SubresourceHasCacheControlNoCache", ContainsPlugins: "ContainsPlugins", DocumentLoaded: "DocumentLoaded", OutstandingNetworkRequestOthers: "OutstandingNetworkRequestOthers", RequestedMIDIPermission: "RequestedMIDIPermission", RequestedAudioCapturePermission: "RequestedAudioCapturePermission", RequestedVideoCapturePermission: "RequestedVideoCapturePermission", RequestedBackForwardCacheBlockedSensors: "RequestedBackForwardCacheBlockedSensors", RequestedBackgroundWorkPermission: "RequestedBackgroundWorkPermission", BroadcastChannel: "BroadcastChannel", WebXR: "WebXR", SharedWorker: "SharedWorker", SharedWorkerMessage: "SharedWorkerMessage", WebLocks: "WebLocks", WebHID: "WebHID", WebShare: "WebShare", RequestedStorageAccessGrant: "RequestedStorageAccessGrant", WebNfc: "WebNfc", OutstandingNetworkRequestFetch: "OutstandingNetworkRequestFetch", OutstandingNetworkRequestXHR: "OutstandingNetworkRequestXHR", AppBanner: "AppBanner", Printing: "Printing", WebDatabase: "WebDatabase", PictureInPicture: "PictureInPicture", SpeechRecognizer: "SpeechRecognizer", IdleManager: "IdleManager", PaymentManager: "PaymentManager", SpeechSynthesis: "SpeechSynthesis", KeyboardLock: "KeyboardLock", WebOTPService: "WebOTPService", OutstandingNetworkRequestDirectSocket: "OutstandingNetworkRequestDirectSocket", InjectedJavascript: "InjectedJavascript", InjectedStyleSheet: "InjectedStyleSheet", KeepaliveRequest: "KeepaliveRequest", IndexedDBEvent: "IndexedDBEvent", Dummy: "Dummy", JsNetworkRequestReceivedCacheControlNoStoreResource: "JsNetworkRequestReceivedCacheControlNoStoreResource", WebRTCUsedWithCCNS: "WebRTCUsedWithCCNS", WebTransportUsedWithCCNS: "WebTransportUsedWithCCNS", WebSocketUsedWithCCNS: "WebSocketUsedWithCCNS", SmartCard: "SmartCard", LiveMediaStreamTrack: "LiveMediaStreamTrack", UnloadHandler: "UnloadHandler", ParserAborted: "ParserAborted", ContentSecurityHandler: "ContentSecurityHandler", ContentWebAuthenticationAPI: "ContentWebAuthenticationAPI", ContentFileChooser: "ContentFileChooser", ContentSerial: "ContentSerial", ContentFileSystemAccess: "ContentFileSystemAccess", ContentMediaDevicesDispatcherHost: "ContentMediaDevicesDispatcherHost", ContentWebBluetooth: "ContentWebBluetooth", ContentWebUSB: "ContentWebUSB", ContentMediaSessionService: "ContentMediaSessionService", ContentScreenReader: "ContentScreenReader", ContentDiscarded: "ContentDiscarded", EmbedderPopupBlockerTabHelper: "EmbedderPopupBlockerTabHelper", EmbedderSafeBrowsingTriggeredPopupBlocker: "EmbedderSafeBrowsingTriggeredPopupBlocker", EmbedderSafeBrowsingThreatDetails: "EmbedderSafeBrowsingThreatDetails", EmbedderAppBannerManager: "EmbedderAppBannerManager", EmbedderDomDistillerViewerSource: "EmbedderDomDistillerViewerSource", EmbedderDomDistillerSelfDeletingRequestDelegate: "EmbedderDomDistillerSelfDeletingRequestDelegate", EmbedderOomInterventionTabHelper: "EmbedderOomInterventionTabHelper", EmbedderOfflinePage: "EmbedderOfflinePage", EmbedderChromePasswordManagerClientBindCredentialManager: "EmbedderChromePasswordManagerClientBindCredentialManager", EmbedderPermissionRequestManager: "EmbedderPermissionRequestManager", EmbedderModalDialog: "EmbedderModalDialog", EmbedderExtensions: "EmbedderExtensions", EmbedderExtensionMessaging: "EmbedderExtensionMessaging", EmbedderExtensionMessagingForOpenPort: "EmbedderExtensionMessagingForOpenPort", EmbedderExtensionSentMessageToCachedFrame: "EmbedderExtensionSentMessageToCachedFrame", RequestedByWebViewClient: "RequestedByWebViewClient", PostMessageByWebViewClient: "PostMessageByWebViewClient", CacheControlNoStoreDeviceBoundSessionTerminated: "CacheControlNoStoreDeviceBoundSessionTerminated", CacheLimitPrunedOnModerateMemoryPressure: "CacheLimitPrunedOnModerateMemoryPressure", CacheLimitPrunedOnCriticalMemoryPressure: "CacheLimitPrunedOnCriticalMemoryPressure"});
897
1011
  inspectorBackend.registerEnum("Page.BackForwardCacheNotRestoredReasonType", {SupportPending: "SupportPending", PageSupportNeeded: "PageSupportNeeded", Circumstantial: "Circumstantial"});
898
1012
  inspectorBackend.registerEvent("Page.domContentEventFired", ["timestamp"]);
899
1013
  inspectorBackend.registerEnum("Page.FileChooserOpenedEventMode", {SelectSingle: "selectSingle", SelectMultiple: "selectMultiple"});
@@ -954,7 +1068,7 @@ inspectorBackend.registerCommand("Page.resetNavigationHistory", [], [], "Resets
954
1068
  inspectorBackend.registerCommand("Page.getResourceContent", [{"name": "frameId", "type": "string", "optional": false, "description": "Frame id to get resource for.", "typeRef": "Page.FrameId"}, {"name": "url", "type": "string", "optional": false, "description": "URL of the resource to get content for.", "typeRef": null}], ["content", "base64Encoded"], "Returns content of the given resource.");
955
1069
  inspectorBackend.registerCommand("Page.getResourceTree", [], ["frameTree"], "Returns present frame / resource tree structure.");
956
1070
  inspectorBackend.registerCommand("Page.handleJavaScriptDialog", [{"name": "accept", "type": "boolean", "optional": false, "description": "Whether to accept or dismiss the dialog.", "typeRef": null}, {"name": "promptText", "type": "string", "optional": true, "description": "The text to enter into the dialog prompt before accepting. Used only if this is a prompt dialog.", "typeRef": null}], [], "Accepts or dismisses a JavaScript initiated dialog (alert, confirm, prompt, or onbeforeunload).");
957
- inspectorBackend.registerCommand("Page.navigate", [{"name": "url", "type": "string", "optional": false, "description": "URL to navigate the page to.", "typeRef": null}, {"name": "referrer", "type": "string", "optional": true, "description": "Referrer URL.", "typeRef": null}, {"name": "transitionType", "type": "string", "optional": true, "description": "Intended transition type.", "typeRef": "Page.TransitionType"}, {"name": "frameId", "type": "string", "optional": true, "description": "Frame id to navigate, if not specified navigates the top frame.", "typeRef": "Page.FrameId"}, {"name": "referrerPolicy", "type": "string", "optional": true, "description": "Referrer-policy used for the navigation.", "typeRef": "Page.ReferrerPolicy"}], ["frameId", "loaderId", "errorText"], "Navigates current page to the given URL.");
1071
+ inspectorBackend.registerCommand("Page.navigate", [{"name": "url", "type": "string", "optional": false, "description": "URL to navigate the page to.", "typeRef": null}, {"name": "referrer", "type": "string", "optional": true, "description": "Referrer URL.", "typeRef": null}, {"name": "transitionType", "type": "string", "optional": true, "description": "Intended transition type.", "typeRef": "Page.TransitionType"}, {"name": "frameId", "type": "string", "optional": true, "description": "Frame id to navigate, if not specified navigates the top frame.", "typeRef": "Page.FrameId"}, {"name": "referrerPolicy", "type": "string", "optional": true, "description": "Referrer-policy used for the navigation.", "typeRef": "Page.ReferrerPolicy"}], ["frameId", "loaderId", "errorText", "isDownload"], "Navigates current page to the given URL.");
958
1072
  inspectorBackend.registerCommand("Page.navigateToHistoryEntry", [{"name": "entryId", "type": "number", "optional": false, "description": "Unique id of the entry to navigate to.", "typeRef": null}], [], "Navigates current page to the given history entry.");
959
1073
  inspectorBackend.registerEnum("Page.PrintToPDFRequestTransferMode", {ReturnAsBase64: "ReturnAsBase64", ReturnAsStream: "ReturnAsStream"});
960
1074
  inspectorBackend.registerCommand("Page.printToPDF", [{"name": "landscape", "type": "boolean", "optional": true, "description": "Paper orientation. Defaults to false.", "typeRef": null}, {"name": "displayHeaderFooter", "type": "boolean", "optional": true, "description": "Display header and footer. Defaults to false.", "typeRef": null}, {"name": "printBackground", "type": "boolean", "optional": true, "description": "Print background graphics. Defaults to false.", "typeRef": null}, {"name": "scale", "type": "number", "optional": true, "description": "Scale of the webpage rendering. Defaults to 1.", "typeRef": null}, {"name": "paperWidth", "type": "number", "optional": true, "description": "Paper width in inches. Defaults to 8.5 inches.", "typeRef": null}, {"name": "paperHeight", "type": "number", "optional": true, "description": "Paper height in inches. Defaults to 11 inches.", "typeRef": null}, {"name": "marginTop", "type": "number", "optional": true, "description": "Top margin in inches. Defaults to 1cm (~0.4 inches).", "typeRef": null}, {"name": "marginBottom", "type": "number", "optional": true, "description": "Bottom margin in inches. Defaults to 1cm (~0.4 inches).", "typeRef": null}, {"name": "marginLeft", "type": "number", "optional": true, "description": "Left margin in inches. Defaults to 1cm (~0.4 inches).", "typeRef": null}, {"name": "marginRight", "type": "number", "optional": true, "description": "Right margin in inches. Defaults to 1cm (~0.4 inches).", "typeRef": null}, {"name": "pageRanges", "type": "string", "optional": true, "description": "Paper ranges to print, one based, e.g., '1-5, 8, 11-13'. Pages are printed in the document order, not in the order specified, and no more than once. Defaults to empty string, which implies the entire document is printed. The page numbers are quietly capped to actual page count of the document, and ranges beyond the end of the document are ignored. If this results in no pages to print, an error is reported. It is an error to specify a range with start greater than end.", "typeRef": null}, {"name": "headerTemplate", "type": "string", "optional": true, "description": "HTML template for the print header. Should be valid HTML markup with following classes used to inject printing values into them: - `date`: formatted print date - `title`: document title - `url`: document location - `pageNumber`: current page number - `totalPages`: total pages in the document For example, `<span class=title></span>` would generate span containing the title.", "typeRef": null}, {"name": "footerTemplate", "type": "string", "optional": true, "description": "HTML template for the print footer. Should use the same format as the `headerTemplate`.", "typeRef": null}, {"name": "preferCSSPageSize", "type": "boolean", "optional": true, "description": "Whether or not to prefer page size as defined by css. Defaults to false, in which case the content will be scaled to fit the paper size.", "typeRef": null}, {"name": "transferMode", "type": "string", "optional": true, "description": "return as stream", "typeRef": "Page.PrintToPDFRequestTransferMode"}, {"name": "generateTaggedPDF", "type": "boolean", "optional": true, "description": "Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.", "typeRef": null}, {"name": "generateDocumentOutline", "type": "boolean", "optional": true, "description": "Whether or not to embed the document outline into the PDF.", "typeRef": null}], ["data", "stream"], "Print page as PDF.");
@@ -989,8 +1103,10 @@ inspectorBackend.registerCommand("Page.stopScreencast", [], [], "Stops sending e
989
1103
  inspectorBackend.registerCommand("Page.produceCompilationCache", [{"name": "scripts", "type": "array", "optional": false, "description": "", "typeRef": "Page.CompilationCacheParams"}], [], "Requests backend to produce compilation cache for the specified scripts. `scripts` are appended to the list of scripts for which the cache would be produced. The list may be reset during page navigation. When script with a matching URL is encountered, the cache is optionally produced upon backend discretion, based on internal heuristics. See also: `Page.compilationCacheProduced`.");
990
1104
  inspectorBackend.registerCommand("Page.addCompilationCache", [{"name": "url", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "data", "type": "string", "optional": false, "description": "Base64-encoded data", "typeRef": null}], [], "Seeds compilation cache for given url. Compilation cache does not survive cross-process navigation.");
991
1105
  inspectorBackend.registerCommand("Page.clearCompilationCache", [], [], "Clears seeded compilation cache.");
992
- inspectorBackend.registerCommand("Page.setSPCTransactionMode", [{"name": "mode", "type": "string", "optional": false, "description": "", "typeRef": "Page.AutoResponseMode"}], [], "Sets the Secure Payment Confirmation transaction mode. https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode");
993
- inspectorBackend.registerCommand("Page.setRPHRegistrationMode", [{"name": "mode", "type": "string", "optional": false, "description": "", "typeRef": "Page.AutoResponseMode"}], [], "Extensions for Custom Handlers API: https://html.spec.whatwg.org/multipage/system-state.html#rph-automation");
1106
+ inspectorBackend.registerEnum("Page.SetSPCTransactionModeRequestMode", {None: "none", AutoAccept: "autoAccept", AutoChooseToAuthAnotherWay: "autoChooseToAuthAnotherWay", AutoReject: "autoReject", AutoOptOut: "autoOptOut"});
1107
+ inspectorBackend.registerCommand("Page.setSPCTransactionMode", [{"name": "mode", "type": "string", "optional": false, "description": "", "typeRef": "Page.SetSPCTransactionModeRequestMode"}], [], "Sets the Secure Payment Confirmation transaction mode. https://w3c.github.io/secure-payment-confirmation/#sctn-automation-set-spc-transaction-mode");
1108
+ inspectorBackend.registerEnum("Page.SetRPHRegistrationModeRequestMode", {None: "none", AutoAccept: "autoAccept", AutoReject: "autoReject"});
1109
+ inspectorBackend.registerCommand("Page.setRPHRegistrationMode", [{"name": "mode", "type": "string", "optional": false, "description": "", "typeRef": "Page.SetRPHRegistrationModeRequestMode"}], [], "Extensions for Custom Handlers API: https://html.spec.whatwg.org/multipage/system-state.html#rph-automation");
994
1110
  inspectorBackend.registerCommand("Page.generateTestReport", [{"name": "message", "type": "string", "optional": false, "description": "Message to be displayed in the report.", "typeRef": null}, {"name": "group", "type": "string", "optional": true, "description": "Specifies the endpoint group to deliver the report to.", "typeRef": null}], [], "Generates a report for testing.");
995
1111
  inspectorBackend.registerCommand("Page.waitForDebugger", [], [], "Pauses page execution. Can be resumed using generic Runtime.runIfWaitingForDebugger.");
996
1112
  inspectorBackend.registerCommand("Page.setInterceptFileChooserDialog", [{"name": "enabled", "type": "boolean", "optional": false, "description": "", "typeRef": null}, {"name": "cancel", "type": "boolean", "optional": true, "description": "If true, cancels the dialog by emitting relevant events (if any) in addition to not showing it if the interception is enabled (default: false).", "typeRef": null}], [], "Intercept file chooser requests and transfer control to protocol clients. When file chooser interception is enabled, native file chooser dialog is not shown. Instead, a protocol event `Page.fileChooserOpened` is emitted.");
@@ -1054,6 +1170,26 @@ inspectorBackend.registerType("PerformanceTimeline.LayoutShiftAttribution", [{"n
1054
1170
  inspectorBackend.registerType("PerformanceTimeline.LayoutShift", [{"name": "value", "type": "number", "optional": false, "description": "Score increment produced by this event.", "typeRef": null}, {"name": "hadRecentInput", "type": "boolean", "optional": false, "description": "", "typeRef": null}, {"name": "lastInputTime", "type": "number", "optional": false, "description": "", "typeRef": "Network.TimeSinceEpoch"}, {"name": "sources", "type": "array", "optional": false, "description": "", "typeRef": "PerformanceTimeline.LayoutShiftAttribution"}]);
1055
1171
  inspectorBackend.registerType("PerformanceTimeline.TimelineEvent", [{"name": "frameId", "type": "string", "optional": false, "description": "Identifies the frame that this event is related to. Empty for non-frame targets.", "typeRef": "Page.FrameId"}, {"name": "type", "type": "string", "optional": false, "description": "The event type, as specified in https://w3c.github.io/performance-timeline/#dom-performanceentry-entrytype This determines which of the optional \\\"details\\\" fields is present.", "typeRef": null}, {"name": "name", "type": "string", "optional": false, "description": "Name may be empty depending on the type.", "typeRef": null}, {"name": "time", "type": "number", "optional": false, "description": "Time in seconds since Epoch, monotonically increasing within document lifetime.", "typeRef": "Network.TimeSinceEpoch"}, {"name": "duration", "type": "number", "optional": true, "description": "Event duration, if applicable.", "typeRef": null}, {"name": "lcpDetails", "type": "object", "optional": true, "description": "", "typeRef": "PerformanceTimeline.LargestContentfulPaint"}, {"name": "layoutShiftDetails", "type": "object", "optional": true, "description": "", "typeRef": "PerformanceTimeline.LayoutShift"}]);
1056
1172
 
1173
+ // Preload.
1174
+ inspectorBackend.registerEnum("Preload.RuleSetErrorType", {SourceIsNotJsonObject: "SourceIsNotJsonObject", InvalidRulesSkipped: "InvalidRulesSkipped", InvalidRulesetLevelTag: "InvalidRulesetLevelTag"});
1175
+ inspectorBackend.registerEnum("Preload.SpeculationAction", {Prefetch: "Prefetch", Prerender: "Prerender"});
1176
+ inspectorBackend.registerEnum("Preload.SpeculationTargetHint", {Blank: "Blank", Self: "Self"});
1177
+ inspectorBackend.registerEnum("Preload.PrerenderFinalStatus", {Activated: "Activated", Destroyed: "Destroyed", LowEndDevice: "LowEndDevice", InvalidSchemeRedirect: "InvalidSchemeRedirect", InvalidSchemeNavigation: "InvalidSchemeNavigation", NavigationRequestBlockedByCsp: "NavigationRequestBlockedByCsp", MojoBinderPolicy: "MojoBinderPolicy", RendererProcessCrashed: "RendererProcessCrashed", RendererProcessKilled: "RendererProcessKilled", Download: "Download", TriggerDestroyed: "TriggerDestroyed", NavigationNotCommitted: "NavigationNotCommitted", NavigationBadHttpStatus: "NavigationBadHttpStatus", ClientCertRequested: "ClientCertRequested", NavigationRequestNetworkError: "NavigationRequestNetworkError", CancelAllHostsForTesting: "CancelAllHostsForTesting", DidFailLoad: "DidFailLoad", Stop: "Stop", SslCertificateError: "SslCertificateError", LoginAuthRequested: "LoginAuthRequested", UaChangeRequiresReload: "UaChangeRequiresReload", BlockedByClient: "BlockedByClient", AudioOutputDeviceRequested: "AudioOutputDeviceRequested", MixedContent: "MixedContent", TriggerBackgrounded: "TriggerBackgrounded", MemoryLimitExceeded: "MemoryLimitExceeded", DataSaverEnabled: "DataSaverEnabled", TriggerUrlHasEffectiveUrl: "TriggerUrlHasEffectiveUrl", ActivatedBeforeStarted: "ActivatedBeforeStarted", InactivePageRestriction: "InactivePageRestriction", StartFailed: "StartFailed", TimeoutBackgrounded: "TimeoutBackgrounded", CrossSiteRedirectInInitialNavigation: "CrossSiteRedirectInInitialNavigation", CrossSiteNavigationInInitialNavigation: "CrossSiteNavigationInInitialNavigation", SameSiteCrossOriginRedirectNotOptInInInitialNavigation: "SameSiteCrossOriginRedirectNotOptInInInitialNavigation", SameSiteCrossOriginNavigationNotOptInInInitialNavigation: "SameSiteCrossOriginNavigationNotOptInInInitialNavigation", ActivationNavigationParameterMismatch: "ActivationNavigationParameterMismatch", ActivatedInBackground: "ActivatedInBackground", EmbedderHostDisallowed: "EmbedderHostDisallowed", ActivationNavigationDestroyedBeforeSuccess: "ActivationNavigationDestroyedBeforeSuccess", TabClosedByUserGesture: "TabClosedByUserGesture", TabClosedWithoutUserGesture: "TabClosedWithoutUserGesture", PrimaryMainFrameRendererProcessCrashed: "PrimaryMainFrameRendererProcessCrashed", PrimaryMainFrameRendererProcessKilled: "PrimaryMainFrameRendererProcessKilled", ActivationFramePolicyNotCompatible: "ActivationFramePolicyNotCompatible", PreloadingDisabled: "PreloadingDisabled", BatterySaverEnabled: "BatterySaverEnabled", ActivatedDuringMainFrameNavigation: "ActivatedDuringMainFrameNavigation", PreloadingUnsupportedByWebContents: "PreloadingUnsupportedByWebContents", CrossSiteRedirectInMainFrameNavigation: "CrossSiteRedirectInMainFrameNavigation", CrossSiteNavigationInMainFrameNavigation: "CrossSiteNavigationInMainFrameNavigation", SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation: "SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation", SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation: "SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation", MemoryPressureOnTrigger: "MemoryPressureOnTrigger", MemoryPressureAfterTriggered: "MemoryPressureAfterTriggered", PrerenderingDisabledByDevTools: "PrerenderingDisabledByDevTools", SpeculationRuleRemoved: "SpeculationRuleRemoved", ActivatedWithAuxiliaryBrowsingContexts: "ActivatedWithAuxiliaryBrowsingContexts", MaxNumOfRunningEagerPrerendersExceeded: "MaxNumOfRunningEagerPrerendersExceeded", MaxNumOfRunningNonEagerPrerendersExceeded: "MaxNumOfRunningNonEagerPrerendersExceeded", MaxNumOfRunningEmbedderPrerendersExceeded: "MaxNumOfRunningEmbedderPrerendersExceeded", PrerenderingUrlHasEffectiveUrl: "PrerenderingUrlHasEffectiveUrl", RedirectedPrerenderingUrlHasEffectiveUrl: "RedirectedPrerenderingUrlHasEffectiveUrl", ActivationUrlHasEffectiveUrl: "ActivationUrlHasEffectiveUrl", JavaScriptInterfaceAdded: "JavaScriptInterfaceAdded", JavaScriptInterfaceRemoved: "JavaScriptInterfaceRemoved", AllPrerenderingCanceled: "AllPrerenderingCanceled", WindowClosed: "WindowClosed", SlowNetwork: "SlowNetwork", OtherPrerenderedPageActivated: "OtherPrerenderedPageActivated", V8OptimizerDisabled: "V8OptimizerDisabled", PrerenderFailedDuringPrefetch: "PrerenderFailedDuringPrefetch", BrowsingDataRemoved: "BrowsingDataRemoved", PrerenderHostReused: "PrerenderHostReused"});
1178
+ inspectorBackend.registerEnum("Preload.PreloadingStatus", {Pending: "Pending", Running: "Running", Ready: "Ready", Success: "Success", Failure: "Failure", NotSupported: "NotSupported"});
1179
+ inspectorBackend.registerEnum("Preload.PrefetchStatus", {PrefetchAllowed: "PrefetchAllowed", PrefetchFailedIneligibleRedirect: "PrefetchFailedIneligibleRedirect", PrefetchFailedInvalidRedirect: "PrefetchFailedInvalidRedirect", PrefetchFailedMIMENotSupported: "PrefetchFailedMIMENotSupported", PrefetchFailedNetError: "PrefetchFailedNetError", PrefetchFailedNon2XX: "PrefetchFailedNon2XX", PrefetchEvictedAfterBrowsingDataRemoved: "PrefetchEvictedAfterBrowsingDataRemoved", PrefetchEvictedAfterCandidateRemoved: "PrefetchEvictedAfterCandidateRemoved", PrefetchEvictedForNewerPrefetch: "PrefetchEvictedForNewerPrefetch", PrefetchHeldback: "PrefetchHeldback", PrefetchIneligibleRetryAfter: "PrefetchIneligibleRetryAfter", PrefetchIsPrivacyDecoy: "PrefetchIsPrivacyDecoy", PrefetchIsStale: "PrefetchIsStale", PrefetchNotEligibleBrowserContextOffTheRecord: "PrefetchNotEligibleBrowserContextOffTheRecord", PrefetchNotEligibleDataSaverEnabled: "PrefetchNotEligibleDataSaverEnabled", PrefetchNotEligibleExistingProxy: "PrefetchNotEligibleExistingProxy", PrefetchNotEligibleHostIsNonUnique: "PrefetchNotEligibleHostIsNonUnique", PrefetchNotEligibleNonDefaultStoragePartition: "PrefetchNotEligibleNonDefaultStoragePartition", PrefetchNotEligibleSameSiteCrossOriginPrefetchRequiredProxy: "PrefetchNotEligibleSameSiteCrossOriginPrefetchRequiredProxy", PrefetchNotEligibleSchemeIsNotHttps: "PrefetchNotEligibleSchemeIsNotHttps", PrefetchNotEligibleUserHasCookies: "PrefetchNotEligibleUserHasCookies", PrefetchNotEligibleUserHasServiceWorker: "PrefetchNotEligibleUserHasServiceWorker", PrefetchNotEligibleUserHasServiceWorkerNoFetchHandler: "PrefetchNotEligibleUserHasServiceWorkerNoFetchHandler", PrefetchNotEligibleRedirectFromServiceWorker: "PrefetchNotEligibleRedirectFromServiceWorker", PrefetchNotEligibleRedirectToServiceWorker: "PrefetchNotEligibleRedirectToServiceWorker", PrefetchNotEligibleBatterySaverEnabled: "PrefetchNotEligibleBatterySaverEnabled", PrefetchNotEligiblePreloadingDisabled: "PrefetchNotEligiblePreloadingDisabled", PrefetchNotFinishedInTime: "PrefetchNotFinishedInTime", PrefetchNotStarted: "PrefetchNotStarted", PrefetchNotUsedCookiesChanged: "PrefetchNotUsedCookiesChanged", PrefetchProxyNotAvailable: "PrefetchProxyNotAvailable", PrefetchResponseUsed: "PrefetchResponseUsed", PrefetchSuccessfulButNotUsed: "PrefetchSuccessfulButNotUsed", PrefetchNotUsedProbeFailed: "PrefetchNotUsedProbeFailed"});
1180
+ inspectorBackend.registerEvent("Preload.ruleSetUpdated", ["ruleSet"]);
1181
+ inspectorBackend.registerEvent("Preload.ruleSetRemoved", ["id"]);
1182
+ inspectorBackend.registerEvent("Preload.preloadEnabledStateUpdated", ["disabledByPreference", "disabledByDataSaver", "disabledByBatterySaver", "disabledByHoldbackPrefetchSpeculationRules", "disabledByHoldbackPrerenderSpeculationRules"]);
1183
+ inspectorBackend.registerEvent("Preload.prefetchStatusUpdated", ["key", "pipelineId", "initiatingFrameId", "prefetchUrl", "status", "prefetchStatus", "requestId"]);
1184
+ inspectorBackend.registerEvent("Preload.prerenderStatusUpdated", ["key", "pipelineId", "status", "prerenderStatus", "disallowedMojoInterface", "mismatchedHeaders"]);
1185
+ inspectorBackend.registerEvent("Preload.preloadingAttemptSourcesUpdated", ["loaderId", "preloadingAttemptSources"]);
1186
+ inspectorBackend.registerCommand("Preload.enable", [], [], "");
1187
+ inspectorBackend.registerCommand("Preload.disable", [], [], "");
1188
+ inspectorBackend.registerType("Preload.RuleSet", [{"name": "id", "type": "string", "optional": false, "description": "", "typeRef": "Preload.RuleSetId"}, {"name": "loaderId", "type": "string", "optional": false, "description": "Identifies a document which the rule set is associated with.", "typeRef": "Network.LoaderId"}, {"name": "sourceText", "type": "string", "optional": false, "description": "Source text of JSON representing the rule set. If it comes from `<script>` tag, it is the textContent of the node. Note that it is a JSON for valid case. See also: - https://wicg.github.io/nav-speculation/speculation-rules.html - https://github.com/WICG/nav-speculation/blob/main/triggers.md", "typeRef": null}, {"name": "backendNodeId", "type": "number", "optional": true, "description": "A speculation rule set is either added through an inline `<script>` tag or through an external resource via the 'Speculation-Rules' HTTP header. For the first case, we include the BackendNodeId of the relevant `<script>` tag. For the second case, we include the external URL where the rule set was loaded from, and also RequestId if Network domain is enabled. See also: - https://wicg.github.io/nav-speculation/speculation-rules.html#speculation-rules-script - https://wicg.github.io/nav-speculation/speculation-rules.html#speculation-rules-header", "typeRef": "DOM.BackendNodeId"}, {"name": "url", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "requestId", "type": "string", "optional": true, "description": "", "typeRef": "Network.RequestId"}, {"name": "errorType", "type": "string", "optional": true, "description": "Error information `errorMessage` is null iff `errorType` is null.", "typeRef": "Preload.RuleSetErrorType"}, {"name": "errorMessage", "type": "string", "optional": true, "description": "TODO(https://crbug.com/1425354): Replace this property with structured error.", "typeRef": null}]);
1189
+ inspectorBackend.registerType("Preload.PreloadingAttemptKey", [{"name": "loaderId", "type": "string", "optional": false, "description": "", "typeRef": "Network.LoaderId"}, {"name": "action", "type": "string", "optional": false, "description": "", "typeRef": "Preload.SpeculationAction"}, {"name": "url", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "targetHint", "type": "string", "optional": true, "description": "", "typeRef": "Preload.SpeculationTargetHint"}]);
1190
+ inspectorBackend.registerType("Preload.PreloadingAttemptSource", [{"name": "key", "type": "object", "optional": false, "description": "", "typeRef": "Preload.PreloadingAttemptKey"}, {"name": "ruleSetIds", "type": "array", "optional": false, "description": "", "typeRef": "Preload.RuleSetId"}, {"name": "nodeIds", "type": "array", "optional": false, "description": "", "typeRef": "DOM.BackendNodeId"}]);
1191
+ inspectorBackend.registerType("Preload.PrerenderMismatchedHeaders", [{"name": "headerName", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "initialValue", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "activationValue", "type": "string", "optional": true, "description": "", "typeRef": null}]);
1192
+
1057
1193
  // Security.
1058
1194
  inspectorBackend.registerEnum("Security.MixedContentType", {Blockable: "blockable", OptionallyBlockable: "optionally-blockable", None: "none"});
1059
1195
  inspectorBackend.registerEnum("Security.SecurityState", {Unknown: "unknown", Neutral: "neutral", Insecure: "insecure", Secure: "secure", Info: "info", InsecureBroken: "insecure-broken"});
@@ -1084,7 +1220,6 @@ inspectorBackend.registerCommand("ServiceWorker.disable", [], [], "");
1084
1220
  inspectorBackend.registerCommand("ServiceWorker.dispatchSyncEvent", [{"name": "origin", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "registrationId", "type": "string", "optional": false, "description": "", "typeRef": "ServiceWorker.RegistrationID"}, {"name": "tag", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "lastChance", "type": "boolean", "optional": false, "description": "", "typeRef": null}], [], "");
1085
1221
  inspectorBackend.registerCommand("ServiceWorker.dispatchPeriodicSyncEvent", [{"name": "origin", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "registrationId", "type": "string", "optional": false, "description": "", "typeRef": "ServiceWorker.RegistrationID"}, {"name": "tag", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "");
1086
1222
  inspectorBackend.registerCommand("ServiceWorker.enable", [], [], "");
1087
- inspectorBackend.registerCommand("ServiceWorker.inspectWorker", [{"name": "versionId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "");
1088
1223
  inspectorBackend.registerCommand("ServiceWorker.setForceUpdateOnPageLoad", [{"name": "forceUpdateOnPageLoad", "type": "boolean", "optional": false, "description": "", "typeRef": null}], [], "");
1089
1224
  inspectorBackend.registerCommand("ServiceWorker.skipWaiting", [{"name": "scopeURL", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "");
1090
1225
  inspectorBackend.registerCommand("ServiceWorker.startWorker", [{"name": "scopeURL", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "");
@@ -1125,6 +1260,7 @@ inspectorBackend.registerEvent("Storage.storageBucketDeleted", ["bucketId"]);
1125
1260
  inspectorBackend.registerEvent("Storage.attributionReportingSourceRegistered", ["registration", "result"]);
1126
1261
  inspectorBackend.registerEvent("Storage.attributionReportingTriggerRegistered", ["registration", "eventLevel", "aggregatable"]);
1127
1262
  inspectorBackend.registerEvent("Storage.attributionReportingReportSent", ["url", "body", "result", "netError", "netErrorName", "httpStatusCode"]);
1263
+ inspectorBackend.registerEvent("Storage.attributionReportingVerboseDebugReportSent", ["url", "body", "netError", "netErrorName", "httpStatusCode"]);
1128
1264
  inspectorBackend.registerCommand("Storage.getStorageKeyForFrame", [{"name": "frameId", "type": "string", "optional": false, "description": "", "typeRef": "Page.FrameId"}], ["storageKey"], "Returns a storage key given a frame id.");
1129
1265
  inspectorBackend.registerCommand("Storage.clearDataForOrigin", [{"name": "origin", "type": "string", "optional": false, "description": "Security origin.", "typeRef": null}, {"name": "storageTypes", "type": "string", "optional": false, "description": "Comma separated list of StorageType to clear.", "typeRef": null}], [], "Clears storage for origin.");
1130
1266
  inspectorBackend.registerCommand("Storage.clearDataForStorageKey", [{"name": "storageKey", "type": "string", "optional": false, "description": "Storage key.", "typeRef": null}, {"name": "storageTypes", "type": "string", "optional": false, "description": "Comma separated list of StorageType to clear.", "typeRef": null}], [], "Clears storage for storage key.");
@@ -1231,7 +1367,8 @@ inspectorBackend.registerCommand("Target.setAutoAttach", [{"name": "autoAttach",
1231
1367
  inspectorBackend.registerCommand("Target.autoAttachRelated", [{"name": "targetId", "type": "string", "optional": false, "description": "", "typeRef": "Target.TargetID"}, {"name": "waitForDebuggerOnStart", "type": "boolean", "optional": false, "description": "Whether to pause new targets when attaching to them. Use `Runtime.runIfWaitingForDebugger` to run paused targets.", "typeRef": null}, {"name": "filter", "type": "array", "optional": true, "description": "Only targets matching filter will be attached.", "typeRef": "Target.TargetFilter"}], [], "Adds the specified target to the list of targets that will be monitored for any related target creation (such as child frames, child workers and new versions of service worker) and reported through `attachedToTarget`. The specified target is also auto-attached. This cancels the effect of any previous `setAutoAttach` and is also cancelled by subsequent `setAutoAttach`. Only available at the Browser target.");
1232
1368
  inspectorBackend.registerCommand("Target.setDiscoverTargets", [{"name": "discover", "type": "boolean", "optional": false, "description": "Whether to discover available targets.", "typeRef": null}, {"name": "filter", "type": "array", "optional": true, "description": "Only targets matching filter will be attached. If `discover` is false, `filter` must be omitted or empty.", "typeRef": "Target.TargetFilter"}], [], "Controls whether to discover available targets and notify via `targetCreated/targetInfoChanged/targetDestroyed` events.");
1233
1369
  inspectorBackend.registerCommand("Target.setRemoteLocations", [{"name": "locations", "type": "array", "optional": false, "description": "List of remote locations.", "typeRef": "Target.RemoteLocation"}], [], "Enables target discovery for the specified locations, when `setDiscoverTargets` was set to `true`.");
1234
- inspectorBackend.registerType("Target.TargetInfo", [{"name": "targetId", "type": "string", "optional": false, "description": "", "typeRef": "Target.TargetID"}, {"name": "type", "type": "string", "optional": false, "description": "List of types: https://source.chromium.org/chromium/chromium/src/+/main:content/browser/devtools/devtools_agent_host_impl.cc?ss=chromium&q=f:devtools%20-f:out%20%22::kTypeTab%5B%5D%22", "typeRef": null}, {"name": "title", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "url", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "attached", "type": "boolean", "optional": false, "description": "Whether the target has an attached client.", "typeRef": null}, {"name": "openerId", "type": "string", "optional": true, "description": "Opener target Id", "typeRef": "Target.TargetID"}, {"name": "canAccessOpener", "type": "boolean", "optional": false, "description": "Whether the target has access to the originating window.", "typeRef": null}, {"name": "openerFrameId", "type": "string", "optional": true, "description": "Frame id of originating window (is only set if target has an opener).", "typeRef": "Page.FrameId"}, {"name": "browserContextId", "type": "string", "optional": true, "description": "", "typeRef": "Browser.BrowserContextID"}, {"name": "subtype", "type": "string", "optional": true, "description": "Provides additional details for specific target types. For example, for the type of \\\"page\\\", this may be set to \\\"prerender\\\".", "typeRef": null}]);
1370
+ inspectorBackend.registerCommand("Target.openDevTools", [{"name": "targetId", "type": "string", "optional": false, "description": "This can be the page or tab target ID.", "typeRef": "Target.TargetID"}], ["targetId"], "Opens a DevTools window for the target.");
1371
+ inspectorBackend.registerType("Target.TargetInfo", [{"name": "targetId", "type": "string", "optional": false, "description": "", "typeRef": "Target.TargetID"}, {"name": "type", "type": "string", "optional": false, "description": "List of types: https://source.chromium.org/chromium/chromium/src/+/main:content/browser/devtools/devtools_agent_host_impl.cc?ss=chromium&q=f:devtools%20-f:out%20%22::kTypeTab%5B%5D%22", "typeRef": null}, {"name": "title", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "url", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "attached", "type": "boolean", "optional": false, "description": "Whether the target has an attached client.", "typeRef": null}, {"name": "openerId", "type": "string", "optional": true, "description": "Opener target Id", "typeRef": "Target.TargetID"}, {"name": "canAccessOpener", "type": "boolean", "optional": false, "description": "Whether the target has access to the originating window.", "typeRef": null}, {"name": "openerFrameId", "type": "string", "optional": true, "description": "Frame id of originating window (is only set if target has an opener).", "typeRef": "Page.FrameId"}, {"name": "parentFrameId", "type": "string", "optional": true, "description": "Id of the parent frame, only present for the \\\"iframe\\\" targets.", "typeRef": "Page.FrameId"}, {"name": "browserContextId", "type": "string", "optional": true, "description": "", "typeRef": "Browser.BrowserContextID"}, {"name": "subtype", "type": "string", "optional": true, "description": "Provides additional details for specific target types. For example, for the type of \\\"page\\\", this may be set to \\\"prerender\\\".", "typeRef": null}]);
1235
1372
  inspectorBackend.registerType("Target.FilterEntry", [{"name": "exclude", "type": "boolean", "optional": true, "description": "If set, causes exclusion of matching targets from the list.", "typeRef": null}, {"name": "type", "type": "string", "optional": true, "description": "If not present, matches any type.", "typeRef": null}]);
1236
1373
  inspectorBackend.registerType("Target.TargetFilter", [{"name": "TargetFilter", "type": "array", "optional": false, "description": "The entries in TargetFilter are matched sequentially against targets and the first entry that matches determines if the target is included or not, depending on the value of `exclude` field in the entry. If filter is not specified, the one assumed is [{type: \\\"browser\\\", exclude: true}, {type: \\\"tab\\\", exclude: true}, {}] (i.e. include everything but `browser` and `tab`).", "typeRef": "Target.FilterEntry"}]);
1237
1374
  inspectorBackend.registerType("Target.RemoteLocation", [{"name": "host", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "port", "type": "number", "optional": false, "description": "", "typeRef": null}]);
@@ -1258,26 +1395,6 @@ inspectorBackend.registerEnum("Tracing.StartRequestTransferMode", {ReportEvents:
1258
1395
  inspectorBackend.registerCommand("Tracing.start", [{"name": "categories", "type": "string", "optional": true, "description": "Category/tag filter", "typeRef": null}, {"name": "options", "type": "string", "optional": true, "description": "Tracing options", "typeRef": null}, {"name": "bufferUsageReportingInterval", "type": "number", "optional": true, "description": "If set, the agent will issue bufferUsage events at this interval, specified in milliseconds", "typeRef": null}, {"name": "transferMode", "type": "string", "optional": true, "description": "Whether to report trace events as series of dataCollected events or to save trace to a stream (defaults to `ReportEvents`).", "typeRef": "Tracing.StartRequestTransferMode"}, {"name": "streamFormat", "type": "string", "optional": true, "description": "Trace data format to use. This only applies when using `ReturnAsStream` transfer mode (defaults to `json`).", "typeRef": "Tracing.StreamFormat"}, {"name": "streamCompression", "type": "string", "optional": true, "description": "Compression format to use. This only applies when using `ReturnAsStream` transfer mode (defaults to `none`)", "typeRef": "Tracing.StreamCompression"}, {"name": "traceConfig", "type": "object", "optional": true, "description": "", "typeRef": "Tracing.TraceConfig"}, {"name": "perfettoConfig", "type": "string", "optional": true, "description": "Base64-encoded serialized perfetto.protos.TraceConfig protobuf message When specified, the parameters `categories`, `options`, `traceConfig` are ignored.", "typeRef": null}, {"name": "tracingBackend", "type": "string", "optional": true, "description": "Backend type (defaults to `auto`)", "typeRef": "Tracing.TracingBackend"}], [], "Start trace events collection.");
1259
1396
  inspectorBackend.registerType("Tracing.TraceConfig", [{"name": "recordMode", "type": "string", "optional": true, "description": "Controls how the trace buffer stores data. The default is `recordUntilFull`.", "typeRef": null}, {"name": "traceBufferSizeInKb", "type": "number", "optional": true, "description": "Size of the trace buffer in kilobytes. If not specified or zero is passed, a default value of 200 MB would be used.", "typeRef": null}, {"name": "enableSampling", "type": "boolean", "optional": true, "description": "Turns on JavaScript stack sampling.", "typeRef": null}, {"name": "enableSystrace", "type": "boolean", "optional": true, "description": "Turns on system tracing.", "typeRef": null}, {"name": "enableArgumentFilter", "type": "boolean", "optional": true, "description": "Turns on argument filter.", "typeRef": null}, {"name": "includedCategories", "type": "array", "optional": true, "description": "Included category filters.", "typeRef": "string"}, {"name": "excludedCategories", "type": "array", "optional": true, "description": "Excluded category filters.", "typeRef": "string"}, {"name": "syntheticDelays", "type": "array", "optional": true, "description": "Configuration to synthesize the delays in tracing.", "typeRef": "string"}, {"name": "memoryDumpConfig", "type": "object", "optional": true, "description": "Configuration for memory dump triggers. Used only when \\\"memory-infra\\\" category is enabled.", "typeRef": "Tracing.MemoryDumpConfig"}]);
1260
1397
 
1261
- // Fetch.
1262
- inspectorBackend.registerEnum("Fetch.RequestStage", {Request: "Request", Response: "Response"});
1263
- inspectorBackend.registerEnum("Fetch.AuthChallengeSource", {Server: "Server", Proxy: "Proxy"});
1264
- inspectorBackend.registerEnum("Fetch.AuthChallengeResponseResponse", {Default: "Default", CancelAuth: "CancelAuth", ProvideCredentials: "ProvideCredentials"});
1265
- inspectorBackend.registerEvent("Fetch.requestPaused", ["requestId", "request", "frameId", "resourceType", "responseErrorReason", "responseStatusCode", "responseStatusText", "responseHeaders", "networkId", "redirectedRequestId"]);
1266
- inspectorBackend.registerEvent("Fetch.authRequired", ["requestId", "request", "frameId", "resourceType", "authChallenge"]);
1267
- inspectorBackend.registerCommand("Fetch.disable", [], [], "Disables the fetch domain.");
1268
- inspectorBackend.registerCommand("Fetch.enable", [{"name": "patterns", "type": "array", "optional": true, "description": "If specified, only requests matching any of these patterns will produce fetchRequested event and will be paused until clients response. If not set, all requests will be affected.", "typeRef": "Fetch.RequestPattern"}, {"name": "handleAuthRequests", "type": "boolean", "optional": true, "description": "If true, authRequired events will be issued and requests will be paused expecting a call to continueWithAuth.", "typeRef": null}], [], "Enables issuing of requestPaused events. A request will be paused until client calls one of failRequest, fulfillRequest or continueRequest/continueWithAuth.");
1269
- inspectorBackend.registerCommand("Fetch.failRequest", [{"name": "requestId", "type": "string", "optional": false, "description": "An id the client received in requestPaused event.", "typeRef": "Fetch.RequestId"}, {"name": "errorReason", "type": "string", "optional": false, "description": "Causes the request to fail with the given reason.", "typeRef": "Network.ErrorReason"}], [], "Causes the request to fail with specified reason.");
1270
- inspectorBackend.registerCommand("Fetch.fulfillRequest", [{"name": "requestId", "type": "string", "optional": false, "description": "An id the client received in requestPaused event.", "typeRef": "Fetch.RequestId"}, {"name": "responseCode", "type": "number", "optional": false, "description": "An HTTP response code.", "typeRef": null}, {"name": "responseHeaders", "type": "array", "optional": true, "description": "Response headers.", "typeRef": "Fetch.HeaderEntry"}, {"name": "binaryResponseHeaders", "type": "string", "optional": true, "description": "Alternative way of specifying response headers as a \\0-separated series of name: value pairs. Prefer the above method unless you need to represent some non-UTF8 values that can't be transmitted over the protocol as text.", "typeRef": null}, {"name": "body", "type": "string", "optional": true, "description": "A response body. If absent, original response body will be used if the request is intercepted at the response stage and empty body will be used if the request is intercepted at the request stage.", "typeRef": null}, {"name": "responsePhrase", "type": "string", "optional": true, "description": "A textual representation of responseCode. If absent, a standard phrase matching responseCode is used.", "typeRef": null}], [], "Provides response to the request.");
1271
- inspectorBackend.registerCommand("Fetch.continueRequest", [{"name": "requestId", "type": "string", "optional": false, "description": "An id the client received in requestPaused event.", "typeRef": "Fetch.RequestId"}, {"name": "url", "type": "string", "optional": true, "description": "If set, the request url will be modified in a way that's not observable by page.", "typeRef": null}, {"name": "method", "type": "string", "optional": true, "description": "If set, the request method is overridden.", "typeRef": null}, {"name": "postData", "type": "string", "optional": true, "description": "If set, overrides the post data in the request.", "typeRef": null}, {"name": "headers", "type": "array", "optional": true, "description": "If set, overrides the request headers. Note that the overrides do not extend to subsequent redirect hops, if a redirect happens. Another override may be applied to a different request produced by a redirect.", "typeRef": "Fetch.HeaderEntry"}, {"name": "interceptResponse", "type": "boolean", "optional": true, "description": "If set, overrides response interception behavior for this request.", "typeRef": null}], [], "Continues the request, optionally modifying some of its parameters.");
1272
- inspectorBackend.registerCommand("Fetch.continueWithAuth", [{"name": "requestId", "type": "string", "optional": false, "description": "An id the client received in authRequired event.", "typeRef": "Fetch.RequestId"}, {"name": "authChallengeResponse", "type": "object", "optional": false, "description": "Response to with an authChallenge.", "typeRef": "Fetch.AuthChallengeResponse"}], [], "Continues a request supplying authChallengeResponse following authRequired event.");
1273
- inspectorBackend.registerCommand("Fetch.continueResponse", [{"name": "requestId", "type": "string", "optional": false, "description": "An id the client received in requestPaused event.", "typeRef": "Fetch.RequestId"}, {"name": "responseCode", "type": "number", "optional": true, "description": "An HTTP response code. If absent, original response code will be used.", "typeRef": null}, {"name": "responsePhrase", "type": "string", "optional": true, "description": "A textual representation of responseCode. If absent, a standard phrase matching responseCode is used.", "typeRef": null}, {"name": "responseHeaders", "type": "array", "optional": true, "description": "Response headers. If absent, original response headers will be used.", "typeRef": "Fetch.HeaderEntry"}, {"name": "binaryResponseHeaders", "type": "string", "optional": true, "description": "Alternative way of specifying response headers as a \\0-separated series of name: value pairs. Prefer the above method unless you need to represent some non-UTF8 values that can't be transmitted over the protocol as text.", "typeRef": null}], [], "Continues loading of the paused response, optionally modifying the response headers. If either responseCode or headers are modified, all of them must be present.");
1274
- inspectorBackend.registerCommand("Fetch.getResponseBody", [{"name": "requestId", "type": "string", "optional": false, "description": "Identifier for the intercepted request to get body for.", "typeRef": "Fetch.RequestId"}], ["body", "base64Encoded"], "Causes the body of the response to be received from the server and returned as a single string. May only be issued for a request that is paused in the Response stage and is mutually exclusive with takeResponseBodyForInterceptionAsStream. Calling other methods that affect the request or disabling fetch domain before body is received results in an undefined behavior. Note that the response body is not available for redirects. Requests paused in the _redirect received_ state may be differentiated by `responseCode` and presence of `location` response header, see comments to `requestPaused` for details.");
1275
- inspectorBackend.registerCommand("Fetch.takeResponseBodyAsStream", [{"name": "requestId", "type": "string", "optional": false, "description": "", "typeRef": "Fetch.RequestId"}], ["stream"], "Returns a handle to the stream representing the response body. The request must be paused in the HeadersReceived stage. Note that after this command the request can't be continued as is -- client either needs to cancel it or to provide the response body. The stream only supports sequential read, IO.read will fail if the position is specified. This method is mutually exclusive with getResponseBody. Calling other methods that affect the request or disabling fetch domain before body is received results in an undefined behavior.");
1276
- inspectorBackend.registerType("Fetch.RequestPattern", [{"name": "urlPattern", "type": "string", "optional": true, "description": "Wildcards (`'*'` -> zero or more, `'?'` -> exactly one) are allowed. Escape character is backslash. Omitting is equivalent to `\\\"*\\\"`.", "typeRef": null}, {"name": "resourceType", "type": "string", "optional": true, "description": "If set, only requests for matching resource types will be intercepted.", "typeRef": "Network.ResourceType"}, {"name": "requestStage", "type": "string", "optional": true, "description": "Stage at which to begin intercepting requests. Default is Request.", "typeRef": "Fetch.RequestStage"}]);
1277
- inspectorBackend.registerType("Fetch.HeaderEntry", [{"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "value", "type": "string", "optional": false, "description": "", "typeRef": null}]);
1278
- inspectorBackend.registerType("Fetch.AuthChallenge", [{"name": "source", "type": "string", "optional": true, "description": "Source of the authentication challenge.", "typeRef": null}, {"name": "origin", "type": "string", "optional": false, "description": "Origin of the challenger.", "typeRef": null}, {"name": "scheme", "type": "string", "optional": false, "description": "The authentication scheme used, such as basic or digest", "typeRef": null}, {"name": "realm", "type": "string", "optional": false, "description": "The realm of the challenge. May be empty.", "typeRef": null}]);
1279
- inspectorBackend.registerType("Fetch.AuthChallengeResponse", [{"name": "response", "type": "string", "optional": false, "description": "The decision on what to do in response to the authorization challenge. Default means deferring to the default behavior of the net stack, which will likely either the Cancel authentication or display a popup dialog box.", "typeRef": null}, {"name": "username", "type": "string", "optional": true, "description": "The username to provide, possibly empty. Should only be set if response is ProvideCredentials.", "typeRef": null}, {"name": "password", "type": "string", "optional": true, "description": "The password to provide, possibly empty. Should only be set if response is ProvideCredentials.", "typeRef": null}]);
1280
-
1281
1398
  // WebAudio.
1282
1399
  inspectorBackend.registerEnum("WebAudio.ContextType", {Realtime: "realtime", Offline: "offline"});
1283
1400
  inspectorBackend.registerEnum("WebAudio.ContextState", {Suspended: "suspended", Running: "running", Closed: "closed", Interrupted: "interrupted"});
@@ -1330,106 +1447,6 @@ inspectorBackend.registerCommand("WebAuthn.setCredentialProperties", [{"name": "
1330
1447
  inspectorBackend.registerType("WebAuthn.VirtualAuthenticatorOptions", [{"name": "protocol", "type": "string", "optional": false, "description": "", "typeRef": "WebAuthn.AuthenticatorProtocol"}, {"name": "ctap2Version", "type": "string", "optional": true, "description": "Defaults to ctap2_0. Ignored if |protocol| == u2f.", "typeRef": "WebAuthn.Ctap2Version"}, {"name": "transport", "type": "string", "optional": false, "description": "", "typeRef": "WebAuthn.AuthenticatorTransport"}, {"name": "hasResidentKey", "type": "boolean", "optional": true, "description": "Defaults to false.", "typeRef": null}, {"name": "hasUserVerification", "type": "boolean", "optional": true, "description": "Defaults to false.", "typeRef": null}, {"name": "hasLargeBlob", "type": "boolean", "optional": true, "description": "If set to true, the authenticator will support the largeBlob extension. https://w3c.github.io/webauthn#largeBlob Defaults to false.", "typeRef": null}, {"name": "hasCredBlob", "type": "boolean", "optional": true, "description": "If set to true, the authenticator will support the credBlob extension. https://fidoalliance.org/specs/fido-v2.1-rd-20201208/fido-client-to-authenticator-protocol-v2.1-rd-20201208.html#sctn-credBlob-extension Defaults to false.", "typeRef": null}, {"name": "hasMinPinLength", "type": "boolean", "optional": true, "description": "If set to true, the authenticator will support the minPinLength extension. https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-minpinlength-extension Defaults to false.", "typeRef": null}, {"name": "hasPrf", "type": "boolean", "optional": true, "description": "If set to true, the authenticator will support the prf extension. https://w3c.github.io/webauthn/#prf-extension Defaults to false.", "typeRef": null}, {"name": "automaticPresenceSimulation", "type": "boolean", "optional": true, "description": "If set to true, tests of user presence will succeed immediately. Otherwise, they will not be resolved. Defaults to true.", "typeRef": null}, {"name": "isUserVerified", "type": "boolean", "optional": true, "description": "Sets whether User Verification succeeds or fails for an authenticator. Defaults to false.", "typeRef": null}, {"name": "defaultBackupEligibility", "type": "boolean", "optional": true, "description": "Credentials created by this authenticator will have the backup eligibility (BE) flag set to this value. Defaults to false. https://w3c.github.io/webauthn/#sctn-credential-backup", "typeRef": null}, {"name": "defaultBackupState", "type": "boolean", "optional": true, "description": "Credentials created by this authenticator will have the backup state (BS) flag set to this value. Defaults to false. https://w3c.github.io/webauthn/#sctn-credential-backup", "typeRef": null}]);
1331
1448
  inspectorBackend.registerType("WebAuthn.Credential", [{"name": "credentialId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "isResidentCredential", "type": "boolean", "optional": false, "description": "", "typeRef": null}, {"name": "rpId", "type": "string", "optional": true, "description": "Relying Party ID the credential is scoped to. Must be set when adding a credential.", "typeRef": null}, {"name": "privateKey", "type": "string", "optional": false, "description": "The ECDSA P-256 private key in PKCS#8 format.", "typeRef": null}, {"name": "userHandle", "type": "string", "optional": true, "description": "An opaque byte sequence with a maximum size of 64 bytes mapping the credential to a specific user.", "typeRef": null}, {"name": "signCount", "type": "number", "optional": false, "description": "Signature counter. This is incremented by one for each successful assertion. See https://w3c.github.io/webauthn/#signature-counter", "typeRef": null}, {"name": "largeBlob", "type": "string", "optional": true, "description": "The large blob associated with the credential. See https://w3c.github.io/webauthn/#sctn-large-blob-extension", "typeRef": null}, {"name": "backupEligibility", "type": "boolean", "optional": true, "description": "Assertions returned by this credential will have the backup eligibility (BE) flag set to this value. Defaults to the authenticator's defaultBackupEligibility value.", "typeRef": null}, {"name": "backupState", "type": "boolean", "optional": true, "description": "Assertions returned by this credential will have the backup state (BS) flag set to this value. Defaults to the authenticator's defaultBackupState value.", "typeRef": null}, {"name": "userName", "type": "string", "optional": true, "description": "The credential's user.name property. Equivalent to empty if not set. https://w3c.github.io/webauthn/#dom-publickeycredentialentity-name", "typeRef": null}, {"name": "userDisplayName", "type": "string", "optional": true, "description": "The credential's user.displayName property. Equivalent to empty if not set. https://w3c.github.io/webauthn/#dom-publickeycredentialuserentity-displayname", "typeRef": null}]);
1332
1449
 
1333
- // Media.
1334
- inspectorBackend.registerEnum("Media.PlayerMessageLevel", {Error: "error", Warning: "warning", Info: "info", Debug: "debug"});
1335
- inspectorBackend.registerEvent("Media.playerPropertiesChanged", ["playerId", "properties"]);
1336
- inspectorBackend.registerEvent("Media.playerEventsAdded", ["playerId", "events"]);
1337
- inspectorBackend.registerEvent("Media.playerMessagesLogged", ["playerId", "messages"]);
1338
- inspectorBackend.registerEvent("Media.playerErrorsRaised", ["playerId", "errors"]);
1339
- inspectorBackend.registerEvent("Media.playersCreated", ["players"]);
1340
- inspectorBackend.registerCommand("Media.enable", [], [], "Enables the Media domain");
1341
- inspectorBackend.registerCommand("Media.disable", [], [], "Disables the Media domain.");
1342
- inspectorBackend.registerType("Media.PlayerMessage", [{"name": "level", "type": "string", "optional": false, "description": "Keep in sync with MediaLogMessageLevel We are currently keeping the message level 'error' separate from the PlayerError type because right now they represent different things, this one being a DVLOG(ERROR) style log message that gets printed based on what log level is selected in the UI, and the other is a representation of a media::PipelineStatus object. Soon however we're going to be moving away from using PipelineStatus for errors and introducing a new error type which should hopefully let us integrate the error log level into the PlayerError type.", "typeRef": null}, {"name": "message", "type": "string", "optional": false, "description": "", "typeRef": null}]);
1343
- inspectorBackend.registerType("Media.PlayerProperty", [{"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "value", "type": "string", "optional": false, "description": "", "typeRef": null}]);
1344
- inspectorBackend.registerType("Media.PlayerEvent", [{"name": "timestamp", "type": "number", "optional": false, "description": "", "typeRef": "Media.Timestamp"}, {"name": "value", "type": "string", "optional": false, "description": "", "typeRef": null}]);
1345
- inspectorBackend.registerType("Media.PlayerErrorSourceLocation", [{"name": "file", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "line", "type": "number", "optional": false, "description": "", "typeRef": null}]);
1346
- inspectorBackend.registerType("Media.PlayerError", [{"name": "errorType", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "code", "type": "number", "optional": false, "description": "Code is the numeric enum entry for a specific set of error codes, such as PipelineStatusCodes in media/base/pipeline_status.h", "typeRef": null}, {"name": "stack", "type": "array", "optional": false, "description": "A trace of where this error was caused / where it passed through.", "typeRef": "Media.PlayerErrorSourceLocation"}, {"name": "cause", "type": "array", "optional": false, "description": "Errors potentially have a root cause error, ie, a DecoderError might be caused by an WindowsError", "typeRef": "Media.PlayerError"}, {"name": "data", "type": "object", "optional": false, "description": "Extra data attached to an error, such as an HRESULT, Video Codec, etc.", "typeRef": null}]);
1347
-
1348
- // DeviceAccess.
1349
- inspectorBackend.registerEvent("DeviceAccess.deviceRequestPrompted", ["id", "devices"]);
1350
- inspectorBackend.registerCommand("DeviceAccess.enable", [], [], "Enable events in this domain.");
1351
- inspectorBackend.registerCommand("DeviceAccess.disable", [], [], "Disable events in this domain.");
1352
- inspectorBackend.registerCommand("DeviceAccess.selectPrompt", [{"name": "id", "type": "string", "optional": false, "description": "", "typeRef": "DeviceAccess.RequestId"}, {"name": "deviceId", "type": "string", "optional": false, "description": "", "typeRef": "DeviceAccess.DeviceId"}], [], "Select a device in response to a DeviceAccess.deviceRequestPrompted event.");
1353
- inspectorBackend.registerCommand("DeviceAccess.cancelPrompt", [{"name": "id", "type": "string", "optional": false, "description": "", "typeRef": "DeviceAccess.RequestId"}], [], "Cancel a prompt in response to a DeviceAccess.deviceRequestPrompted event.");
1354
- inspectorBackend.registerType("DeviceAccess.PromptDevice", [{"name": "id", "type": "string", "optional": false, "description": "", "typeRef": "DeviceAccess.DeviceId"}, {"name": "name", "type": "string", "optional": false, "description": "Display name as it appears in a device request user prompt.", "typeRef": null}]);
1355
-
1356
- // Preload.
1357
- inspectorBackend.registerEnum("Preload.RuleSetErrorType", {SourceIsNotJsonObject: "SourceIsNotJsonObject", InvalidRulesSkipped: "InvalidRulesSkipped"});
1358
- inspectorBackend.registerEnum("Preload.SpeculationAction", {Prefetch: "Prefetch", Prerender: "Prerender"});
1359
- inspectorBackend.registerEnum("Preload.SpeculationTargetHint", {Blank: "Blank", Self: "Self"});
1360
- inspectorBackend.registerEnum("Preload.PrerenderFinalStatus", {Activated: "Activated", Destroyed: "Destroyed", LowEndDevice: "LowEndDevice", InvalidSchemeRedirect: "InvalidSchemeRedirect", InvalidSchemeNavigation: "InvalidSchemeNavigation", NavigationRequestBlockedByCsp: "NavigationRequestBlockedByCsp", MojoBinderPolicy: "MojoBinderPolicy", RendererProcessCrashed: "RendererProcessCrashed", RendererProcessKilled: "RendererProcessKilled", Download: "Download", TriggerDestroyed: "TriggerDestroyed", NavigationNotCommitted: "NavigationNotCommitted", NavigationBadHttpStatus: "NavigationBadHttpStatus", ClientCertRequested: "ClientCertRequested", NavigationRequestNetworkError: "NavigationRequestNetworkError", CancelAllHostsForTesting: "CancelAllHostsForTesting", DidFailLoad: "DidFailLoad", Stop: "Stop", SslCertificateError: "SslCertificateError", LoginAuthRequested: "LoginAuthRequested", UaChangeRequiresReload: "UaChangeRequiresReload", BlockedByClient: "BlockedByClient", AudioOutputDeviceRequested: "AudioOutputDeviceRequested", MixedContent: "MixedContent", TriggerBackgrounded: "TriggerBackgrounded", MemoryLimitExceeded: "MemoryLimitExceeded", DataSaverEnabled: "DataSaverEnabled", TriggerUrlHasEffectiveUrl: "TriggerUrlHasEffectiveUrl", ActivatedBeforeStarted: "ActivatedBeforeStarted", InactivePageRestriction: "InactivePageRestriction", StartFailed: "StartFailed", TimeoutBackgrounded: "TimeoutBackgrounded", CrossSiteRedirectInInitialNavigation: "CrossSiteRedirectInInitialNavigation", CrossSiteNavigationInInitialNavigation: "CrossSiteNavigationInInitialNavigation", SameSiteCrossOriginRedirectNotOptInInInitialNavigation: "SameSiteCrossOriginRedirectNotOptInInInitialNavigation", SameSiteCrossOriginNavigationNotOptInInInitialNavigation: "SameSiteCrossOriginNavigationNotOptInInInitialNavigation", ActivationNavigationParameterMismatch: "ActivationNavigationParameterMismatch", ActivatedInBackground: "ActivatedInBackground", EmbedderHostDisallowed: "EmbedderHostDisallowed", ActivationNavigationDestroyedBeforeSuccess: "ActivationNavigationDestroyedBeforeSuccess", TabClosedByUserGesture: "TabClosedByUserGesture", TabClosedWithoutUserGesture: "TabClosedWithoutUserGesture", PrimaryMainFrameRendererProcessCrashed: "PrimaryMainFrameRendererProcessCrashed", PrimaryMainFrameRendererProcessKilled: "PrimaryMainFrameRendererProcessKilled", ActivationFramePolicyNotCompatible: "ActivationFramePolicyNotCompatible", PreloadingDisabled: "PreloadingDisabled", BatterySaverEnabled: "BatterySaverEnabled", ActivatedDuringMainFrameNavigation: "ActivatedDuringMainFrameNavigation", PreloadingUnsupportedByWebContents: "PreloadingUnsupportedByWebContents", CrossSiteRedirectInMainFrameNavigation: "CrossSiteRedirectInMainFrameNavigation", CrossSiteNavigationInMainFrameNavigation: "CrossSiteNavigationInMainFrameNavigation", SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation: "SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation", SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation: "SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation", MemoryPressureOnTrigger: "MemoryPressureOnTrigger", MemoryPressureAfterTriggered: "MemoryPressureAfterTriggered", PrerenderingDisabledByDevTools: "PrerenderingDisabledByDevTools", SpeculationRuleRemoved: "SpeculationRuleRemoved", ActivatedWithAuxiliaryBrowsingContexts: "ActivatedWithAuxiliaryBrowsingContexts", MaxNumOfRunningEagerPrerendersExceeded: "MaxNumOfRunningEagerPrerendersExceeded", MaxNumOfRunningNonEagerPrerendersExceeded: "MaxNumOfRunningNonEagerPrerendersExceeded", MaxNumOfRunningEmbedderPrerendersExceeded: "MaxNumOfRunningEmbedderPrerendersExceeded", PrerenderingUrlHasEffectiveUrl: "PrerenderingUrlHasEffectiveUrl", RedirectedPrerenderingUrlHasEffectiveUrl: "RedirectedPrerenderingUrlHasEffectiveUrl", ActivationUrlHasEffectiveUrl: "ActivationUrlHasEffectiveUrl", JavaScriptInterfaceAdded: "JavaScriptInterfaceAdded", JavaScriptInterfaceRemoved: "JavaScriptInterfaceRemoved", AllPrerenderingCanceled: "AllPrerenderingCanceled", WindowClosed: "WindowClosed", SlowNetwork: "SlowNetwork", OtherPrerenderedPageActivated: "OtherPrerenderedPageActivated", V8OptimizerDisabled: "V8OptimizerDisabled", PrerenderFailedDuringPrefetch: "PrerenderFailedDuringPrefetch", BrowsingDataRemoved: "BrowsingDataRemoved"});
1361
- inspectorBackend.registerEnum("Preload.PreloadingStatus", {Pending: "Pending", Running: "Running", Ready: "Ready", Success: "Success", Failure: "Failure", NotSupported: "NotSupported"});
1362
- inspectorBackend.registerEnum("Preload.PrefetchStatus", {PrefetchAllowed: "PrefetchAllowed", PrefetchFailedIneligibleRedirect: "PrefetchFailedIneligibleRedirect", PrefetchFailedInvalidRedirect: "PrefetchFailedInvalidRedirect", PrefetchFailedMIMENotSupported: "PrefetchFailedMIMENotSupported", PrefetchFailedNetError: "PrefetchFailedNetError", PrefetchFailedNon2XX: "PrefetchFailedNon2XX", PrefetchEvictedAfterBrowsingDataRemoved: "PrefetchEvictedAfterBrowsingDataRemoved", PrefetchEvictedAfterCandidateRemoved: "PrefetchEvictedAfterCandidateRemoved", PrefetchEvictedForNewerPrefetch: "PrefetchEvictedForNewerPrefetch", PrefetchHeldback: "PrefetchHeldback", PrefetchIneligibleRetryAfter: "PrefetchIneligibleRetryAfter", PrefetchIsPrivacyDecoy: "PrefetchIsPrivacyDecoy", PrefetchIsStale: "PrefetchIsStale", PrefetchNotEligibleBrowserContextOffTheRecord: "PrefetchNotEligibleBrowserContextOffTheRecord", PrefetchNotEligibleDataSaverEnabled: "PrefetchNotEligibleDataSaverEnabled", PrefetchNotEligibleExistingProxy: "PrefetchNotEligibleExistingProxy", PrefetchNotEligibleHostIsNonUnique: "PrefetchNotEligibleHostIsNonUnique", PrefetchNotEligibleNonDefaultStoragePartition: "PrefetchNotEligibleNonDefaultStoragePartition", PrefetchNotEligibleSameSiteCrossOriginPrefetchRequiredProxy: "PrefetchNotEligibleSameSiteCrossOriginPrefetchRequiredProxy", PrefetchNotEligibleSchemeIsNotHttps: "PrefetchNotEligibleSchemeIsNotHttps", PrefetchNotEligibleUserHasCookies: "PrefetchNotEligibleUserHasCookies", PrefetchNotEligibleUserHasServiceWorker: "PrefetchNotEligibleUserHasServiceWorker", PrefetchNotEligibleUserHasServiceWorkerNoFetchHandler: "PrefetchNotEligibleUserHasServiceWorkerNoFetchHandler", PrefetchNotEligibleRedirectFromServiceWorker: "PrefetchNotEligibleRedirectFromServiceWorker", PrefetchNotEligibleRedirectToServiceWorker: "PrefetchNotEligibleRedirectToServiceWorker", PrefetchNotEligibleBatterySaverEnabled: "PrefetchNotEligibleBatterySaverEnabled", PrefetchNotEligiblePreloadingDisabled: "PrefetchNotEligiblePreloadingDisabled", PrefetchNotFinishedInTime: "PrefetchNotFinishedInTime", PrefetchNotStarted: "PrefetchNotStarted", PrefetchNotUsedCookiesChanged: "PrefetchNotUsedCookiesChanged", PrefetchProxyNotAvailable: "PrefetchProxyNotAvailable", PrefetchResponseUsed: "PrefetchResponseUsed", PrefetchSuccessfulButNotUsed: "PrefetchSuccessfulButNotUsed", PrefetchNotUsedProbeFailed: "PrefetchNotUsedProbeFailed"});
1363
- inspectorBackend.registerEvent("Preload.ruleSetUpdated", ["ruleSet"]);
1364
- inspectorBackend.registerEvent("Preload.ruleSetRemoved", ["id"]);
1365
- inspectorBackend.registerEvent("Preload.preloadEnabledStateUpdated", ["disabledByPreference", "disabledByDataSaver", "disabledByBatterySaver", "disabledByHoldbackPrefetchSpeculationRules", "disabledByHoldbackPrerenderSpeculationRules"]);
1366
- inspectorBackend.registerEvent("Preload.prefetchStatusUpdated", ["key", "pipelineId", "initiatingFrameId", "prefetchUrl", "status", "prefetchStatus", "requestId"]);
1367
- inspectorBackend.registerEvent("Preload.prerenderStatusUpdated", ["key", "pipelineId", "status", "prerenderStatus", "disallowedMojoInterface", "mismatchedHeaders"]);
1368
- inspectorBackend.registerEvent("Preload.preloadingAttemptSourcesUpdated", ["loaderId", "preloadingAttemptSources"]);
1369
- inspectorBackend.registerCommand("Preload.enable", [], [], "");
1370
- inspectorBackend.registerCommand("Preload.disable", [], [], "");
1371
- inspectorBackend.registerType("Preload.RuleSet", [{"name": "id", "type": "string", "optional": false, "description": "", "typeRef": "Preload.RuleSetId"}, {"name": "loaderId", "type": "string", "optional": false, "description": "Identifies a document which the rule set is associated with.", "typeRef": "Network.LoaderId"}, {"name": "sourceText", "type": "string", "optional": false, "description": "Source text of JSON representing the rule set. If it comes from `<script>` tag, it is the textContent of the node. Note that it is a JSON for valid case. See also: - https://wicg.github.io/nav-speculation/speculation-rules.html - https://github.com/WICG/nav-speculation/blob/main/triggers.md", "typeRef": null}, {"name": "backendNodeId", "type": "number", "optional": true, "description": "A speculation rule set is either added through an inline `<script>` tag or through an external resource via the 'Speculation-Rules' HTTP header. For the first case, we include the BackendNodeId of the relevant `<script>` tag. For the second case, we include the external URL where the rule set was loaded from, and also RequestId if Network domain is enabled. See also: - https://wicg.github.io/nav-speculation/speculation-rules.html#speculation-rules-script - https://wicg.github.io/nav-speculation/speculation-rules.html#speculation-rules-header", "typeRef": "DOM.BackendNodeId"}, {"name": "url", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "requestId", "type": "string", "optional": true, "description": "", "typeRef": "Network.RequestId"}, {"name": "errorType", "type": "string", "optional": true, "description": "Error information `errorMessage` is null iff `errorType` is null.", "typeRef": "Preload.RuleSetErrorType"}, {"name": "errorMessage", "type": "string", "optional": true, "description": "TODO(https://crbug.com/1425354): Replace this property with structured error.", "typeRef": null}]);
1372
- inspectorBackend.registerType("Preload.PreloadingAttemptKey", [{"name": "loaderId", "type": "string", "optional": false, "description": "", "typeRef": "Network.LoaderId"}, {"name": "action", "type": "string", "optional": false, "description": "", "typeRef": "Preload.SpeculationAction"}, {"name": "url", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "targetHint", "type": "string", "optional": true, "description": "", "typeRef": "Preload.SpeculationTargetHint"}]);
1373
- inspectorBackend.registerType("Preload.PreloadingAttemptSource", [{"name": "key", "type": "object", "optional": false, "description": "", "typeRef": "Preload.PreloadingAttemptKey"}, {"name": "ruleSetIds", "type": "array", "optional": false, "description": "", "typeRef": "Preload.RuleSetId"}, {"name": "nodeIds", "type": "array", "optional": false, "description": "", "typeRef": "DOM.BackendNodeId"}]);
1374
- inspectorBackend.registerType("Preload.PrerenderMismatchedHeaders", [{"name": "headerName", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "initialValue", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "activationValue", "type": "string", "optional": true, "description": "", "typeRef": null}]);
1375
-
1376
- // FedCm.
1377
- inspectorBackend.registerEnum("FedCm.LoginState", {SignIn: "SignIn", SignUp: "SignUp"});
1378
- inspectorBackend.registerEnum("FedCm.DialogType", {AccountChooser: "AccountChooser", AutoReauthn: "AutoReauthn", ConfirmIdpLogin: "ConfirmIdpLogin", Error: "Error"});
1379
- inspectorBackend.registerEnum("FedCm.DialogButton", {ConfirmIdpLoginContinue: "ConfirmIdpLoginContinue", ErrorGotIt: "ErrorGotIt", ErrorMoreDetails: "ErrorMoreDetails"});
1380
- inspectorBackend.registerEnum("FedCm.AccountUrlType", {TermsOfService: "TermsOfService", PrivacyPolicy: "PrivacyPolicy"});
1381
- inspectorBackend.registerEvent("FedCm.dialogShown", ["dialogId", "dialogType", "accounts", "title", "subtitle"]);
1382
- inspectorBackend.registerEvent("FedCm.dialogClosed", ["dialogId"]);
1383
- inspectorBackend.registerCommand("FedCm.enable", [{"name": "disableRejectionDelay", "type": "boolean", "optional": true, "description": "Allows callers to disable the promise rejection delay that would normally happen, if this is unimportant to what's being tested. (step 4 of https://fedidcg.github.io/FedCM/#browser-api-rp-sign-in)", "typeRef": null}], [], "");
1384
- inspectorBackend.registerCommand("FedCm.disable", [], [], "");
1385
- inspectorBackend.registerCommand("FedCm.selectAccount", [{"name": "dialogId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "accountIndex", "type": "number", "optional": false, "description": "", "typeRef": null}], [], "");
1386
- inspectorBackend.registerCommand("FedCm.clickDialogButton", [{"name": "dialogId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "dialogButton", "type": "string", "optional": false, "description": "", "typeRef": "FedCm.DialogButton"}], [], "");
1387
- inspectorBackend.registerCommand("FedCm.openUrl", [{"name": "dialogId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "accountIndex", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "accountUrlType", "type": "string", "optional": false, "description": "", "typeRef": "FedCm.AccountUrlType"}], [], "");
1388
- inspectorBackend.registerCommand("FedCm.dismissDialog", [{"name": "dialogId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "triggerCooldown", "type": "boolean", "optional": true, "description": "", "typeRef": null}], [], "");
1389
- inspectorBackend.registerCommand("FedCm.resetCooldown", [], [], "Resets the cooldown time, if any, to allow the next FedCM call to show a dialog even if one was recently dismissed by the user.");
1390
- inspectorBackend.registerType("FedCm.Account", [{"name": "accountId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "email", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "givenName", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "pictureUrl", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "idpConfigUrl", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "idpLoginUrl", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "loginState", "type": "string", "optional": false, "description": "", "typeRef": "FedCm.LoginState"}, {"name": "termsOfServiceUrl", "type": "string", "optional": true, "description": "These two are only set if the loginState is signUp", "typeRef": null}, {"name": "privacyPolicyUrl", "type": "string", "optional": true, "description": "", "typeRef": null}]);
1391
-
1392
- // PWA.
1393
- inspectorBackend.registerEnum("PWA.DisplayMode", {Standalone: "standalone", Browser: "browser"});
1394
- inspectorBackend.registerCommand("PWA.getOsAppState", [{"name": "manifestId", "type": "string", "optional": false, "description": "The id from the webapp's manifest file, commonly it's the url of the site installing the webapp. See https://web.dev/learn/pwa/web-app-manifest.", "typeRef": null}], ["badgeCount", "fileHandlers"], "Returns the following OS state for the given manifest id.");
1395
- inspectorBackend.registerCommand("PWA.install", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "installUrlOrBundleUrl", "type": "string", "optional": true, "description": "The location of the app or bundle overriding the one derived from the manifestId.", "typeRef": null}], [], "Installs the given manifest identity, optionally using the given install_url or IWA bundle location. TODO(crbug.com/337872319) Support IWA to meet the following specific requirement. IWA-specific install description: If the manifest_id is isolated-app://, install_url_or_bundle_url is required, and can be either an http(s) URL or file:// URL pointing to a signed web bundle (.swbn). The .swbn file's signing key must correspond to manifest_id. If Chrome is not in IWA dev mode, the installation will fail, regardless of the state of the allowlist.");
1396
- inspectorBackend.registerCommand("PWA.uninstall", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Uninstalls the given manifest_id and closes any opened app windows.");
1397
- inspectorBackend.registerCommand("PWA.launch", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "url", "type": "string", "optional": true, "description": "", "typeRef": null}], ["targetId"], "Launches the installed web app, or an url in the same web app instead of the default start url if it is provided. Returns a page Target.TargetID which can be used to attach to via Target.attachToTarget or similar APIs.");
1398
- inspectorBackend.registerCommand("PWA.launchFilesInApp", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "files", "type": "array", "optional": false, "description": "", "typeRef": "string"}], ["targetIds"], "Opens one or more local files from an installed web app identified by its manifestId. The web app needs to have file handlers registered to process the files. The API returns one or more page Target.TargetIDs which can be used to attach to via Target.attachToTarget or similar APIs. If some files in the parameters cannot be handled by the web app, they will be ignored. If none of the files can be handled, this API returns an error. If no files are provided as the parameter, this API also returns an error. According to the definition of the file handlers in the manifest file, one Target.TargetID may represent a page handling one or more files. The order of the returned Target.TargetIDs is not guaranteed. TODO(crbug.com/339454034): Check the existences of the input files.");
1399
- inspectorBackend.registerCommand("PWA.openCurrentPageInApp", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Opens the current page in its web app identified by the manifest id, needs to be called on a page target. This function returns immediately without waiting for the app to finish loading.");
1400
- inspectorBackend.registerCommand("PWA.changeAppUserSettings", [{"name": "manifestId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "linkCapturing", "type": "boolean", "optional": true, "description": "If user allows the links clicked on by the user in the app's scope, or extended scope if the manifest has scope extensions and the flags `DesktopPWAsLinkCapturingWithScopeExtensions` and `WebAppEnableScopeExtensions` are enabled. Note, the API does not support resetting the linkCapturing to the initial value, uninstalling and installing the web app again will reset it. TODO(crbug.com/339453269): Setting this value on ChromeOS is not supported yet.", "typeRef": null}, {"name": "displayMode", "type": "string", "optional": true, "description": "", "typeRef": "PWA.DisplayMode"}], [], "Changes user settings of the web app identified by its manifestId. If the app was not installed, this command returns an error. Unset parameters will be ignored; unrecognized values will cause an error. Unlike the ones defined in the manifest files of the web apps, these settings are provided by the browser and controlled by the users, they impact the way the browser handling the web apps. See the comment of each parameter.");
1401
- inspectorBackend.registerType("PWA.FileHandlerAccept", [{"name": "mediaType", "type": "string", "optional": false, "description": "New name of the mimetype according to https://www.iana.org/assignments/media-types/media-types.xhtml", "typeRef": null}, {"name": "fileExtensions", "type": "array", "optional": false, "description": "", "typeRef": "string"}]);
1402
- inspectorBackend.registerType("PWA.FileHandler", [{"name": "action", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "accepts", "type": "array", "optional": false, "description": "", "typeRef": "PWA.FileHandlerAccept"}, {"name": "displayName", "type": "string", "optional": false, "description": "", "typeRef": null}]);
1403
-
1404
- // BluetoothEmulation.
1405
- inspectorBackend.registerEnum("BluetoothEmulation.CentralState", {Absent: "absent", PoweredOff: "powered-off", PoweredOn: "powered-on"});
1406
- inspectorBackend.registerEnum("BluetoothEmulation.GATTOperationType", {Connection: "connection", Discovery: "discovery"});
1407
- inspectorBackend.registerEnum("BluetoothEmulation.CharacteristicWriteType", {WriteDefaultDeprecated: "write-default-deprecated", WriteWithResponse: "write-with-response", WriteWithoutResponse: "write-without-response"});
1408
- inspectorBackend.registerEnum("BluetoothEmulation.CharacteristicOperationType", {Read: "read", Write: "write", SubscribeToNotifications: "subscribe-to-notifications", UnsubscribeFromNotifications: "unsubscribe-from-notifications"});
1409
- inspectorBackend.registerEnum("BluetoothEmulation.DescriptorOperationType", {Read: "read", Write: "write"});
1410
- inspectorBackend.registerEvent("BluetoothEmulation.gattOperationReceived", ["address", "type"]);
1411
- inspectorBackend.registerEvent("BluetoothEmulation.characteristicOperationReceived", ["characteristicId", "type", "data", "writeType"]);
1412
- inspectorBackend.registerEvent("BluetoothEmulation.descriptorOperationReceived", ["descriptorId", "type", "data"]);
1413
- inspectorBackend.registerCommand("BluetoothEmulation.enable", [{"name": "state", "type": "string", "optional": false, "description": "State of the simulated central.", "typeRef": "BluetoothEmulation.CentralState"}, {"name": "leSupported", "type": "boolean", "optional": false, "description": "If the simulated central supports low-energy.", "typeRef": null}], [], "Enable the BluetoothEmulation domain.");
1414
- inspectorBackend.registerCommand("BluetoothEmulation.setSimulatedCentralState", [{"name": "state", "type": "string", "optional": false, "description": "State of the simulated central.", "typeRef": "BluetoothEmulation.CentralState"}], [], "Set the state of the simulated central.");
1415
- inspectorBackend.registerCommand("BluetoothEmulation.disable", [], [], "Disable the BluetoothEmulation domain.");
1416
- inspectorBackend.registerCommand("BluetoothEmulation.simulatePreconnectedPeripheral", [{"name": "address", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "name", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "manufacturerData", "type": "array", "optional": false, "description": "", "typeRef": "BluetoothEmulation.ManufacturerData"}, {"name": "knownServiceUuids", "type": "array", "optional": false, "description": "", "typeRef": "string"}], [], "Simulates a peripheral with |address|, |name| and |knownServiceUuids| that has already been connected to the system.");
1417
- inspectorBackend.registerCommand("BluetoothEmulation.simulateAdvertisement", [{"name": "entry", "type": "object", "optional": false, "description": "", "typeRef": "BluetoothEmulation.ScanEntry"}], [], "Simulates an advertisement packet described in |entry| being received by the central.");
1418
- inspectorBackend.registerCommand("BluetoothEmulation.simulateGATTOperationResponse", [{"name": "address", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "type", "type": "string", "optional": false, "description": "", "typeRef": "BluetoothEmulation.GATTOperationType"}, {"name": "code", "type": "number", "optional": false, "description": "", "typeRef": null}], [], "Simulates the response code from the peripheral with |address| for a GATT operation of |type|. The |code| value follows the HCI Error Codes from Bluetooth Core Specification Vol 2 Part D 1.3 List Of Error Codes.");
1419
- inspectorBackend.registerCommand("BluetoothEmulation.simulateCharacteristicOperationResponse", [{"name": "characteristicId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "type", "type": "string", "optional": false, "description": "", "typeRef": "BluetoothEmulation.CharacteristicOperationType"}, {"name": "code", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "data", "type": "string", "optional": true, "description": "", "typeRef": null}], [], "Simulates the response from the characteristic with |characteristicId| for a characteristic operation of |type|. The |code| value follows the Error Codes from Bluetooth Core Specification Vol 3 Part F 3.4.1.1 Error Response. The |data| is expected to exist when simulating a successful read operation response.");
1420
- inspectorBackend.registerCommand("BluetoothEmulation.simulateDescriptorOperationResponse", [{"name": "descriptorId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "type", "type": "string", "optional": false, "description": "", "typeRef": "BluetoothEmulation.DescriptorOperationType"}, {"name": "code", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "data", "type": "string", "optional": true, "description": "", "typeRef": null}], [], "Simulates the response from the descriptor with |descriptorId| for a descriptor operation of |type|. The |code| value follows the Error Codes from Bluetooth Core Specification Vol 3 Part F 3.4.1.1 Error Response. The |data| is expected to exist when simulating a successful read operation response.");
1421
- inspectorBackend.registerCommand("BluetoothEmulation.addService", [{"name": "address", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "serviceUuid", "type": "string", "optional": false, "description": "", "typeRef": null}], ["serviceId"], "Adds a service with |serviceUuid| to the peripheral with |address|.");
1422
- inspectorBackend.registerCommand("BluetoothEmulation.removeService", [{"name": "serviceId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Removes the service respresented by |serviceId| from the simulated central.");
1423
- inspectorBackend.registerCommand("BluetoothEmulation.addCharacteristic", [{"name": "serviceId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "characteristicUuid", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "properties", "type": "object", "optional": false, "description": "", "typeRef": "BluetoothEmulation.CharacteristicProperties"}], ["characteristicId"], "Adds a characteristic with |characteristicUuid| and |properties| to the service represented by |serviceId|.");
1424
- inspectorBackend.registerCommand("BluetoothEmulation.removeCharacteristic", [{"name": "characteristicId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Removes the characteristic respresented by |characteristicId| from the simulated central.");
1425
- inspectorBackend.registerCommand("BluetoothEmulation.addDescriptor", [{"name": "characteristicId", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "descriptorUuid", "type": "string", "optional": false, "description": "", "typeRef": null}], ["descriptorId"], "Adds a descriptor with |descriptorUuid| to the characteristic respresented by |characteristicId|.");
1426
- inspectorBackend.registerCommand("BluetoothEmulation.removeDescriptor", [{"name": "descriptorId", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Removes the descriptor with |descriptorId| from the simulated central.");
1427
- inspectorBackend.registerCommand("BluetoothEmulation.simulateGATTDisconnection", [{"name": "address", "type": "string", "optional": false, "description": "", "typeRef": null}], [], "Simulates a GATT disconnection from the peripheral with |address|.");
1428
- inspectorBackend.registerType("BluetoothEmulation.ManufacturerData", [{"name": "key", "type": "number", "optional": false, "description": "Company identifier https://bitbucket.org/bluetooth-SIG/public/src/main/assigned_numbers/company_identifiers/company_identifiers.yaml https://usb.org/developers", "typeRef": null}, {"name": "data", "type": "string", "optional": false, "description": "Manufacturer-specific data", "typeRef": null}]);
1429
- inspectorBackend.registerType("BluetoothEmulation.ScanRecord", [{"name": "name", "type": "string", "optional": true, "description": "", "typeRef": null}, {"name": "uuids", "type": "array", "optional": true, "description": "", "typeRef": "string"}, {"name": "appearance", "type": "number", "optional": true, "description": "Stores the external appearance description of the device.", "typeRef": null}, {"name": "txPower", "type": "number", "optional": true, "description": "Stores the transmission power of a broadcasting device.", "typeRef": null}, {"name": "manufacturerData", "type": "array", "optional": true, "description": "Key is the company identifier and the value is an array of bytes of manufacturer specific data.", "typeRef": "BluetoothEmulation.ManufacturerData"}]);
1430
- inspectorBackend.registerType("BluetoothEmulation.ScanEntry", [{"name": "deviceAddress", "type": "string", "optional": false, "description": "", "typeRef": null}, {"name": "rssi", "type": "number", "optional": false, "description": "", "typeRef": null}, {"name": "scanRecord", "type": "object", "optional": false, "description": "", "typeRef": "BluetoothEmulation.ScanRecord"}]);
1431
- inspectorBackend.registerType("BluetoothEmulation.CharacteristicProperties", [{"name": "broadcast", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "read", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "writeWithoutResponse", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "write", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "notify", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "indicate", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "authenticatedSignedWrites", "type": "boolean", "optional": true, "description": "", "typeRef": null}, {"name": "extendedProperties", "type": "boolean", "optional": true, "description": "", "typeRef": null}]);
1432
-
1433
1450
  // Debugger.
1434
1451
  inspectorBackend.registerEnum("Debugger.ScopeType", {Global: "global", Local: "local", With: "with", Closure: "closure", Catch: "catch", Block: "block", Script: "script", Eval: "eval", Module: "module", WasmExpressionStack: "wasm-expression-stack"});
1435
1452
  inspectorBackend.registerEnum("Debugger.BreakLocationType", {DebuggerStatement: "debuggerStatement", Call: "call", Return: "return"});