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.
- package/.geminiignore +6 -0
- package/.stylelintignore +0 -1
- package/AUTHORS +3 -0
- package/WATCHLISTS +0 -4
- package/config/owner/COMMON_OWNERS +3 -0
- package/docs/README.md +2 -2
- package/docs/architecture_of_devtools.md +8 -8
- package/docs/committers_policy.md +2 -0
- package/docs/contributing/README.md +29 -5
- package/docs/contributing/changes.md +1 -1
- package/docs/contributing/images/quickstart-vscode-tsversion.png +0 -0
- package/docs/contributing/infrastructure.md +89 -0
- package/docs/cookbook/localization.md +86 -79
- package/docs/get_the_code.md +9 -9
- package/docs/styleguide/ux/components.md +190 -2
- package/docs/styleguide/ux/glossary.md +16 -0
- package/docs/styleguide/ux/images/context-menu-example.png +0 -0
- package/docs/ui_engineering.md +80 -19
- package/eslint.config.mjs +93 -18
- package/extension-api/ExtensionAPI.d.ts +3 -0
- package/front_end/Images/generate-css-vars.js +1 -1
- package/front_end/Images/readme.md +1 -2
- package/front_end/Images/rollup.config.mjs +12 -1
- package/front_end/Images/src/baseline-high-availability.svg +17 -0
- package/front_end/Images/src/baseline-limited-availability.svg +19 -0
- package/front_end/Images/src/baseline-low-availability.svg +31 -0
- package/front_end/Images/src/bucket.svg +4 -0
- package/front_end/Images/src/gdp-logo-standalone.svg +9 -0
- package/front_end/Images/src/label-auto.svg +3 -0
- package/front_end/Images/src/shield.svg +3 -0
- package/front_end/Images/src/smart-assistant.svg +3 -1
- package/front_end/Images/src/speculative-loads.svg +1 -0
- package/front_end/Images/src/text-analysis.svg +3 -0
- package/front_end/Tests.js +78 -230
- package/front_end/application_tokens.css +7 -1
- package/front_end/core/common/Base64.ts +3 -3
- package/front_end/core/common/Color.ts +38 -0
- package/front_end/core/common/Debouncer.ts +3 -3
- package/front_end/core/common/Gzip.ts +72 -0
- package/front_end/core/common/ResourceType.ts +29 -29
- package/front_end/core/common/ReturnToPanel.ts +15 -0
- package/front_end/core/common/Revealer.ts +10 -10
- package/front_end/core/common/SettingRegistration.ts +22 -22
- package/front_end/core/common/Settings.ts +99 -8
- package/front_end/core/common/SimpleHistoryManager.ts +0 -17
- package/front_end/core/common/common.ts +4 -0
- package/front_end/core/host/AidaClient.ts +187 -31
- package/front_end/core/host/GdpClient.ts +151 -0
- package/front_end/core/host/InspectorFrontendHost.ts +64 -48
- package/front_end/core/host/InspectorFrontendHostAPI.ts +40 -1
- package/front_end/core/host/ResourceLoader.ts +15 -15
- package/front_end/core/host/UserMetrics.ts +26 -37
- package/front_end/core/host/host.ts +2 -0
- package/front_end/core/i18n/NumberFormatter.ts +9 -9
- package/front_end/core/i18n/collect-ui-strings.js +3 -3
- package/front_end/core/i18n/time-utilities.ts +3 -14
- package/front_end/core/platform/Brand.ts +8 -1
- package/front_end/core/platform/DevToolsPath.ts +1 -1
- package/front_end/core/platform/StringUtilities.ts +34 -8
- package/front_end/core/protocol_client/InspectorBackend.ts +9 -9
- package/front_end/core/root/Runtime.ts +66 -8
- package/front_end/core/sdk/AnimationModel.ts +1 -95
- package/front_end/core/sdk/AutofillModel.ts +8 -2
- package/front_end/core/sdk/CPUProfilerModel.ts +2 -2
- package/front_end/core/sdk/CSSContainerQuery.ts +3 -1
- package/front_end/core/sdk/CSSMatchedStyles.ts +232 -68
- package/front_end/core/sdk/CSSModel.ts +20 -7
- package/front_end/core/sdk/CSSPropertyParser.ts +19 -11
- package/front_end/core/sdk/CSSPropertyParserMatchers.ts +297 -86
- package/front_end/core/sdk/CSSRule.ts +44 -44
- package/front_end/core/sdk/CSSStyleSheetHeader.ts +7 -6
- package/front_end/core/sdk/ChildTargetManager.ts +1 -1
- package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +3 -8
- package/front_end/core/sdk/Connections.ts +17 -30
- package/front_end/core/sdk/ConsoleModel.ts +9 -9
- package/front_end/core/sdk/DOMModel.ts +103 -16
- package/front_end/core/sdk/DebuggerModel.ts +55 -11
- package/front_end/core/sdk/EmulationModel.ts +13 -0
- package/front_end/core/sdk/EventBreakpointsModel.ts +2 -2
- package/front_end/core/sdk/FrameAssociated.ts +4 -1
- package/front_end/core/sdk/IOModel.ts +28 -2
- package/front_end/core/sdk/NetworkManager.ts +137 -105
- package/front_end/core/sdk/NetworkRequest.ts +747 -616
- package/front_end/core/sdk/OverlayModel.ts +4 -8
- package/front_end/core/sdk/PageResourceLoader.ts +32 -13
- package/front_end/core/sdk/PreloadingModel.ts +1 -0
- package/front_end/core/sdk/RehydratingConnection.ts +13 -14
- package/front_end/core/sdk/RemoteObject.ts +0 -3
- package/front_end/core/sdk/Resource.ts +0 -5
- package/front_end/core/sdk/RuntimeModel.ts +2 -1
- package/front_end/core/sdk/Script.ts +7 -8
- package/front_end/core/sdk/ServerTiming.ts +12 -12
- package/front_end/core/sdk/ServiceWorkerCacheModel.ts +7 -3
- package/front_end/core/sdk/ServiceWorkerManager.ts +14 -18
- package/front_end/core/sdk/SourceMap.ts +24 -13
- package/front_end/core/sdk/SourceMapCache.ts +54 -0
- package/front_end/core/sdk/SourceMapFunctionRanges.ts +15 -9
- package/front_end/core/sdk/SourceMapManager.ts +20 -7
- package/front_end/core/sdk/SourceMapScopeChainEntry.ts +14 -14
- package/front_end/core/sdk/SourceMapScopesInfo.ts +26 -25
- package/front_end/core/sdk/StorageBucketsModel.ts +4 -0
- package/front_end/core/sdk/Target.ts +2 -2
- package/front_end/core/sdk/TargetManager.ts +1 -1
- package/front_end/core/sdk/sdk-meta.ts +86 -86
- package/front_end/core/sdk/sdk.ts +2 -2
- package/front_end/design_system_tokens.css +1 -1
- package/front_end/devtools_compatibility.js +201 -178
- package/front_end/entrypoints/inspector_main/InspectorMain.ts +12 -0
- package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +3 -3
- package/front_end/entrypoints/inspector_main/RenderingOptions.ts +1 -1
- package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +1 -1
- package/front_end/entrypoints/js_app/js_app.ts +3 -3
- package/front_end/entrypoints/lighthouse_worker/LighthouseWorkerService.ts +1 -1
- package/front_end/entrypoints/main/GlobalAiButton.ts +211 -0
- package/front_end/entrypoints/main/MainImpl.ts +158 -47
- package/front_end/entrypoints/main/globalAiButton.css +72 -0
- package/front_end/entrypoints/main/main-meta.ts +97 -42
- package/front_end/entrypoints/main/main.ts +2 -0
- package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +6 -6
- package/front_end/entrypoints/node_app/NodeMain.ts +8 -7
- package/front_end/entrypoints/node_app/node_app.ts +5 -5
- package/front_end/entrypoints/wasmparser_worker/WasmParserWorker.ts +1 -1
- package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
- package/front_end/generated/Deprecation.ts +7 -29
- package/front_end/generated/InspectorBackendCommands.js +185 -168
- package/front_end/generated/SupportedCSSProperties.js +275 -173
- package/front_end/generated/protocol-mapping.d.ts +691 -605
- package/front_end/generated/protocol-proxy-api.d.ts +785 -670
- package/front_end/generated/protocol.ts +11868 -11502
- package/front_end/global_typings/global_defs.d.ts +5 -0
- package/front_end/models/ai_assistance/AiHistoryStorage.snapshot.txt +66 -0
- package/front_end/models/ai_assistance/AiHistoryStorage.ts +95 -6
- package/front_end/models/ai_assistance/AiUtils.ts +1 -1
- package/front_end/models/ai_assistance/ConversationHandler.ts +360 -0
- package/front_end/models/ai_assistance/ExtensionScope.ts +4 -16
- package/front_end/models/ai_assistance/README.md +79 -0
- package/front_end/models/ai_assistance/agents/AiAgent.ts +77 -98
- package/front_end/models/ai_assistance/agents/FileAgent.ts +1 -7
- package/front_end/models/ai_assistance/agents/NetworkAgent.ts +23 -22
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +1130 -120
- package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.ts +75 -5
- package/front_end/models/ai_assistance/agents/StylingAgent.ts +322 -340
- package/front_end/models/ai_assistance/ai_assistance.ts +4 -1
- package/front_end/models/ai_assistance/data_formatters/FileFormatter.ts +4 -1
- package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +8 -5
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +890 -0
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +724 -104
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +905 -0
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +377 -0
- package/front_end/models/ai_assistance/data_formatters/Types.ts +9 -0
- package/front_end/models/ai_assistance/debug.ts +1 -1
- package/front_end/models/ai_assistance/injected.ts +1 -1
- package/front_end/models/ai_code_completion/AiCodeCompletion.ts +401 -0
- package/front_end/models/ai_code_completion/ai_code_completion.ts +6 -0
- package/front_end/models/ai_code_completion/debug.ts +30 -0
- package/front_end/models/autofill_manager/AutofillManager.ts +16 -20
- package/front_end/models/bindings/CSSWorkspaceBinding.ts +0 -4
- package/front_end/models/bindings/CompilerScriptMapping.ts +12 -5
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +92 -25
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +94 -21
- package/front_end/models/bindings/FileUtils.ts +6 -22
- package/front_end/models/bindings/LiveLocation.ts +0 -5
- package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +0 -4
- package/front_end/models/bindings/ResourceMapping.ts +0 -4
- package/front_end/models/bindings/ResourceScriptMapping.ts +10 -4
- package/front_end/models/bindings/SASSSourceMapping.ts +1 -1
- package/front_end/models/bindings/StylesSourceMapping.ts +0 -5
- package/front_end/models/bindings/bindings.ts +0 -2
- package/front_end/models/cpu_profile/CPUProfileDataModel.ts +4 -2
- package/front_end/models/elements/ElementUpdateRecord.ts +101 -0
- package/{scripts/eslint_rules/tests/utils/RuleTester.ts → front_end/models/elements/elements.ts} +4 -5
- package/front_end/models/emulation/DeviceModeModel.ts +18 -35
- package/front_end/models/emulation/EmulatedDevices.ts +12 -12
- package/front_end/models/extensions/ExtensionAPI.ts +9 -5
- package/front_end/models/extensions/ExtensionPanel.ts +11 -8
- package/front_end/models/extensions/ExtensionServer.ts +116 -31
- package/front_end/models/extensions/ExtensionView.ts +5 -1
- package/front_end/models/extensions/LanguageExtensionEndpoint.ts +14 -7
- package/front_end/{ui/legacy/Geometry.ts → models/geometry/GeometryImpl.ts} +4 -4
- package/front_end/models/geometry/geometry.ts +5 -0
- package/front_end/models/har/HARFormat.ts +1 -1
- package/front_end/models/har/Importer.ts +35 -1
- package/front_end/models/har/Writer.ts +2 -2
- package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -1
- package/front_end/models/issues_manager/ClientHintIssue.ts +1 -1
- package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +5 -5
- package/front_end/models/issues_manager/CookieIssue.ts +2 -2
- package/front_end/models/issues_manager/CorsIssue.ts +3 -3
- package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +2 -2
- package/front_end/models/issues_manager/{SelectElementAccessibilityIssue.ts → ElementAccessibilityIssue.ts} +29 -21
- package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +1 -1
- package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +1 -1
- package/front_end/models/issues_manager/GenericIssue.ts +4 -4
- package/front_end/models/issues_manager/HeavyAdIssue.ts +1 -1
- package/front_end/models/issues_manager/Issue.ts +6 -6
- package/front_end/models/issues_manager/IssuesManager.ts +8 -3
- package/front_end/models/issues_manager/LowTextContrastIssue.ts +1 -1
- package/front_end/models/issues_manager/MarkdownIssueDescription.ts +1 -1
- package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
- package/front_end/models/issues_manager/PartitioningBlobURLIssue.ts +2 -2
- package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
- package/front_end/models/issues_manager/SRIMessageSignatureIssue.ts +3 -3
- package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +1 -1
- package/front_end/models/issues_manager/SharedDictionaryIssue.ts +1 -1
- package/front_end/models/issues_manager/UnencodedDigestIssue.ts +88 -0
- package/front_end/models/issues_manager/descriptions/sriSignatureInputHeaderValueNotInnerList.md +1 -1
- package/front_end/models/issues_manager/descriptions/sriValidationFailedIntegrityMismatch.md +1 -3
- package/front_end/models/issues_manager/descriptions/summaryElementAccessibilityInteractiveContentSummaryDescendant.md +3 -0
- package/front_end/models/issues_manager/descriptions/unencodedDigestIncorrectDigestLength.md +12 -0
- package/front_end/models/issues_manager/descriptions/unencodedDigestIncorrectDigestType.md +17 -0
- package/front_end/models/issues_manager/descriptions/unencodedDigestMalformedDictionary.md +14 -0
- package/front_end/models/issues_manager/descriptions/unencodedDigestUnknownAlgorithm.md +15 -0
- package/front_end/models/issues_manager/descriptions/userReidentificationBlocked.md +1 -1
- package/front_end/models/issues_manager/issues_manager.ts +4 -2
- package/front_end/models/javascript_metadata/NativeFunctions.js +205 -131
- package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/rollup.config.mjs +1 -1
- package/front_end/models/logs/NetworkLog.ts +74 -83
- package/front_end/models/logs/logs-meta.ts +4 -4
- package/front_end/models/network_time_calculator/Calculator.ts +14 -0
- package/front_end/{panels/network → models/network_time_calculator}/NetworkTimeCalculator.ts +39 -44
- package/front_end/models/network_time_calculator/network_time_calculator.ts +6 -0
- package/front_end/models/persistence/AutomaticFileSystemManager.ts +14 -21
- package/front_end/models/persistence/EditFileSystemView.ts +10 -6
- package/front_end/models/persistence/IsolatedFileSystem.ts +27 -9
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +16 -3
- package/front_end/models/persistence/NetworkPersistenceManager.ts +9 -3
- package/front_end/models/persistence/PersistenceActions.ts +28 -15
- package/front_end/models/persistence/PersistenceImpl.ts +7 -4
- package/front_end/models/persistence/PersistenceUtils.ts +12 -7
- package/front_end/models/persistence/PlatformFileSystem.ts +11 -2
- package/front_end/models/persistence/WorkspaceSettingsTab.ts +12 -6
- package/front_end/models/persistence/editFileSystemView.css +17 -15
- package/front_end/models/persistence/persistence-meta.ts +12 -10
- package/front_end/models/persistence/workspaceSettingsTab.css +29 -27
- package/front_end/models/project_settings/ProjectSettingsModel.ts +2 -2
- package/front_end/models/source_map_scopes/NamesResolver.ts +1 -1
- package/front_end/models/stack_trace/README.md +14 -0
- package/front_end/models/stack_trace/StackTrace.ts +53 -0
- package/front_end/models/stack_trace/StackTraceImpl.ts +85 -0
- package/front_end/models/stack_trace/StackTraceModel.ts +128 -0
- package/front_end/models/stack_trace/Trie.ts +154 -0
- package/front_end/models/stack_trace/stack_trace.ts +9 -0
- package/front_end/models/stack_trace/stack_trace_impl.ts +13 -0
- package/front_end/models/text_utils/ContentProvider.ts +1 -3
- package/front_end/models/text_utils/StaticContentProvider.ts +1 -5
- package/front_end/models/text_utils/TextUtils.ts +2 -3
- package/front_end/models/trace/LanternComputationData.ts +1 -0
- package/front_end/models/trace/ModelImpl.ts +19 -7
- package/front_end/models/trace/Processor.ts +52 -62
- package/front_end/models/trace/extras/ThirdParties.ts +2 -3
- package/front_end/models/trace/extras/TraceTree.ts +7 -6
- package/front_end/models/trace/extras/extras.ts +0 -2
- package/front_end/models/trace/handlers/AnimationFramesHandler.ts +20 -11
- package/front_end/models/trace/handlers/AnimationHandler.ts +4 -4
- package/front_end/models/trace/handlers/AsyncJSCallsHandler.ts +8 -9
- package/front_end/models/trace/handlers/AuctionWorkletsHandler.ts +10 -10
- package/front_end/models/trace/handlers/DOMStatsHandler.ts +2 -2
- package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +66 -57
- package/front_end/models/trace/handlers/FlowsHandler.ts +10 -10
- package/front_end/models/trace/handlers/FramesHandler.ts +46 -37
- package/front_end/models/trace/handlers/GPUHandler.ts +2 -2
- package/front_end/models/trace/handlers/ImagePaintingHandler.ts +54 -11
- package/front_end/models/trace/handlers/InitiatorsHandler.ts +36 -14
- package/front_end/models/trace/handlers/InvalidationsHandler.ts +6 -6
- package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +4 -3
- package/front_end/models/trace/handlers/LargestTextPaintHandler.ts +2 -2
- package/front_end/models/trace/handlers/LayerTreeHandler.ts +10 -10
- package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +49 -45
- package/front_end/models/trace/handlers/MemoryHandler.ts +2 -2
- package/front_end/models/trace/handlers/MetaHandler.ts +23 -22
- package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +102 -53
- package/front_end/models/trace/handlers/PageFramesHandler.ts +2 -2
- package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +5 -5
- package/front_end/models/trace/handlers/RendererHandler.ts +24 -31
- package/front_end/models/trace/handlers/SamplesHandler.ts +19 -21
- package/front_end/models/trace/handlers/ScreenshotsHandler.ts +8 -8
- package/front_end/models/trace/handlers/ScriptsHandler.ts +10 -6
- package/front_end/models/trace/handlers/SelectorStatsHandler.ts +67 -2
- package/front_end/models/trace/handlers/UserInteractionsHandler.ts +18 -16
- package/front_end/models/trace/handlers/UserTimingsHandler.ts +71 -34
- package/front_end/models/trace/handlers/WarningsHandler.ts +12 -12
- package/front_end/models/trace/handlers/WorkersHandler.ts +6 -6
- package/front_end/models/trace/handlers/helpers.ts +19 -14
- package/front_end/models/trace/handlers/types.ts +5 -1
- package/front_end/models/trace/helpers/Extensions.ts +10 -10
- package/front_end/models/trace/helpers/SamplesIntegrator.ts +24 -33
- package/front_end/models/trace/helpers/SyntheticEvents.ts +2 -2
- package/front_end/models/trace/helpers/Timing.ts +66 -3
- package/front_end/models/trace/helpers/Trace.ts +49 -21
- package/front_end/models/trace/helpers/TreeHelpers.ts +1 -1
- package/front_end/models/trace/insights/CLSCulprits.ts +85 -23
- package/front_end/models/trace/insights/Cache.ts +12 -0
- package/front_end/models/trace/insights/Common.ts +56 -22
- package/front_end/models/trace/insights/DOMSize.ts +48 -1
- package/front_end/models/trace/insights/DocumentLatency.ts +59 -4
- package/front_end/models/trace/insights/DuplicatedJavaScript.ts +15 -4
- package/front_end/models/trace/insights/FontDisplay.ts +8 -0
- package/front_end/models/trace/insights/ForcedReflow.ts +29 -4
- package/front_end/models/trace/insights/{InteractionToNextPaint.ts → INPBreakdown.ts} +63 -16
- package/front_end/models/trace/insights/ImageDelivery.ts +39 -7
- package/front_end/models/trace/insights/LCPBreakdown.ts +255 -0
- package/front_end/models/trace/insights/LCPDiscovery.ts +84 -8
- package/front_end/models/trace/insights/LegacyJavaScript.ts +14 -4
- package/front_end/models/trace/insights/Models.ts +2 -2
- package/front_end/models/trace/insights/ModernHTTP.ts +35 -18
- package/front_end/models/trace/insights/NetworkDependencyTree.ts +45 -13
- package/front_end/models/trace/insights/RenderBlocking.ts +13 -1
- package/front_end/models/trace/insights/SlowCSSSelector.ts +46 -27
- package/front_end/models/trace/insights/ThirdParties.ts +40 -0
- package/front_end/models/trace/insights/Viewport.ts +41 -3
- package/front_end/models/trace/insights/types.ts +5 -2
- package/front_end/models/trace/lantern/graph/BaseNode.ts +1 -1
- package/front_end/models/trace/lantern/simulation/SimulationTimingMap.ts +1 -1
- package/front_end/models/trace/trace.ts +0 -2
- package/front_end/models/trace/types/Configuration.ts +8 -0
- package/front_end/models/trace/types/Extensions.ts +46 -15
- package/front_end/models/trace/types/File.ts +5 -2
- package/front_end/models/trace/types/Overlays.ts +138 -0
- package/front_end/models/trace/types/Timing.ts +1 -0
- package/front_end/models/trace/types/TraceEvents.ts +96 -63
- package/front_end/models/trace/types/types.ts +1 -0
- package/front_end/models/workspace/FileManager.ts +6 -3
- package/front_end/models/{bindings → workspace}/IgnoreListManager.ts +36 -33
- package/front_end/models/workspace/UISourceCode.ts +17 -7
- package/front_end/models/workspace/WorkspaceImpl.ts +1 -1
- package/front_end/models/workspace/workspace.ts +2 -0
- package/front_end/models/workspace_diff/WorkspaceDiff.ts +7 -2
- package/front_end/panels/accessibility/ARIAAttributesView.ts +18 -64
- package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +12 -9
- package/front_end/panels/accessibility/AccessibilityNodeView.ts +31 -28
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +8 -12
- package/front_end/panels/accessibility/AccessibilityStrings.ts +87 -87
- package/front_end/panels/accessibility/AccessibilitySubPane.ts +6 -6
- package/front_end/panels/accessibility/SourceOrderView.ts +95 -61
- package/front_end/panels/accessibility/accessibilityProperties.css +5 -0
- package/front_end/panels/ai_assistance/AiAssistancePanel.snapshot.txt +32 -0
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +308 -340
- package/front_end/panels/ai_assistance/PatchWidget.ts +31 -30
- package/front_end/panels/ai_assistance/SelectWorkspaceDialog.ts +31 -20
- package/front_end/panels/ai_assistance/aiAssistancePanel.css +1 -0
- package/front_end/panels/ai_assistance/ai_assistance-meta.ts +40 -20
- package/front_end/panels/ai_assistance/components/ChatView.ts +99 -46
- package/front_end/panels/ai_assistance/components/ExploreWidget.ts +10 -24
- package/front_end/panels/ai_assistance/components/UserActionRow.ts +25 -3
- package/front_end/panels/ai_assistance/components/chatView.css +0 -9
- package/front_end/panels/ai_assistance/components/exploreWidget.css +104 -102
- package/front_end/panels/ai_assistance/components/userActionRow.css +95 -94
- package/front_end/panels/ai_assistance/selectWorkspaceDialog.css +70 -69
- package/front_end/panels/animation/AnimationGroupPreviewUI.ts +1 -10
- package/front_end/panels/animation/AnimationTimeline.ts +183 -169
- package/front_end/panels/animation/AnimationUI.ts +6 -5
- package/front_end/panels/animation/animation.ts +0 -2
- package/front_end/panels/animation/animationTimeline.css +0 -67
- package/front_end/panels/application/AppManifestView.ts +158 -139
- package/front_end/panels/application/ApplicationPanelSidebar.ts +53 -54
- package/front_end/panels/application/BackForwardCacheTreeElement.ts +1 -1
- package/front_end/panels/application/BackgroundServiceView.ts +46 -44
- package/front_end/panels/application/CookieItemsView.ts +13 -14
- package/front_end/panels/application/DOMStorageItemsView.ts +5 -5
- package/front_end/panels/application/ExtensionStorageItemsView.ts +3 -3
- package/front_end/panels/application/IndexedDBModel.ts +3 -0
- package/front_end/panels/application/IndexedDBViews.ts +58 -32
- package/front_end/panels/application/InterestGroupStorageModel.ts +3 -0
- package/front_end/panels/application/InterestGroupStorageView.ts +4 -4
- package/front_end/panels/application/InterestGroupTreeElement.ts +1 -1
- package/front_end/panels/application/KeyValueStorageItemsView.ts +12 -11
- package/front_end/panels/application/OpenedWindowDetailsView.ts +18 -18
- package/front_end/panels/application/PreloadingTreeElement.ts +5 -5
- package/front_end/panels/application/ReportingApiTreeElement.ts +1 -1
- package/front_end/panels/application/ReportingApiView.ts +153 -50
- package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +5 -5
- package/front_end/panels/application/ServiceWorkerCacheViews.ts +20 -17
- package/front_end/panels/application/ServiceWorkerUpdateCycleView.ts +7 -7
- package/front_end/panels/application/ServiceWorkersView.ts +40 -76
- package/front_end/panels/application/SharedStorageEventsView.ts +10 -20
- package/front_end/panels/application/SharedStorageItemsView.ts +11 -11
- package/front_end/panels/application/SharedStorageListTreeElement.ts +1 -1
- package/front_end/panels/application/SharedStorageModel.ts +3 -0
- package/front_end/panels/application/StorageBucketsTreeElement.ts +4 -4
- package/front_end/panels/application/StorageItemsToolbar.ts +7 -7
- package/front_end/panels/application/StorageView.ts +15 -13
- package/front_end/panels/application/application-meta.ts +7 -7
- package/front_end/panels/application/application.ts +0 -2
- package/front_end/panels/application/components/BackForwardCacheStrings.ts +14 -9
- package/front_end/panels/application/components/BackForwardCacheView.ts +11 -37
- package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +1 -0
- package/front_end/panels/application/components/EndpointsGrid.ts +6 -2
- package/front_end/panels/application/components/FrameDetailsView.ts +88 -57
- package/front_end/panels/application/components/InterestGroupAccessGrid.ts +9 -10
- package/front_end/panels/application/components/OriginTrialTreeView.ts +13 -22
- package/front_end/panels/application/components/PermissionsPolicySection.ts +11 -16
- package/front_end/panels/application/components/ProtocolHandlersView.ts +10 -10
- package/front_end/panels/application/components/ReportsGrid.ts +10 -11
- package/front_end/panels/application/components/SharedStorageAccessGrid.ts +107 -101
- package/front_end/panels/application/components/SharedStorageMetadataView.ts +8 -8
- package/front_end/panels/application/components/StackTrace.ts +6 -12
- package/front_end/panels/application/components/StorageMetadataView.ts +22 -26
- package/front_end/panels/application/components/TrustTokensView.ts +3 -3
- package/front_end/panels/application/components/frameDetailsReportView.css +1 -1
- package/front_end/panels/application/components/sharedStorageAccessGrid.css +19 -17
- package/front_end/panels/application/preloading/PreloadingView.ts +29 -24
- package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +9 -9
- package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +22 -22
- package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +28 -29
- package/front_end/panels/application/preloading/components/PreloadingGrid.ts +5 -7
- package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +4 -4
- package/front_end/panels/application/preloading/components/PreloadingString.ts +34 -34
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +4 -10
- package/front_end/panels/application/preloading/components/RuleSetGrid.ts +10 -10
- package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +22 -23
- package/front_end/panels/application/resourcesSidebar.css +0 -4
- package/front_end/panels/autofill/AutofillView.ts +212 -217
- package/front_end/panels/autofill/autofill-meta.ts +3 -4
- package/front_end/panels/autofill/autofillView.css +85 -82
- package/front_end/panels/browser_debugger/CSPViolationBreakpointsSidebarPane.ts +5 -6
- package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +219 -206
- package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +27 -27
- package/front_end/panels/browser_debugger/EventListenerBreakpointsSidebarPane.ts +9 -6
- package/front_end/panels/browser_debugger/ObjectEventListenersSidebarPane.ts +3 -2
- package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +16 -14
- package/front_end/panels/browser_debugger/browser_debugger-meta.ts +17 -17
- package/front_end/panels/browser_debugger/browser_debugger.ts +2 -0
- package/front_end/panels/browser_debugger/categorizedBreakpointsSidebarPane.css +1 -1
- package/front_end/panels/changes/ChangesSidebar.ts +7 -7
- package/front_end/panels/changes/ChangesView.ts +6 -5
- package/front_end/panels/changes/CombinedDiffView.ts +2 -2
- package/front_end/panels/common/AiCodeCompletionDisclaimer.ts +186 -0
- package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +139 -0
- package/front_end/panels/common/AiCodeCompletionTeaser.ts +258 -0
- package/front_end/panels/common/BadgeNotification.ts +121 -0
- package/front_end/panels/common/FreDialog.ts +140 -0
- package/front_end/panels/common/aiCodeCompletionDisclaimer.css +57 -0
- package/front_end/panels/common/aiCodeCompletionSummaryToolbar.css +101 -0
- package/front_end/panels/common/aiCodeCompletionTeaser.css +42 -0
- package/front_end/panels/common/badgeNotification.css +74 -0
- package/front_end/panels/common/common.css +0 -83
- package/front_end/panels/common/common.ts +11 -108
- package/front_end/panels/common/freDialog.css +88 -0
- package/front_end/panels/console/ConsoleContextSelector.ts +5 -5
- package/front_end/panels/console/ConsolePanel.ts +1 -2
- package/front_end/panels/console/ConsolePinPane.ts +9 -9
- package/front_end/panels/console/ConsolePrompt.ts +187 -19
- package/front_end/panels/console/ConsoleSidebar.ts +170 -207
- package/front_end/panels/console/ConsoleView.ts +154 -62
- package/front_end/panels/console/ConsoleViewMessage.ts +80 -84
- package/front_end/panels/console/console-meta.ts +27 -27
- package/front_end/panels/console/consoleSidebar.css +2 -0
- package/front_end/panels/console/consoleView.css +22 -15
- package/front_end/panels/console_counters/WarningErrorCounter.ts +133 -100
- package/front_end/panels/coverage/CoverageListView.ts +30 -30
- package/front_end/panels/coverage/CoverageView.ts +35 -34
- package/front_end/panels/coverage/coverage-meta.ts +7 -7
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +51 -50
- package/front_end/panels/css_overview/CSSOverviewPanel.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +3 -3
- package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +3 -3
- package/front_end/panels/css_overview/CSSOverviewStartView.ts +8 -8
- package/front_end/panels/css_overview/CSSOverviewUnusedDeclarations.ts +7 -7
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +289 -287
- package/front_end/panels/css_overview/cssOverviewSidebarPanel.css +43 -42
- package/front_end/panels/css_overview/cssOverviewStartView.css +68 -66
- package/front_end/panels/css_overview/css_overview-meta.ts +2 -2
- package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +14 -14
- package/front_end/panels/developer_resources/DeveloperResourcesView.ts +5 -5
- package/front_end/panels/developer_resources/developerResourcesListView.css +19 -18
- package/front_end/panels/developer_resources/developerResourcesView.css +32 -30
- package/front_end/panels/elements/AccessibilityTreeView.ts +2 -1
- package/front_end/panels/elements/CSSRuleValidator.ts +41 -94
- package/front_end/panels/elements/CSSRuleValidatorHelper.ts +8 -0
- package/front_end/panels/elements/CSSValueTraceView.ts +1 -2
- package/front_end/panels/elements/ClassesPaneWidget.ts +5 -3
- package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +18 -9
- package/front_end/panels/elements/ComputedStyleWidget.ts +4 -3
- package/front_end/panels/elements/DOMLinkifier.ts +6 -4
- package/front_end/panels/elements/ElementIssueUtils.ts +14 -9
- package/front_end/panels/elements/ElementStatePaneWidget.ts +3 -3
- package/front_end/panels/elements/ElementsPanel.ts +105 -187
- package/front_end/panels/elements/ElementsSidebarPane.ts +1 -1
- package/front_end/panels/elements/ElementsTreeElement.ts +446 -86
- package/front_end/panels/elements/ElementsTreeOutline.ts +425 -258
- package/front_end/panels/elements/ElementsTreeOutlineRenderer.ts +83 -0
- package/front_end/panels/elements/EventListenersWidget.ts +112 -78
- package/front_end/panels/elements/ImagePreviewPopover.ts +1 -1
- package/front_end/panels/elements/InspectElementModeController.ts +13 -2
- package/front_end/panels/elements/LayersWidget.ts +95 -63
- package/front_end/panels/elements/LayoutPane.ts +593 -0
- package/front_end/panels/elements/MarkerDecorator.ts +2 -2
- package/front_end/panels/elements/MetricsSidebarPane.ts +6 -6
- package/front_end/panels/elements/NodeStackTraceWidget.ts +16 -14
- package/front_end/panels/elements/PlatformFontsWidget.ts +8 -8
- package/front_end/panels/elements/PropertiesWidget.ts +2 -2
- package/front_end/panels/elements/PropertyRenderer.ts +8 -11
- package/front_end/panels/elements/ShortcutTreeElement.ts +157 -0
- package/front_end/panels/elements/StyleEditorWidget.ts +1 -1
- package/front_end/panels/elements/StylePropertiesSection.ts +42 -44
- package/front_end/panels/elements/StylePropertyHighlighter.ts +9 -11
- package/front_end/panels/elements/StylePropertyTreeElement.ts +275 -108
- package/front_end/panels/elements/StylesSidebarPane.ts +47 -48
- package/front_end/panels/elements/TopLayerContainer.ts +8 -7
- package/front_end/panels/elements/components/AccessibilityTreeNode.ts +1 -1
- package/front_end/panels/elements/components/AdornerManager.ts +15 -0
- package/front_end/panels/elements/components/CSSHintDetailsView.ts +1 -1
- package/front_end/panels/elements/components/CSSPropertyDocsView.ts +188 -5
- package/front_end/panels/elements/components/CSSPropertyIconResolver.ts +2 -2
- package/front_end/panels/elements/components/CSSVariableValueView.ts +5 -5
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +2 -7
- package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +1 -1
- package/front_end/panels/elements/components/QueryContainer.ts +1 -4
- package/front_end/panels/elements/components/components.ts +0 -4
- package/front_end/panels/elements/components/cssPropertyDocsView.css +12 -1
- package/front_end/panels/elements/components/cssVariableValueView.css +1 -0
- package/front_end/panels/elements/domLinkifier.css +36 -35
- package/front_end/panels/elements/elementStatePaneWidget.css +46 -45
- package/front_end/panels/elements/elements-meta.ts +4 -13
- package/front_end/panels/elements/elements.ts +4 -3
- package/front_end/panels/elements/elementsTreeOutline.css +2 -1
- package/front_end/panels/elements/layersWidget.css +2 -11
- package/front_end/panels/elements/layoutPane.css +145 -0
- package/front_end/panels/elements/metricsSidebarPane.css +1 -1
- package/front_end/panels/elements/nodeStackTraceWidget.css +5 -4
- package/front_end/panels/elements/platformFontsWidget.css +32 -31
- package/front_end/panels/elements/stylePropertiesTreeOutline.css +2 -2
- package/front_end/panels/elements/stylesSidebarPane.css +1 -0
- package/front_end/panels/emulation/DeviceModeToolbar.ts +13 -50
- package/front_end/panels/emulation/DeviceModeView.ts +9 -9
- package/front_end/panels/emulation/InspectedPagePlaceholder.ts +1 -1
- package/front_end/panels/emulation/MediaQueryInspector.ts +4 -2
- package/front_end/panels/emulation/emulation-meta.ts +7 -7
- package/front_end/panels/event_listeners/EventListenersView.ts +34 -31
- package/front_end/panels/explain/PromptBuilder.ts +3 -1
- package/front_end/panels/explain/components/ConsoleInsight.ts +13 -34
- package/front_end/panels/explain/explain-meta.ts +3 -3
- package/front_end/panels/issues/AffectedBlockedByResponseView.ts +4 -4
- package/front_end/panels/issues/AffectedCookiesView.ts +6 -6
- package/front_end/panels/issues/AffectedDescendantsWithinSelectElementView.ts +6 -6
- package/front_end/panels/issues/AffectedDirectivesView.ts +9 -9
- package/front_end/panels/issues/AffectedDocumentsInQuirksModeView.ts +4 -4
- package/front_end/panels/issues/AffectedElementsView.ts +1 -1
- package/front_end/panels/issues/AffectedElementsWithLowContrastView.ts +6 -6
- package/front_end/panels/issues/AffectedHeavyAdView.ts +7 -7
- package/front_end/panels/issues/AffectedMetadataAllowedSitesView.ts +1 -1
- package/front_end/panels/issues/AffectedResourcesView.ts +6 -6
- package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +10 -10
- package/front_end/panels/issues/AffectedSourcesView.ts +1 -1
- package/front_end/panels/issues/AffectedTrackingSitesView.ts +1 -1
- package/front_end/panels/issues/CorsIssueDetailsView.ts +27 -27
- package/front_end/panels/issues/GenericIssueDetailsView.ts +3 -3
- package/front_end/panels/issues/HiddenIssuesRow.ts +55 -29
- package/front_end/panels/issues/IssueAggregator.ts +5 -11
- package/front_end/panels/issues/IssueKindView.ts +2 -2
- package/front_end/panels/issues/IssueView.ts +13 -13
- package/front_end/panels/issues/IssuesPane.ts +5 -4
- package/front_end/panels/issues/components/HideIssuesMenu.ts +1 -1
- package/front_end/panels/issues/issues-meta.ts +2 -2
- package/front_end/panels/js_timeline/js_timeline-meta.ts +6 -6
- package/front_end/panels/layer_viewer/LayerDetailsView.ts +43 -41
- package/front_end/panels/layer_viewer/LayerTreeOutline.ts +7 -7
- package/front_end/panels/layer_viewer/LayerViewHost.ts +1 -1
- package/front_end/panels/layer_viewer/Layers3DView.ts +28 -22
- package/front_end/panels/layer_viewer/PaintProfilerView.ts +9 -9
- package/front_end/panels/layer_viewer/TransformController.ts +14 -8
- package/front_end/panels/layer_viewer/layer_viewer-meta.ts +9 -9
- package/front_end/panels/layers/LayerTreeModel.ts +5 -5
- package/front_end/panels/layers/LayersPanel.ts +3 -3
- package/front_end/panels/layers/layers-meta.ts +2 -2
- package/front_end/panels/lighthouse/LighthouseController.ts +27 -27
- package/front_end/panels/lighthouse/LighthousePanel.ts +7 -7
- package/front_end/panels/lighthouse/LighthouseProtocolService.ts +31 -33
- package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +4 -2
- package/front_end/panels/lighthouse/LighthouseReportSelector.ts +2 -4
- package/front_end/panels/lighthouse/LighthouseStartView.ts +4 -3
- package/front_end/panels/lighthouse/LighthouseStatusView.ts +33 -32
- package/front_end/panels/lighthouse/LighthouseTimespanView.ts +2 -1
- package/front_end/panels/lighthouse/lighthouse-meta.ts +1 -1
- package/front_end/panels/lighthouse/lighthousePanel.css +9 -0
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +2 -2
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +5 -6
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +6 -10
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +3 -3
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +6 -6
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +2 -2
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +6 -7
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +1 -1
- package/front_end/panels/linear_memory_inspector/linear_memory_inspector-meta.ts +2 -2
- package/front_end/panels/media/EventDisplayTable.ts +5 -7
- package/front_end/panels/media/EventTimelineView.ts +4 -4
- package/front_end/panels/media/MainView.ts +52 -22
- package/front_end/panels/media/MediaModel.ts +4 -4
- package/front_end/panels/media/PlayerDetailView.ts +8 -8
- package/front_end/panels/media/PlayerListView.ts +15 -8
- package/front_end/panels/media/PlayerMessagesView.ts +15 -17
- package/front_end/panels/media/PlayerPropertiesView.ts +66 -51
- package/front_end/panels/media/TickingFlameChart.ts +6 -5
- package/front_end/panels/media/media-meta.ts +3 -3
- package/front_end/panels/mobile_throttling/CalibrationController.ts +3 -4
- package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +3 -3
- package/front_end/panels/mobile_throttling/NetworkPanelIndicator.ts +4 -4
- package/front_end/panels/mobile_throttling/NetworkThrottlingSelector.ts +189 -51
- package/front_end/panels/mobile_throttling/ThrottlingManager.ts +114 -126
- package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +8 -8
- package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +178 -143
- package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +6 -6
- package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +30 -36
- package/front_end/panels/network/BinaryResourceView.ts +7 -7
- package/front_end/panels/network/BlockedURLsPane.ts +18 -17
- package/front_end/panels/network/EventSourceMessagesView.ts +9 -10
- package/front_end/panels/network/NetworkConfigView.ts +19 -17
- package/front_end/panels/network/NetworkDataGridNode.ts +133 -95
- package/front_end/panels/network/NetworkItemView.ts +81 -81
- package/front_end/panels/network/NetworkLogView.ts +217 -145
- package/front_end/panels/network/NetworkLogViewColumns.ts +66 -71
- package/front_end/panels/network/NetworkManageCustomHeadersView.ts +5 -5
- package/front_end/panels/network/NetworkOverview.ts +6 -4
- package/front_end/panels/network/NetworkPanel.ts +72 -71
- package/front_end/panels/network/NetworkSearchScope.ts +1 -1
- package/front_end/panels/network/NetworkWaterfallColumn.ts +7 -17
- package/front_end/panels/network/RequestCookiesView.ts +10 -11
- package/front_end/panels/network/RequestHTMLView.ts +2 -2
- package/front_end/panels/network/RequestInitiatorView.ts +16 -16
- package/front_end/panels/network/RequestPayloadView.ts +12 -13
- package/front_end/panels/network/RequestPreviewView.ts +3 -4
- package/front_end/panels/network/RequestResponseView.ts +5 -5
- package/front_end/panels/network/RequestTimingView.ts +61 -60
- package/front_end/panels/network/ResourceChunkView.ts +13 -13
- package/front_end/panels/network/ResourceDirectSocketChunkView.ts +26 -17
- package/front_end/panels/network/ResourceWebSocketFrameView.ts +9 -9
- package/front_end/panels/network/SignedExchangeInfoView.ts +24 -24
- package/front_end/panels/network/binaryResourceView.css +1 -0
- package/front_end/panels/network/components/DirectSocketConnectionView.ts +18 -16
- package/front_end/panels/network/components/HeaderSectionRow.ts +17 -42
- package/front_end/panels/network/components/RequestHeaderSection.ts +6 -11
- package/front_end/panels/network/components/RequestHeadersView.css +2 -2
- package/front_end/panels/network/components/RequestHeadersView.ts +24 -34
- package/front_end/panels/network/components/RequestTrustTokensView.ts +19 -23
- package/front_end/panels/network/components/ResponseHeaderSection.ts +16 -15
- package/front_end/panels/network/components/WebBundleInfoView.ts +4 -9
- package/front_end/panels/network/network-meta.ts +27 -27
- package/front_end/panels/network/network.ts +1 -3
- package/front_end/panels/network/networkConfigView.css +13 -6
- package/front_end/panels/network/networkLogView.css +1 -1
- package/front_end/panels/network/networkPanel.css +3 -2
- package/front_end/panels/network/requestHTMLView.css +9 -8
- package/front_end/panels/network/resourceChunkView.css +21 -28
- package/front_end/panels/performance_monitor/PerformanceMonitor.ts +252 -168
- package/front_end/panels/performance_monitor/performanceMonitor.css +7 -9
- package/front_end/panels/performance_monitor/performance_monitor-meta.ts +7 -7
- package/front_end/panels/profiler/HeapDetachedElementsDataGrid.ts +19 -52
- package/front_end/panels/profiler/HeapDetachedElementsView.ts +9 -6
- package/front_end/panels/profiler/HeapProfileView.ts +24 -24
- package/front_end/panels/profiler/HeapProfilerPanel.ts +1 -1
- package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +20 -20
- package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +27 -27
- package/front_end/panels/profiler/HeapSnapshotProxy.ts +2 -6
- package/front_end/panels/profiler/HeapSnapshotView.ts +59 -56
- package/front_end/panels/profiler/HeapTimelineOverview.ts +3 -3
- package/front_end/panels/profiler/IsolateSelector.ts +16 -16
- package/front_end/panels/profiler/LiveHeapProfileView.ts +14 -14
- package/front_end/panels/profiler/ModuleUIStrings.ts +26 -26
- package/front_end/panels/profiler/ProfileDataGrid.ts +5 -5
- package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +2 -1
- package/front_end/panels/profiler/ProfileHeader.ts +0 -9
- package/front_end/panels/profiler/ProfileLauncherView.ts +6 -6
- package/front_end/panels/profiler/ProfileSidebarTreeElement.ts +1 -1
- package/front_end/panels/profiler/ProfileView.ts +23 -20
- package/front_end/panels/profiler/ProfilesPanel.ts +9 -9
- package/front_end/panels/profiler/heapProfiler.css +8 -0
- package/front_end/panels/profiler/profiler-meta.ts +12 -12
- package/front_end/panels/protocol_monitor/JSONEditor.ts +36 -19
- package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +24 -25
- package/front_end/panels/protocol_monitor/protocolMonitor.css +15 -9
- package/front_end/panels/protocol_monitor/protocol_monitor-meta.ts +1 -1
- package/front_end/panels/recorder/RecorderController.ts +82 -85
- package/front_end/panels/recorder/components/CreateRecordingView.ts +2 -2
- package/front_end/panels/recorder/components/RecordingListView.ts +141 -125
- package/front_end/panels/recorder/components/RecordingView.ts +912 -929
- package/front_end/panels/recorder/components/StepEditor.ts +13 -13
- package/front_end/panels/recorder/components/StepView.ts +23 -24
- package/front_end/panels/recorder/components/recordingListView.css +76 -75
- package/front_end/panels/recorder/components/recordingView.css +303 -308
- package/front_end/panels/recorder/components/stepView.css +197 -196
- package/front_end/panels/recorder/components/timelineSection.css +1 -1
- package/front_end/panels/recorder/injected/rollup.config.mjs +1 -1
- package/front_end/panels/recorder/injected/selectors/ARIASelector.ts +2 -2
- package/front_end/panels/recorder/injected/selectors/CSSSelector.ts +4 -4
- package/front_end/panels/recorder/injected/selectors/PierceSelector.ts +2 -2
- package/front_end/panels/recorder/injected/selectors/TextSelector.ts +2 -2
- package/front_end/panels/recorder/injected/selectors/XPath.ts +3 -3
- package/front_end/panels/recorder/models/RecorderSettings.ts +0 -1
- package/front_end/panels/recorder/models/RecordingPlayer.ts +9 -9
- package/front_end/panels/recorder/models/RecordingSession.ts +3 -3
- package/front_end/panels/recorder/recorder-meta.ts +5 -5
- package/front_end/panels/recorder/recorderController.css +3 -3
- package/front_end/panels/screencast/ScreencastApp.ts +1 -1
- package/front_end/panels/screencast/ScreencastView.ts +13 -18
- package/front_end/panels/search/SearchResultsPane.ts +8 -8
- package/front_end/panels/search/SearchView.ts +130 -127
- package/front_end/panels/search/searchResultsPane.css +2 -2
- package/front_end/panels/search/searchView.css +2 -2
- package/front_end/panels/security/CookieControlsView.ts +27 -27
- package/front_end/panels/security/CookieReportView.ts +40 -73
- package/front_end/panels/security/IPProtectionTreeElement.ts +21 -0
- package/front_end/panels/security/IPProtectionView.ts +179 -0
- package/front_end/panels/security/SecurityModel.ts +10 -10
- package/front_end/panels/security/SecurityPanel.ts +107 -107
- package/front_end/panels/security/SecurityPanelSidebar.ts +27 -11
- package/front_end/panels/security/ipProtectionView.css +109 -0
- package/front_end/panels/security/security-meta.ts +4 -4
- package/front_end/panels/security/security.ts +2 -0
- package/front_end/panels/sensors/LocationsSettingsTab.ts +32 -31
- package/front_end/panels/sensors/SensorsView.ts +60 -51
- package/front_end/panels/sensors/sensors-meta.ts +20 -20
- package/front_end/panels/settings/AISettingsTab.ts +118 -72
- package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +22 -20
- package/front_end/panels/settings/KeybindsSettingsTab.ts +31 -30
- package/front_end/panels/settings/SettingsScreen.ts +38 -29
- package/front_end/panels/settings/components/SyncSection.ts +199 -32
- package/front_end/panels/settings/components/syncSection.css +70 -7
- package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +14 -16
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +134 -28
- package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +19 -0
- package/front_end/panels/settings/emulation/emulation-meta.ts +2 -2
- package/front_end/panels/settings/settings-meta.ts +12 -12
- package/front_end/panels/settings/settingsScreen.css +0 -1
- package/front_end/panels/snippets/ScriptSnippetFileSystem.ts +5 -5
- package/front_end/panels/snippets/SnippetsQuickOpen.ts +4 -4
- package/front_end/panels/sources/AddSourceMapURLDialog.ts +5 -5
- package/front_end/panels/sources/AiCodeCompletionPlugin.ts +417 -0
- package/front_end/panels/sources/AiWarningInfobarPlugin.ts +3 -3
- package/front_end/panels/sources/BreakpointEditDialog.ts +13 -11
- package/front_end/panels/sources/{components/BreakpointsView.ts → BreakpointsView.ts} +336 -301
- package/front_end/panels/sources/{components/BreakpointsViewUtils.ts → BreakpointsViewUtils.ts} +3 -3
- package/front_end/panels/sources/CSSPlugin.ts +31 -21
- package/front_end/panels/sources/CallStackSidebarPane.ts +34 -58
- package/front_end/panels/sources/CategorizedBreakpointL10n.ts +18 -18
- package/front_end/panels/sources/CoveragePlugin.ts +5 -5
- package/front_end/panels/sources/DebuggerPausedMessage.ts +33 -39
- package/front_end/panels/sources/DebuggerPlugin.ts +68 -49
- package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +7 -7
- package/front_end/panels/sources/GoToLineQuickOpen.ts +15 -15
- package/front_end/panels/sources/InplaceFormatterEditorAction.ts +9 -6
- package/front_end/panels/sources/NavigatorView.ts +39 -35
- package/front_end/panels/sources/OpenFileQuickOpen.ts +6 -6
- package/front_end/panels/sources/OutlineQuickOpen.ts +3 -3
- package/front_end/panels/sources/ProfilePlugin.ts +3 -3
- package/front_end/panels/sources/ResourceOriginPlugin.ts +1 -1
- package/front_end/panels/sources/ScopeChainSidebarPane.ts +11 -9
- package/front_end/panels/sources/SnippetsPlugin.ts +2 -2
- package/front_end/panels/sources/SourcesNavigator.ts +32 -20
- package/front_end/panels/sources/SourcesPanel.ts +71 -28
- package/front_end/panels/sources/SourcesSearchScope.ts +1 -1
- package/front_end/panels/sources/SourcesView.ts +7 -8
- package/front_end/panels/sources/TabbedEditorContainer.ts +11 -8
- package/front_end/panels/sources/ThreadsSidebarPane.ts +7 -10
- package/front_end/panels/sources/UISourceCodeFrame.ts +40 -17
- package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +14 -9
- package/front_end/panels/sources/breakpointsView.css +276 -0
- package/front_end/panels/sources/components/HeadersView.ts +17 -13
- package/front_end/panels/sources/components/components.ts +0 -4
- package/front_end/panels/sources/scopeChainSidebarPane.css +1 -1
- package/front_end/panels/sources/sources-meta.ts +103 -112
- package/front_end/panels/sources/sources.ts +6 -0
- package/front_end/panels/timeline/ActiveFilters.ts +2 -1
- package/front_end/panels/timeline/AnimationsTrackAppender.ts +1 -1
- package/front_end/panels/timeline/AnnotationHelpers.ts +28 -23
- package/front_end/panels/timeline/AppenderUtils.ts +2 -2
- package/front_end/panels/timeline/CompatibilityTracksAppender.ts +1 -14
- package/front_end/panels/timeline/CountersGraph.ts +28 -19
- package/front_end/panels/timeline/EventsTimelineTreeView.ts +4 -25
- package/front_end/panels/timeline/ExtensionTrackAppender.ts +6 -11
- package/front_end/panels/timeline/GPUTrackAppender.ts +3 -3
- package/front_end/panels/timeline/Initiators.ts +19 -6
- package/front_end/panels/timeline/InteractionsTrackAppender.ts +6 -6
- package/front_end/panels/timeline/IsolateSelector.ts +2 -2
- package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +9 -8
- package/front_end/panels/timeline/ModificationsManager.ts +51 -48
- package/front_end/panels/timeline/NetworkTrackAppender.ts +3 -3
- package/front_end/panels/timeline/README.md +5 -13
- package/front_end/panels/timeline/RecordingMetadata.ts +79 -0
- package/front_end/panels/timeline/SaveFileFormatter.ts +0 -8
- package/front_end/panels/timeline/StatusDialog.ts +12 -8
- package/front_end/panels/timeline/ThirdPartyTreeView.ts +5 -5
- package/front_end/panels/timeline/ThreadAppender.ts +29 -29
- package/front_end/panels/timeline/TimelineController.ts +14 -18
- package/front_end/panels/timeline/TimelineDetailsView.ts +235 -112
- package/front_end/panels/timeline/TimelineEventOverview.ts +6 -6
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +94 -65
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +10 -30
- package/front_end/panels/timeline/TimelineFlameChartView.ts +107 -102
- package/front_end/panels/timeline/TimelineHistoryManager.ts +8 -8
- package/front_end/panels/timeline/TimelineLoader.ts +22 -3
- package/front_end/panels/timeline/TimelineMiniMap.ts +13 -5
- package/front_end/panels/timeline/TimelinePaintProfilerView.ts +3 -2
- package/front_end/panels/timeline/TimelinePanel.ts +579 -349
- package/front_end/panels/timeline/TimelineSelectorStatsView.ts +195 -80
- package/front_end/panels/timeline/TimelineTreeView.ts +25 -25
- package/front_end/panels/timeline/TimelineUIUtils.ts +231 -348
- package/front_end/panels/timeline/TimingsTrackAppender.ts +21 -13
- package/front_end/panels/timeline/TrackConfigBanner.ts +97 -0
- package/front_end/panels/timeline/TrackConfiguration.ts +1 -0
- package/front_end/panels/timeline/UIDevtoolsUtils.ts +15 -15
- package/front_end/panels/timeline/components/BreadcrumbsUI.ts +4 -9
- package/front_end/panels/timeline/components/DetailsView.ts +13 -13
- package/front_end/panels/timeline/components/ExportTraceOptions.ts +262 -0
- package/front_end/panels/timeline/components/FieldSettingsDialog.ts +2 -1
- package/front_end/panels/timeline/components/IgnoreListSetting.ts +7 -7
- package/front_end/panels/timeline/components/InteractionBreakdown.ts +3 -3
- package/front_end/panels/timeline/components/LayoutShiftDetails.ts +325 -307
- package/front_end/panels/timeline/components/LiveMetricsView.ts +1 -1
- package/front_end/panels/timeline/components/NetworkRequestDetails.ts +318 -278
- package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +8 -8
- package/front_end/panels/timeline/components/OriginMap.ts +1 -1
- package/front_end/panels/timeline/components/RelatedInsightChips.ts +87 -66
- package/front_end/panels/timeline/components/Sidebar.ts +47 -20
- package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +228 -218
- package/front_end/panels/timeline/components/SidebarInsightsTab.ts +18 -54
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +61 -44
- package/front_end/panels/timeline/components/TimelineSummary.ts +4 -4
- package/front_end/panels/timeline/components/Utils.ts +9 -9
- package/front_end/panels/timeline/components/components.ts +2 -0
- package/front_end/panels/timeline/components/exportTraceOptions.css +26 -0
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +28 -34
- package/front_end/panels/timeline/components/insights/CLSCulprits.ts +22 -23
- package/front_end/panels/timeline/components/insights/Cache.ts +4 -22
- package/front_end/panels/timeline/components/insights/Checklist.ts +6 -7
- package/front_end/panels/timeline/components/insights/DOMSize.ts +35 -15
- package/front_end/panels/timeline/components/insights/DocumentLatency.ts +1 -61
- package/front_end/panels/timeline/components/insights/DuplicatedJavaScript.ts +5 -17
- package/front_end/panels/timeline/components/insights/EventRef.ts +7 -9
- package/front_end/panels/timeline/components/insights/FontDisplay.ts +20 -21
- package/front_end/panels/timeline/components/insights/ForcedReflow.ts +9 -28
- package/front_end/panels/timeline/components/insights/INPBreakdown.ts +70 -0
- package/front_end/panels/timeline/components/insights/ImageDelivery.ts +7 -21
- package/front_end/panels/timeline/components/insights/LCPBreakdown.ts +146 -0
- package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +27 -80
- package/front_end/panels/timeline/components/insights/LegacyJavaScript.ts +3 -15
- package/front_end/panels/timeline/components/insights/ModernHTTP.ts +18 -23
- package/front_end/panels/timeline/components/insights/NetworkDependencyTree.ts +37 -27
- package/front_end/panels/timeline/components/insights/NodeLink.ts +50 -10
- package/front_end/panels/timeline/components/insights/README.md +1 -1
- package/front_end/panels/timeline/components/insights/RenderBlocking.ts +4 -22
- package/front_end/panels/timeline/components/insights/SidebarInsight.ts +1 -2
- package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +16 -28
- package/front_end/panels/timeline/components/insights/Table.ts +2 -3
- package/front_end/panels/timeline/components/insights/ThirdParties.ts +11 -47
- package/front_end/panels/timeline/components/insights/Viewport.ts +0 -6
- package/front_end/panels/timeline/components/insights/insights.ts +4 -4
- package/front_end/panels/timeline/components/insights/table.css +18 -0
- package/front_end/panels/timeline/components/insights/types.ts +2 -2
- package/front_end/panels/timeline/components/layoutShiftDetails.css +99 -92
- package/front_end/panels/timeline/components/networkRequestDetails.css +110 -104
- package/front_end/panels/timeline/components/networkRequestTooltip.css +88 -83
- package/front_end/panels/timeline/components/relatedInsightChips.css +60 -58
- package/front_end/panels/timeline/components/sidebarAnnotationsTab.css +80 -78
- package/front_end/panels/timeline/components/sidebarInsightsTab.css +0 -25
- package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +1 -1
- package/front_end/panels/timeline/docs/flame_chart_migration.md +2 -2
- package/front_end/panels/timeline/extensions/ExtensionUI.ts +1 -1
- package/front_end/panels/timeline/overlays/OverlaysImpl.ts +218 -283
- package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +1 -1
- package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +70 -105
- package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +1 -1
- package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +3 -12
- package/front_end/panels/timeline/overlays/components/entryLabelOverlay.css +13 -0
- package/front_end/panels/timeline/overlays/components/timeRangeOverlay.css +2 -1
- package/front_end/panels/timeline/timeline-meta.ts +14 -14
- package/front_end/panels/timeline/timeline.ts +4 -4
- package/front_end/panels/timeline/timelineDetailsView.css +118 -0
- package/front_end/panels/timeline/timelineFlameChartView.css +18 -117
- package/front_end/panels/timeline/timelineMiniMap.css +5 -0
- package/front_end/panels/timeline/timelinePanel.css +2 -10
- package/front_end/panels/timeline/timelineTreeView.css +0 -4
- package/front_end/panels/timeline/utils/AICallTree.ts +31 -74
- package/front_end/panels/timeline/utils/AIContext.ts +80 -0
- package/front_end/panels/timeline/utils/EntityMapper.ts +3 -3
- package/front_end/panels/timeline/utils/EntryName.ts +10 -10
- package/front_end/panels/timeline/utils/EntryNodes.ts +107 -0
- package/front_end/panels/timeline/utils/EntryStyles.ts +110 -110
- package/front_end/panels/timeline/{EventsSerializer.ts → utils/EventsSerializer.ts} +1 -1
- package/front_end/panels/timeline/{FreshRecording.ts → utils/FreshRecording.ts} +1 -1
- package/front_end/panels/timeline/utils/Helpers.ts +6 -0
- package/front_end/panels/timeline/utils/IgnoreList.ts +6 -6
- package/front_end/panels/timeline/utils/InsightAIContext.ts +102 -81
- package/front_end/panels/timeline/utils/Treemap.ts +5 -20
- package/front_end/panels/timeline/utils/utils.ts +8 -0
- package/front_end/panels/utils/utils.ts +17 -21
- package/front_end/panels/web_audio/WebAudioView.ts +219 -267
- package/front_end/panels/web_audio/web_audio-meta.ts +3 -3
- package/front_end/panels/web_audio/web_audio.ts +0 -12
- package/front_end/panels/webauthn/WebauthnPane.ts +517 -578
- package/front_end/panels/webauthn/webauthn-meta.ts +2 -2
- package/front_end/panels/webauthn/webauthnPane.css +157 -155
- package/front_end/panels/whats_new/ReleaseNoteText.ts +11 -11
- package/front_end/panels/whats_new/ReleaseNoteView.ts +2 -2
- package/front_end/panels/whats_new/releaseNoteView.css +92 -91
- package/front_end/panels/whats_new/resources/WNDT.md +6 -10
- package/front_end/panels/whats_new/whats_new-meta.ts +7 -7
- package/front_end/services/trace_bounds/TraceBounds.ts +1 -1
- package/front_end/services/tracing/PerformanceTracing.ts +5 -4
- package/front_end/{models/trace → services/tracing}/TracingManager.ts +3 -4
- package/front_end/services/tracing/tracing.ts +2 -0
- package/front_end/tsconfig.json +1 -0
- package/front_end/ui/components/buttons/Button.ts +1 -1
- package/front_end/ui/components/buttons/FloatingButton.ts +37 -6
- package/front_end/ui/components/buttons/button.css +4 -0
- package/front_end/ui/components/cards/Card.ts +2 -2
- package/front_end/ui/components/copy_to_clipboard/copyToClipboard.ts +1 -1
- package/front_end/ui/components/dialogs/ButtonDialog.ts +15 -0
- package/front_end/ui/components/dialogs/Dialog.ts +68 -8
- package/front_end/ui/components/diff_view/DiffView.ts +6 -6
- package/front_end/ui/components/docs/console_insight/basic.ts +1 -1
- package/front_end/ui/components/docs/console_insight/error.ts +1 -1
- package/front_end/ui/components/docs/console_insight/loading.ts +1 -1
- package/front_end/ui/components/docs/context_menu/basic.html +45 -0
- package/front_end/ui/components/docs/context_menu/basic.ts +102 -0
- package/front_end/ui/components/docs/icon_component/basic.html +1 -3
- package/front_end/ui/components/docs/icon_component/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_recording_list_view/basic.ts +4 -1
- package/front_end/ui/components/docs/select_menu/basic.html +1 -27
- package/front_end/ui/components/docs/select_menu/basic.ts +86 -194
- package/front_end/ui/components/highlighting/HighlightManager.ts +19 -9
- package/front_end/ui/components/icon_button/Icon.ts +16 -10
- package/front_end/ui/components/icon_button/IconButton.ts +1 -3
- package/front_end/ui/components/icon_button/icon.css +73 -0
- package/front_end/ui/components/issue_counter/IssueCounter.ts +13 -14
- package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +3 -3
- package/front_end/ui/components/markdown_view/MarkdownImagesMap.ts +4 -4
- package/front_end/ui/components/markdown_view/MarkdownLinksMap.ts +9 -6
- package/front_end/ui/components/panel_feedback/PanelFeedback.ts +5 -11
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +4 -9
- package/front_end/ui/components/settings/SettingCheckbox.ts +3 -3
- package/front_end/ui/components/settings/SettingDeprecationWarning.ts +2 -4
- package/front_end/ui/components/snackbars/Snackbar.ts +32 -17
- package/front_end/ui/components/snackbars/snackbar.css +1 -1
- package/front_end/ui/components/spinners/Spinner.ts +50 -2
- package/front_end/ui/components/spinners/spinner.css +10 -1
- package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +0 -1
- package/front_end/ui/components/survey_link/SurveyLink.ts +4 -8
- package/front_end/ui/components/text_editor/AiCodeCompletionTeaserPlaceholder.ts +83 -0
- package/front_end/ui/components/text_editor/ExecutionPositionHighlighter.ts +0 -1
- package/front_end/ui/components/text_editor/TextEditor.ts +2 -0
- package/front_end/ui/components/text_editor/config.ts +120 -12
- package/front_end/ui/{legacy/components/inline_editor/bezierSwatch.css → components/text_editor/textEditor.css} +2 -6
- package/front_end/ui/components/text_editor/text_editor.ts +1 -0
- package/front_end/ui/components/tooltips/Tooltip.ts +208 -33
- package/front_end/ui/components/tooltips/tooltip.css +13 -77
- package/front_end/ui/components/tree_outline/TreeOutline.ts +11 -0
- package/front_end/ui/legacy/ARIAUtils.ts +77 -49
- package/front_end/ui/legacy/ActionRegistration.ts +24 -24
- package/front_end/ui/legacy/ContextMenu.ts +349 -29
- package/front_end/ui/legacy/DockController.ts +14 -8
- package/front_end/ui/legacy/EmptyWidget.ts +62 -32
- package/front_end/ui/legacy/FilterBar.ts +14 -9
- package/front_end/ui/legacy/GlassPane.ts +12 -5
- package/front_end/ui/legacy/Infobar.ts +2 -2
- package/front_end/ui/legacy/InspectorView.ts +99 -26
- package/front_end/ui/legacy/ListWidget.ts +9 -9
- package/front_end/ui/legacy/Panel.ts +1 -1
- package/front_end/ui/legacy/ProgressIndicator.ts +44 -41
- package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +4 -4
- package/front_end/ui/legacy/ReportView.ts +1 -1
- package/front_end/ui/legacy/ResizerWidget.ts +45 -50
- package/front_end/ui/legacy/SearchableView.ts +24 -24
- package/front_end/ui/legacy/SettingsUI.ts +2 -2
- package/front_end/ui/legacy/ShortcutRegistry.ts +2 -1
- package/front_end/ui/legacy/SoftContextMenu.ts +23 -9
- package/front_end/ui/legacy/SoftDropDown.ts +3 -3
- package/front_end/ui/legacy/SplitWidget.ts +342 -358
- package/front_end/ui/legacy/SuggestBox.ts +17 -17
- package/front_end/ui/legacy/TabbedPane.ts +32 -36
- package/front_end/ui/legacy/TargetCrashedScreen.ts +4 -4
- package/front_end/ui/legacy/TextPrompt.ts +4 -2
- package/front_end/ui/legacy/ThrottledWidget.ts +1 -1
- package/front_end/ui/legacy/Toolbar.ts +39 -19
- package/front_end/ui/legacy/Treeoutline.ts +439 -8
- package/front_end/ui/legacy/UIUtils.ts +303 -38
- package/front_end/ui/legacy/View.ts +33 -9
- package/front_end/ui/legacy/ViewManager.ts +109 -15
- package/front_end/ui/legacy/ViewRegistration.ts +17 -7
- package/front_end/ui/legacy/Widget.ts +142 -30
- package/front_end/ui/legacy/XLink.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +36 -26
- package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +4 -8
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +72 -49
- package/front_end/ui/legacy/components/color_picker/spectrum.css +1 -1
- package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +14 -19
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +31 -30
- package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +21 -17
- package/front_end/ui/legacy/components/data_grid/ShowMoreDataGridNode.ts +2 -2
- package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +6 -3
- package/front_end/ui/legacy/components/data_grid/dataGrid.css +9 -3
- package/front_end/ui/legacy/components/inline_editor/AnimationTimingModel.ts +3 -3
- package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +15 -14
- package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/BezierUI.ts +7 -6
- package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +11 -5
- package/front_end/ui/legacy/components/inline_editor/CSSAngleUtils.ts +7 -6
- package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +18 -17
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +35 -20
- package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +32 -31
- package/front_end/ui/legacy/components/inline_editor/FontEditorUnitConverter.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/Swatches.ts +3 -47
- package/front_end/ui/legacy/components/inline_editor/cssAngle.css +4 -5
- package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +2 -2
- package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +3 -2
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +41 -39
- package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +2 -0
- package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +2 -2
- package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +7 -3
- package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +7 -7
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +156 -101
- package/front_end/ui/legacy/components/perf_ui/NetworkPriorities.ts +5 -5
- package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +10 -8
- package/front_end/ui/legacy/components/perf_ui/PieChart.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +3 -17
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +2 -3
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +54 -6
- package/front_end/ui/legacy/components/perf_ui/perf_ui-meta.ts +6 -6
- package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +29 -3
- package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +16 -6
- package/front_end/ui/legacy/components/quick_open/HelpQuickOpen.ts +2 -5
- package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +2 -0
- package/front_end/ui/legacy/components/quick_open/quick_open-meta.ts +2 -2
- package/front_end/ui/legacy/components/source_frame/FontView.ts +8 -5
- package/front_end/ui/legacy/components/source_frame/ImageView.ts +17 -29
- package/front_end/ui/legacy/components/source_frame/JSONView.ts +3 -3
- package/front_end/ui/legacy/components/source_frame/PreviewFactory.ts +2 -2
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +2 -2
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +41 -31
- package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/XMLView.ts +269 -296
- package/front_end/ui/legacy/components/source_frame/fontView.css +1 -1
- package/front_end/ui/legacy/components/source_frame/source_frame-meta.ts +9 -9
- package/front_end/ui/legacy/components/source_frame/xmlTree.css +10 -8
- package/front_end/ui/legacy/components/source_frame/xmlView.css +3 -1
- package/front_end/ui/legacy/components/utils/ImagePreview.ts +4 -4
- package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +76 -34
- package/front_end/ui/legacy/components/utils/Linkifier.ts +108 -50
- package/front_end/ui/legacy/components/utils/TargetDetachedDialog.ts +2 -1
- package/front_end/ui/legacy/confirmDialog.css +1 -1
- package/front_end/ui/legacy/filter.css +12 -4
- package/front_end/ui/legacy/inspectorCommon.css +28 -22
- package/front_end/ui/legacy/legacy.ts +0 -2
- package/front_end/ui/legacy/remoteDebuggingTerminatedScreen.css +18 -17
- package/front_end/ui/legacy/softContextMenu.css +4 -0
- package/front_end/ui/legacy/tabbedPane.css +5 -1
- package/front_end/ui/legacy/targetCrashedScreen.css +9 -8
- package/front_end/ui/legacy/viewContainers.css +8 -0
- package/front_end/ui/visual_logging/Debugging.ts +122 -26
- package/front_end/ui/visual_logging/KnownContextValues.ts +143 -1
- package/front_end/ui/visual_logging/LoggingConfig.ts +1 -1
- package/front_end/ui/visual_logging/LoggingDriver.ts +3 -2
- package/front_end/ui/visual_logging/LoggingState.ts +6 -4
- package/front_end/ui/visual_logging/README.md +1 -3
- package/front_end/ui/visual_logging/visual_logging.ts +9 -0
- package/front_end/ui/visual_logging/visual_logging_debugging.png +0 -0
- package/inspector_overlay/css_grid_label_helpers.ts +4 -4
- package/inspector_overlay/highlight_flex_common.ts +2 -2
- package/inspector_overlay/loadCSS.rollup.js +2 -2
- package/inspector_overlay/main.ts +0 -4
- package/inspector_overlay/tool_highlight.css +1 -1
- package/inspector_overlay/tool_highlight.ts +7 -7
- package/package.json +31 -35
- package/.vscode/devtools-workspace-launch.json +0 -43
- package/.vscode/devtools-workspace-settings.json +0 -11
- package/.vscode/devtools-workspace-tasks.json +0 -66
- package/.vscode/extensions.json +0 -3
- package/codereview.settings +0 -4
- package/config/gni/devtools_grd_files.gni +0 -2601
- package/config/gni/devtools_image_files.gni +0 -301
- package/config/gni/i18n.gni +0 -114
- package/extensions/cxx_debugging/CMakeLists.txt +0 -168
- package/extensions/cxx_debugging/README.md +0 -81
- package/extensions/cxx_debugging/e2e/MochaRootHooks.ts +0 -108
- package/extensions/cxx_debugging/e2e/OptionsPageTests.ts +0 -36
- package/extensions/cxx_debugging/e2e/StandaloneTestDriver.ts +0 -20
- package/extensions/cxx_debugging/e2e/TestDriver.ts +0 -312
- package/extensions/cxx_debugging/e2e/cxx-debugging-extension-helpers.ts +0 -62
- package/extensions/cxx_debugging/e2e/resources/huge-source-file.cc +0 -29
- package/extensions/cxx_debugging/e2e/resources/pointers.cc +0 -40
- package/extensions/cxx_debugging/e2e/resources/scope-view-non-primitives.c +0 -30
- package/extensions/cxx_debugging/e2e/resources/scope-view-non-primitives.cpp +0 -49
- package/extensions/cxx_debugging/e2e/resources/scope-view-primitives.c +0 -19
- package/extensions/cxx_debugging/e2e/resources/stepping-with-state.c +0 -31
- package/extensions/cxx_debugging/e2e/resources/test_wasm_simd.c +0 -13
- package/extensions/cxx_debugging/e2e/resources/vector.cc +0 -14
- package/extensions/cxx_debugging/e2e/resources/wchar.cc +0 -22
- package/extensions/cxx_debugging/e2e/runner.py +0 -542
- package/extensions/cxx_debugging/e2e/runner.py.vpython +0 -5
- package/extensions/cxx_debugging/e2e/runner.py.vpython3 +0 -5
- package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +0 -59
- package/extensions/cxx_debugging/e2e/tests/cpp_eval.yaml +0 -37
- package/extensions/cxx_debugging/e2e/tests/pointer.yaml +0 -42
- package/extensions/cxx_debugging/e2e/tests/scope_view_non_primitives.yaml +0 -35
- package/extensions/cxx_debugging/e2e/tests/scope_view_non_primitives_cpp.yaml +0 -44
- package/extensions/cxx_debugging/e2e/tests/scope_view_primitives.yaml +0 -31
- package/extensions/cxx_debugging/e2e/tests/stepping_with_state.yaml +0 -64
- package/extensions/cxx_debugging/e2e/tests/string_view.yaml +0 -32
- package/extensions/cxx_debugging/e2e/tests/test_big_dwo.yaml +0 -21
- package/extensions/cxx_debugging/e2e/tests/test_linear_memory_inspector.yaml +0 -11
- package/extensions/cxx_debugging/e2e/tests/test_loop.yaml +0 -34
- package/extensions/cxx_debugging/e2e/tests/test_wasm_simd.yaml +0 -42
- package/extensions/cxx_debugging/e2e/tests/vector.yaml +0 -26
- package/extensions/cxx_debugging/e2e/tests/wchar.yaml +0 -52
- package/extensions/cxx_debugging/e2e/tsconfig.json +0 -24
- package/extensions/cxx_debugging/lib/ApiContext.cc +0 -627
- package/extensions/cxx_debugging/lib/ApiContext.h +0 -119
- package/extensions/cxx_debugging/lib/CMakeLists.txt +0 -53
- package/extensions/cxx_debugging/lib/Expressions.cc +0 -303
- package/extensions/cxx_debugging/lib/Expressions.h +0 -53
- package/extensions/cxx_debugging/lib/Variables.cc +0 -101
- package/extensions/cxx_debugging/lib/Variables.h +0 -65
- package/extensions/cxx_debugging/lib/WasmModule.cc +0 -573
- package/extensions/cxx_debugging/lib/WasmModule.h +0 -126
- package/extensions/cxx_debugging/lib/WasmVendorPlugins.cc +0 -172
- package/extensions/cxx_debugging/lib/WasmVendorPlugins.h +0 -329
- package/extensions/cxx_debugging/lib/api.h +0 -593
- package/extensions/cxx_debugging/lib/api.h.in +0 -86
- package/extensions/cxx_debugging/src/CMakeLists.txt +0 -158
- package/extensions/cxx_debugging/src/CreditsItem.ts +0 -126
- package/extensions/cxx_debugging/src/CustomFormatters.ts +0 -689
- package/extensions/cxx_debugging/src/DWARFSymbols.ts +0 -613
- package/extensions/cxx_debugging/src/DevToolsPlugin.html +0 -7
- package/extensions/cxx_debugging/src/DevToolsPluginForTests.html +0 -6
- package/extensions/cxx_debugging/src/DevToolsPluginHost.ts +0 -145
- package/extensions/cxx_debugging/src/DevToolsPluginWorker.ts +0 -120
- package/extensions/cxx_debugging/src/DevToolsPluginWorkerMain.ts +0 -9
- package/extensions/cxx_debugging/src/ExtensionOptions.html +0 -24
- package/extensions/cxx_debugging/src/ExtensionOptions.ts +0 -705
- package/extensions/cxx_debugging/src/Formatters.ts +0 -282
- package/extensions/cxx_debugging/src/GlobMatch.ts +0 -51
- package/extensions/cxx_debugging/src/MEMFSResourceLoader.ts +0 -102
- package/extensions/cxx_debugging/src/ModuleConfiguration.ts +0 -117
- package/extensions/cxx_debugging/src/ModuleConfigurationList.ts +0 -239
- package/extensions/cxx_debugging/src/SymbolsBackend.cc +0 -262
- package/extensions/cxx_debugging/src/SymbolsBackend.cc.in +0 -139
- package/extensions/cxx_debugging/src/SymbolsBackend.d.ts +0 -179
- package/extensions/cxx_debugging/src/SymbolsBackend.d.ts.in +0 -108
- package/extensions/cxx_debugging/src/TestDriver.js +0 -21
- package/extensions/cxx_debugging/src/WasmTypes.ts +0 -119
- package/extensions/cxx_debugging/src/WorkerRPC.ts +0 -158
- package/extensions/cxx_debugging/src/index.html +0 -69
- package/extensions/cxx_debugging/src/manifest.json.in +0 -22
- package/extensions/cxx_debugging/src/rollup.config.in.js +0 -33
- package/extensions/cxx_debugging/tests/CMakeLists.txt +0 -146
- package/extensions/cxx_debugging/tests/CreditsItem_test.ts +0 -50
- package/extensions/cxx_debugging/tests/CustomFormatters_test.ts +0 -307
- package/extensions/cxx_debugging/tests/DevToolsPluginTestWorker.ts +0 -43
- package/extensions/cxx_debugging/tests/DevToolsPlugin_test.ts +0 -345
- package/extensions/cxx_debugging/tests/Externref_test.ts +0 -63
- package/extensions/cxx_debugging/tests/Formatters_test.ts +0 -284
- package/extensions/cxx_debugging/tests/GlobMatch_test.ts +0 -58
- package/extensions/cxx_debugging/tests/Interpreter_test.ts +0 -219
- package/extensions/cxx_debugging/tests/LLDBEvalExtensions.h +0 -154
- package/extensions/cxx_debugging/tests/LLDBEvalTests.d.ts +0 -24
- package/extensions/cxx_debugging/tests/ModuleConfiguration_test.ts +0 -136
- package/extensions/cxx_debugging/tests/RealBackend.ts +0 -482
- package/extensions/cxx_debugging/tests/SymbolsBackendTests.d.ts +0 -12
- package/extensions/cxx_debugging/tests/SymbolsBackend_test.ts +0 -39
- package/extensions/cxx_debugging/tests/TestUtils.ts +0 -250
- package/extensions/cxx_debugging/tests/WasmModule_test.cc +0 -332
- package/extensions/cxx_debugging/tests/build-artifacts.js.in +0 -10
- package/extensions/cxx_debugging/tests/inputs/CMakeLists.txt +0 -141
- package/extensions/cxx_debugging/tests/inputs/addr_index.s +0 -97
- package/extensions/cxx_debugging/tests/inputs/addresses.cc +0 -25
- package/extensions/cxx_debugging/tests/inputs/classstatic.s +0 -119
- package/extensions/cxx_debugging/tests/inputs/dw_opcodes.def +0 -66
- package/extensions/cxx_debugging/tests/inputs/embedded.s +0 -124
- package/extensions/cxx_debugging/tests/inputs/enums.s +0 -376
- package/extensions/cxx_debugging/tests/inputs/externref.js +0 -22
- package/extensions/cxx_debugging/tests/inputs/externref.s +0 -207
- package/extensions/cxx_debugging/tests/inputs/globals.s +0 -443
- package/extensions/cxx_debugging/tests/inputs/hello-split-missing-dwo.s +0 -92
- package/extensions/cxx_debugging/tests/inputs/hello-split.s +0 -134
- package/extensions/cxx_debugging/tests/inputs/hello.s +0 -70
- package/extensions/cxx_debugging/tests/inputs/helper.s +0 -130
- package/extensions/cxx_debugging/tests/inputs/inline.s +0 -196
- package/extensions/cxx_debugging/tests/inputs/namespaces.s +0 -207
- package/extensions/cxx_debugging/tests/inputs/page.html +0 -6
- package/extensions/cxx_debugging/tests/inputs/page.js +0 -35
- package/extensions/cxx_debugging/tests/inputs/shadowing.s +0 -121
- package/extensions/cxx_debugging/tests/inputs/split-dwarf.s +0 -126
- package/extensions/cxx_debugging/tests/inputs/string_view.cc +0 -40
- package/extensions/cxx_debugging/tests/inputs/windows_paths.s +0 -70
- package/extensions/cxx_debugging/tests/karma.conf.in.js +0 -133
- package/extensions/cxx_debugging/tests/karma_preload.html +0 -12
- package/extensions/cxx_debugging/third_party/.clang-format +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/CHANGELOG.md +0 -247
- package/extensions/cxx_debugging/third_party/lit-html/LICENSE +0 -28
- package/extensions/cxx_debugging/third_party/lit-html/README.chromium +0 -13
- package/extensions/cxx_debugging/third_party/lit-html/README.md +0 -47
- package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.d.ts +0 -33
- package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.js +0 -108
- package/extensions/cxx_debugging/third_party/lit-html/directives/async-append.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.d.ts +0 -34
- package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.js +0 -91
- package/extensions/cxx_debugging/third_party/lit-html/directives/async-replace.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/cache.d.ts +0 -30
- package/extensions/cxx_debugging/third_party/lit-html/directives/cache.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/cache.js +0 -77
- package/extensions/cxx_debugging/third_party/lit-html/directives/cache.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.d.ts +0 -28
- package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.js +0 -101
- package/extensions/cxx_debugging/third_party/lit-html/directives/class-map.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/guard.d.ts +0 -49
- package/extensions/cxx_debugging/third_party/lit-html/directives/guard.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/guard.js +0 -69
- package/extensions/cxx_debugging/third_party/lit-html/directives/guard.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.d.ts +0 -22
- package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.js +0 -37
- package/extensions/cxx_debugging/third_party/lit-html/directives/if-defined.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/live.d.ts +0 -38
- package/extensions/cxx_debugging/third_party/lit-html/directives/live.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/live.js +0 -73
- package/extensions/cxx_debugging/third_party/lit-html/directives/live.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.d.ts +0 -37
- package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.js +0 -415
- package/extensions/cxx_debugging/third_party/lit-html/directives/repeat.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.d.ts +0 -36
- package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.js +0 -78
- package/extensions/cxx_debugging/third_party/lit-html/directives/style-map.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.d.ts +0 -23
- package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.js +0 -41
- package/extensions/cxx_debugging/third_party/lit-html/directives/template-content.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.d.ts +0 -23
- package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.js +0 -44
- package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-html.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.d.ts +0 -23
- package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.js +0 -61
- package/extensions/cxx_debugging/third_party/lit-html/directives/unsafe-svg.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/until.d.ts +0 -35
- package/extensions/cxx_debugging/third_party/lit-html/directives/until.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/directives/until.js +0 -86
- package/extensions/cxx_debugging/third_party/lit-html/directives/until.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.d.ts +0 -39
- package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.js +0 -52
- package/extensions/cxx_debugging/third_party/lit-html/lib/default-template-processor.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/directive.d.ts +0 -59
- package/extensions/cxx_debugging/third_party/lit-html/lib/directive.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/directive.js +0 -63
- package/extensions/cxx_debugging/third_party/lit-html/lib/directive.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/dom.d.ts +0 -29
- package/extensions/cxx_debugging/third_party/lit-html/lib/dom.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/dom.js +0 -44
- package/extensions/cxx_debugging/third_party/lit-html/lib/dom.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.d.ts +0 -38
- package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.js +0 -125
- package/extensions/cxx_debugging/third_party/lit-html/lib/modify-template.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/part.d.ts +0 -46
- package/extensions/cxx_debugging/third_party/lit-html/lib/part.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/part.js +0 -23
- package/extensions/cxx_debugging/third_party/lit-html/lib/part.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/parts.d.ts +0 -148
- package/extensions/cxx_debugging/third_party/lit-html/lib/parts.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/parts.js +0 -476
- package/extensions/cxx_debugging/third_party/lit-html/lib/parts.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.d.ts +0 -19
- package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.js +0 -14
- package/extensions/cxx_debugging/third_party/lit-html/lib/render-options.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/render.d.ts +0 -33
- package/extensions/cxx_debugging/third_party/lit-html/lib/render.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/render.js +0 -43
- package/extensions/cxx_debugging/third_party/lit-html/lib/render.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.d.ts +0 -83
- package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.js +0 -286
- package/extensions/cxx_debugging/third_party/lit-html/lib/shady-render.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.d.ts +0 -57
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.js +0 -48
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-factory.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.d.ts +0 -30
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.js +0 -134
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-instance.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.d.ts +0 -46
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.js +0 -14
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-processor.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.d.ts +0 -42
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.js +0 -131
- package/extensions/cxx_debugging/third_party/lit-html/lib/template-result.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/template.d.ts +0 -92
- package/extensions/cxx_debugging/third_party/lit-html/lib/template.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lib/template.js +0 -215
- package/extensions/cxx_debugging/third_party/lit-html/lib/template.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lit-html.d.ts +0 -42
- package/extensions/cxx_debugging/third_party/lit-html/lit-html.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/lit-html.js +0 -59
- package/extensions/cxx_debugging/third_party/lit-html/lit-html.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/package.json +0 -84
- package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.d.ts +0 -24
- package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.d.ts.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.js +0 -60
- package/extensions/cxx_debugging/third_party/lit-html/polyfills/template_polyfill.js.map +0 -1
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/async-append.ts +0 -100
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/async-replace.ts +0 -82
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/cache.ts +0 -90
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/class-map.ts +0 -118
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/guard.ts +0 -74
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/if-defined.ts +0 -40
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/live.ts +0 -76
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/repeat.ts +0 -442
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/style-map.ts +0 -88
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/template-content.ts +0 -52
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/unsafe-html.ts +0 -54
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/unsafe-svg.ts +0 -71
- package/extensions/cxx_debugging/third_party/lit-html/src/directives/until.ts +0 -104
- package/extensions/cxx_debugging/third_party/lit-html/src/env.d.ts +0 -20
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/default-template-processor.ts +0 -59
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/directive.ts +0 -73
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/dom.ts +0 -55
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/modify-template.ts +0 -135
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/part.ts +0 -50
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/parts.ts +0 -545
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/render-options.ts +0 -20
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/render.ts +0 -52
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/shady-render.ts +0 -316
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-factory.ts +0 -92
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-instance.ts +0 -155
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-processor.ts +0 -51
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/template-result.ts +0 -148
- package/extensions/cxx_debugging/third_party/lit-html/src/lib/template.ts +0 -255
- package/extensions/cxx_debugging/third_party/lit-html/src/lit-html.ts +0 -74
- package/extensions/cxx_debugging/third_party/lit-html/src/polyfills/template_polyfill.ts +0 -70
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/async-append.d.ts +0 -33
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/async-replace.d.ts +0 -34
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/cache.d.ts +0 -30
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/class-map.d.ts +0 -28
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/guard.d.ts +0 -49
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/if-defined.d.ts +0 -22
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/live.d.ts +0 -38
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/repeat.d.ts +0 -37
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/style-map.d.ts +0 -36
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/template-content.d.ts +0 -23
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/unsafe-html.d.ts +0 -23
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/unsafe-svg.d.ts +0 -23
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/directives/until.d.ts +0 -35
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/default-template-processor.d.ts +0 -39
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/directive.d.ts +0 -59
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/dom.d.ts +0 -29
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/modify-template.d.ts +0 -38
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/part.d.ts +0 -46
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/parts.d.ts +0 -148
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/render-options.d.ts +0 -19
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/render.d.ts +0 -33
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/shady-render.d.ts +0 -83
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-factory.d.ts +0 -57
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-instance.d.ts +0 -30
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-processor.d.ts +0 -46
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template-result.d.ts +0 -42
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lib/template.d.ts +0 -92
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/lit-html.d.ts +0 -42
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/polyfills/template_polyfill.d.ts +0 -24
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/src/env.d.ts +0 -19
- package/extensions/cxx_debugging/third_party/lit-html/ts3.4/tsconfig.json +0 -24
- package/extensions/cxx_debugging/third_party/lldb-eval/README.chromium +0 -15
- package/extensions/cxx_debugging/third_party/llvm/README.chromium +0 -15
- package/extensions/cxx_debugging/tools/api.pdl +0 -224
- package/extensions/cxx_debugging/tools/bootstrap.py +0 -345
- package/extensions/cxx_debugging/tools/generate-api.py +0 -74
- package/extensions/cxx_debugging/tools/pdl_cxx.py +0 -171
- package/extensions/cxx_debugging/tools/whitespaces.txt +0 -1
- package/extensions/cxx_debugging/tsconfig.json +0 -16
- package/front_end/core/common/Base64.test.ts +0 -41
- package/front_end/core/common/CharacterIdMap.test.ts +0 -46
- package/front_end/core/common/Color.test.ts +0 -904
- package/front_end/core/common/ColorConverter.test.ts +0 -525
- package/front_end/core/common/ColorUtils.test.ts +0 -112
- package/front_end/core/common/Console.test.ts +0 -86
- package/front_end/core/common/Debouncer.test.ts +0 -26
- package/front_end/core/common/EventTarget.test.ts +0 -165
- package/front_end/core/common/Lazy.test.ts +0 -28
- package/front_end/core/common/MapWithDefault.test.ts +0 -61
- package/front_end/core/common/Mutex.test.ts +0 -98
- package/front_end/core/common/Object.test.ts +0 -87
- package/front_end/core/common/ParsedURL.test.ts +0 -751
- package/front_end/core/common/Progress.test.ts +0 -269
- package/front_end/core/common/ResolverBase.test.ts +0 -115
- package/front_end/core/common/ResourceType.test.ts +0 -557
- package/front_end/core/common/Revealer.test.ts +0 -122
- package/front_end/core/common/SegmentedRange.test.ts +0 -210
- package/front_end/core/common/SettingRegistration.test.ts +0 -138
- package/front_end/core/common/Settings.test.ts +0 -725
- package/front_end/core/common/SimpleHistoryManager.test.ts +0 -66
- package/front_end/core/common/StringOutputStream.test.ts +0 -29
- package/front_end/core/common/TextDictionary.test.ts +0 -85
- package/front_end/core/common/Throttler.test.ts +0 -227
- package/front_end/core/common/Trie.test.ts +0 -110
- package/front_end/core/dom_extension/DOMExtension.test.ts +0 -343
- package/front_end/core/host/AidaClient.test.ts +0 -630
- package/front_end/core/i18n/ByteUtilities.test.ts +0 -59
- package/front_end/core/i18n/DevToolsLocale.test.ts +0 -104
- package/front_end/core/i18n/i18n.test.ts +0 -207
- package/front_end/core/i18n/time-utilities.test.ts +0 -164
- package/front_end/core/platform/ArrayUtilities.test.ts +0 -499
- package/front_end/core/platform/DOMUtilities.test.ts +0 -95
- package/front_end/core/platform/DateUtilities.test.ts +0 -31
- package/front_end/core/platform/DevToolsPath.test.ts +0 -84
- package/front_end/core/platform/KeyboardUtilities.test.ts +0 -57
- package/front_end/core/platform/MapUtilities.test.ts +0 -50
- package/front_end/core/platform/MimeType.test.ts +0 -192
- package/front_end/core/platform/NumberUtilities.test.ts +0 -127
- package/front_end/core/platform/StringUtilities.test.ts +0 -676
- package/front_end/core/platform/TypedArrayUtilities.test.ts +0 -61
- package/front_end/core/protocol_client/NodeURL.test.ts +0 -74
- package/front_end/core/root/Runtime.test.ts +0 -68
- package/front_end/core/sdk/AccessibilityModel.test.ts +0 -17
- package/front_end/core/sdk/AnimationModel.test.ts +0 -281
- package/front_end/core/sdk/AutofillModel.test.ts +0 -82
- package/front_end/core/sdk/CPUThrottlingManager.test.ts +0 -49
- package/front_end/core/sdk/CSSContainerQuery.test.ts +0 -52
- package/front_end/core/sdk/CSSMatchedStyles.test.ts +0 -771
- package/front_end/core/sdk/CSSModel.test.ts +0 -120
- package/front_end/core/sdk/CSSProperty.test.ts +0 -130
- package/front_end/core/sdk/CSSPropertyParser.test.ts +0 -524
- package/front_end/core/sdk/CSSPropertyParserMatchers.test.ts +0 -735
- package/front_end/core/sdk/CSSStyleDeclaration.test.ts +0 -261
- package/front_end/core/sdk/CSSStyleSheetHeader.test.ts +0 -137
- package/front_end/core/sdk/ChildTargetManager.test.ts +0 -259
- package/front_end/core/sdk/ConsoleModel.test.ts +0 -202
- package/front_end/core/sdk/Cookie.test.ts +0 -294
- package/front_end/core/sdk/CookieModel.test.ts +0 -258
- package/front_end/core/sdk/CookieParser.test.ts +0 -211
- package/front_end/core/sdk/DOMModel.test.ts +0 -171
- package/front_end/core/sdk/DebuggerModel.test.ts +0 -458
- package/front_end/core/sdk/EmulationModel.test.ts +0 -45
- package/front_end/core/sdk/EnhancedTracesParser.test.ts +0 -318
- package/front_end/core/sdk/FrameManager.test.ts +0 -305
- package/front_end/core/sdk/NetworkManager.test.ts +0 -2223
- package/front_end/core/sdk/NetworkRequest.test.ts +0 -550
- package/front_end/core/sdk/OverlayColorGenerator.test.ts +0 -21
- package/front_end/core/sdk/OverlayModel.test.ts +0 -179
- package/front_end/core/sdk/OverlayPersistentHighlighter.test.ts +0 -232
- package/front_end/core/sdk/PageResourceLoader.test.ts +0 -369
- package/front_end/core/sdk/PreloadingModel.test.ts +0 -877
- package/front_end/core/sdk/RehydratingConnection.test.ts +0 -190
- package/front_end/core/sdk/RemoteObject.test.ts +0 -471
- package/front_end/core/sdk/ResourceTreeModel.test.ts +0 -222
- package/front_end/core/sdk/RuntimeModel.test.ts +0 -84
- package/front_end/core/sdk/ScreenCaptureModel.test.ts +0 -216
- package/front_end/core/sdk/Script.test.ts +0 -155
- package/front_end/core/sdk/ServerSentEventsProtocol.test.ts +0 -220
- package/front_end/core/sdk/ServerTiming.test.ts +0 -377
- package/front_end/core/sdk/ServiceWorkerCacheModel.test.ts +0 -200
- package/front_end/core/sdk/ServiceWorkerManager.test.ts +0 -287
- package/front_end/core/sdk/SourceMap.test.ts +0 -1368
- package/front_end/core/sdk/SourceMapFunctionRanges.test.ts +0 -171
- package/front_end/core/sdk/SourceMapManager.test.ts +0 -334
- package/front_end/core/sdk/SourceMapScopeChainEntry.test.ts +0 -128
- package/front_end/core/sdk/SourceMapScopes.test.ts +0 -507
- package/front_end/core/sdk/SourceMapScopes.ts +0 -472
- package/front_end/core/sdk/SourceMapScopesInfo.test.ts +0 -832
- package/front_end/core/sdk/StorageBucketsModel.test.ts +0 -383
- package/front_end/core/sdk/StorageKeyManager.test.ts +0 -95
- package/front_end/core/sdk/Target.test.ts +0 -97
- package/front_end/core/sdk/TargetManager.test.ts +0 -279
- package/front_end/core/sdk/TraceObject.test.ts +0 -30
- package/front_end/entrypoints/formatter_worker/CSSFormatter.test.ts +0 -216
- package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.test.ts +0 -177
- package/front_end/entrypoints/formatter_worker/FormatterWorker.test.ts +0 -19
- package/front_end/entrypoints/formatter_worker/HTMLFormatter.test.ts +0 -344
- package/front_end/entrypoints/formatter_worker/JSONFormatter.test.ts +0 -147
- package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.test.ts +0 -789
- package/front_end/entrypoints/formatter_worker/ScopeParser.test.ts +0 -121
- package/front_end/entrypoints/formatter_worker/Substitute.test.ts +0 -179
- package/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker.test.ts +0 -11
- package/front_end/entrypoints/inspector_main/InspectorMain.test.ts +0 -344
- package/front_end/entrypoints/inspector_main/OutermostTargetSelector.test.ts +0 -80
- package/front_end/entrypoints/main/ExecutionContextSelector.test.ts +0 -64
- package/front_end/entrypoints/main/MainImpl.test.ts +0 -60
- package/front_end/entrypoints/wasmparser_worker/wasmparser_worker.test.ts +0 -11
- package/front_end/integration_test_runner.html +0 -40
- package/front_end/legacy_test_runner/accessibility_test_runner/accessibility_test_runner.js +0 -83
- package/front_end/legacy_test_runner/application_test_runner/CacheStorageTestRunner.js +0 -297
- package/front_end/legacy_test_runner/application_test_runner/IndexedDBTestRunner.js +0 -478
- package/front_end/legacy_test_runner/application_test_runner/ResourceTreeTestRunner.js +0 -106
- package/front_end/legacy_test_runner/application_test_runner/ResourcesTestRunner.js +0 -173
- package/front_end/legacy_test_runner/application_test_runner/ServiceWorkersTestRunner.js +0 -133
- package/front_end/legacy_test_runner/application_test_runner/StorageTestRunner.js +0 -13
- package/front_end/legacy_test_runner/application_test_runner/application_test_runner.js +0 -19
- package/front_end/legacy_test_runner/axe_core_test_runner/axe_core_test_runner.js +0 -176
- package/front_end/legacy_test_runner/bindings_test_runner/AutomappingTestRunner.js +0 -137
- package/front_end/legacy_test_runner/bindings_test_runner/BindingsTestRunner.js +0 -251
- package/front_end/legacy_test_runner/bindings_test_runner/IsolatedFilesystemTestRunner.js +0 -289
- package/front_end/legacy_test_runner/bindings_test_runner/OverridesTestRunner.js +0 -30
- package/front_end/legacy_test_runner/bindings_test_runner/PersistenceTestRunner.js +0 -111
- package/front_end/legacy_test_runner/bindings_test_runner/bindings_test_runner.js +0 -17
- package/front_end/legacy_test_runner/console_test_runner/console_test_runner.js +0 -732
- package/front_end/legacy_test_runner/coverage_test_runner/coverage_test_runner.js +0 -156
- package/front_end/legacy_test_runner/data_grid_test_runner/data_grid_test_runner.js +0 -85
- package/front_end/legacy_test_runner/device_mode_test_runner/device_mode_test_runner.js +0 -47
- package/front_end/legacy_test_runner/elements_test_runner/EditDOMTestRunner.js +0 -79
- package/front_end/legacy_test_runner/elements_test_runner/ElementsPanelShadowSelectionOnRefreshTestRunner.js +0 -39
- package/front_end/legacy_test_runner/elements_test_runner/ElementsTestRunner.js +0 -1330
- package/front_end/legacy_test_runner/elements_test_runner/SetOuterHTMLTestRunner.js +0 -116
- package/front_end/legacy_test_runner/elements_test_runner/StylesUpdateLinksTestRunner.js +0 -136
- package/front_end/legacy_test_runner/elements_test_runner/elements_test_runner.js +0 -14
- package/front_end/legacy_test_runner/extensions_test_runner/ExtensionsNetworkTestRunner.js +0 -27
- package/front_end/legacy_test_runner/extensions_test_runner/ExtensionsTestRunner.js +0 -71
- package/front_end/legacy_test_runner/extensions_test_runner/extensions_test_runner.js +0 -11
- package/front_end/legacy_test_runner/heap_profiler_test_runner/heap_profiler_test_runner.js +0 -785
- package/front_end/legacy_test_runner/layers_test_runner/layers_test_runner.js +0 -161
- package/front_end/legacy_test_runner/legacy_test_runner.ts +0 -14
- package/front_end/legacy_test_runner/network_test_runner/network_test_runner.js +0 -295
- package/front_end/legacy_test_runner/performance_test_runner/TimelineDataTestRunner.js +0 -5263
- package/front_end/legacy_test_runner/performance_test_runner/TimelineTestRunner.js +0 -366
- package/front_end/legacy_test_runner/performance_test_runner/performance_test_runner.js +0 -11
- package/front_end/legacy_test_runner/sdk_test_runner/sdk_test_runner.js +0 -314
- package/front_end/legacy_test_runner/security_test_runner/security_test_runner.js +0 -36
- package/front_end/legacy_test_runner/sources_test_runner/AutocompleteTestRunner.js +0 -50
- package/front_end/legacy_test_runner/sources_test_runner/DebuggerTestRunner.js +0 -655
- package/front_end/legacy_test_runner/sources_test_runner/EditorTestRunner.js +0 -240
- package/front_end/legacy_test_runner/sources_test_runner/LiveEditTestRunner.js +0 -34
- package/front_end/legacy_test_runner/sources_test_runner/SearchTestRunner.js +0 -161
- package/front_end/legacy_test_runner/sources_test_runner/SourcesTestRunner.js +0 -111
- package/front_end/legacy_test_runner/sources_test_runner/sources_test_runner.js +0 -19
- package/front_end/legacy_test_runner/test_runner/TestRunner.js +0 -1480
- package/front_end/legacy_test_runner/test_runner/test_runner.js +0 -115
- package/front_end/models/ai_assistance/AgentProject.test.ts +0 -370
- package/front_end/models/ai_assistance/AiHistoryStorage.test.ts +0 -540
- package/front_end/models/ai_assistance/ChangeManager.test.ts +0 -330
- package/front_end/models/ai_assistance/EvaluateAction.test.ts +0 -173
- package/front_end/models/ai_assistance/ExtensionScope.test.ts +0 -447
- package/front_end/models/ai_assistance/agents/AiAgent.test.ts +0 -470
- package/front_end/models/ai_assistance/agents/FileAgent.test.ts +0 -216
- package/front_end/models/ai_assistance/agents/NetworkAgent.test.ts +0 -237
- package/front_end/models/ai_assistance/agents/PatchAgent.test.ts +0 -130
- package/front_end/models/ai_assistance/agents/PerformanceAgent.test.ts +0 -230
- package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.test.ts +0 -30
- package/front_end/models/ai_assistance/agents/PerformanceInsightsAgent.test.ts +0 -448
- package/front_end/models/ai_assistance/agents/PerformanceInsightsAgent.ts +0 -498
- package/front_end/models/ai_assistance/agents/StylingAgent.test.ts +0 -1406
- package/front_end/models/ai_assistance/data_formatters/FileFormatter.test.ts +0 -115
- package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.test.ts +0 -87
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.test.ts +0 -392
- package/front_end/models/autofill_manager/AutofillManager.test.ts +0 -272
- package/front_end/models/bindings/CompilerScriptMapping.test.ts +0 -546
- package/front_end/models/bindings/ContentProviderBasedProject.test.ts +0 -118
- package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +0 -139
- package/front_end/models/bindings/DebuggerWorkspaceBinding.test.ts +0 -87
- package/front_end/models/bindings/DefaultScriptMapping.test.ts +0 -192
- package/front_end/models/bindings/FileUtils.test.ts +0 -78
- package/front_end/models/bindings/IgnoreListManager.test.ts +0 -612
- package/front_end/models/bindings/LiveLocation.test.ts +0 -47
- package/front_end/models/bindings/PresentationConsoleMessageHelper.test.ts +0 -271
- package/front_end/models/bindings/ResourceMapping.test.ts +0 -248
- package/front_end/models/bindings/ResourceScriptMapping.test.ts +0 -117
- package/front_end/models/bindings/ResourceUtils.test.ts +0 -105
- package/front_end/models/breakpoints/BreakpointManager.test.ts +0 -1912
- package/front_end/models/cpu_profile/CPUProfileDataModel.test.ts +0 -376
- package/front_end/models/crux-manager/CrUXManager.test.ts +0 -613
- package/front_end/models/emulation/DeviceModeModel.test.ts +0 -104
- package/front_end/models/emulation/EmulatedDevices.test.ts +0 -61
- package/front_end/models/extensions/ExtensionServer.test.ts +0 -1064
- package/front_end/models/extensions/HostUrlPattern.test.ts +0 -312
- package/front_end/models/extensions/LanguageExtensionEndpoint.test.ts +0 -65
- package/front_end/models/extensions/RecorderPluginManager.test.ts +0 -34
- package/front_end/models/formatter/ScriptFormatter.test.ts +0 -93
- package/front_end/models/har/Importer.test.ts +0 -313
- package/front_end/models/har/Log.test.ts +0 -208
- package/front_end/models/har/Writer.test.ts +0 -48
- package/front_end/models/heap_snapshot_model/heap_snapshot_model.test.ts +0 -11
- package/front_end/models/issues_manager/CheckFormsIssuesTrigger.test.ts +0 -22
- package/front_end/models/issues_manager/DeprecationIssue.test.ts +0 -81
- package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.test.ts +0 -52
- package/front_end/models/issues_manager/GenericIssue.test.ts +0 -82
- package/front_end/models/issues_manager/Issue.test.ts +0 -56
- package/front_end/models/issues_manager/IssueResolver.test.ts +0 -91
- package/front_end/models/issues_manager/IssuesManager.test.ts +0 -360
- package/front_end/models/issues_manager/LowTextContrastIssue.test.ts +0 -58
- package/front_end/models/issues_manager/MarkdownIssueDescription.test.ts +0 -92
- package/front_end/models/issues_manager/PropertyRuleIssue.test.ts +0 -109
- package/front_end/models/issues_manager/RelatedIssue.test.ts +0 -64
- package/front_end/models/issues_manager/SRIMessageSignatureIssue.test.ts +0 -68
- package/front_end/models/issues_manager/SelectElementAccessibilityIssue.test.ts +0 -86
- package/front_end/models/issues_manager/SharedDictionaryIssue.test.ts +0 -68
- package/front_end/models/issues_manager/StylesheetLoadingIssue.test.ts +0 -138
- package/front_end/models/javascript_metadata/JavaScriptMetadata.test.ts +0 -62
- package/front_end/models/logs/NetworkLog.test.ts +0 -376
- package/front_end/models/logs/RequestResolver.test.ts +0 -92
- package/front_end/models/persistence/AutomaticFileSystemManager.test.ts +0 -247
- package/front_end/models/persistence/AutomaticFileSystemWorkspaceBinding.test.ts +0 -227
- package/front_end/models/persistence/EditFileSystemView.test.ts +0 -181
- package/front_end/models/persistence/NetworkPersistenceManager.test.ts +0 -989
- package/front_end/models/persistence/PersistenceAction.test.ts +0 -90
- package/front_end/models/persistence/PersistenceImpl.test.ts +0 -228
- package/front_end/models/persistence/PlatformFileSystem.test.ts +0 -19
- package/front_end/models/persistence/WorkspaceSettingsTab.test.ts +0 -146
- package/front_end/models/project_settings/ProjectSettingsModel.test.ts +0 -260
- package/front_end/models/source_map_scopes/NamesResolver.test.ts +0 -623
- package/front_end/models/source_map_scopes/ScopeChainModel.test.ts +0 -86
- package/front_end/models/source_map_scopes/ScopeTreeCache.test.ts +0 -63
- package/front_end/models/text_utils/ContentData.test.ts +0 -162
- package/front_end/models/text_utils/StaticContentProvider.test.ts +0 -34
- package/front_end/models/text_utils/StreamingContentData.test.ts +0 -81
- package/front_end/models/text_utils/Text.test.ts +0 -103
- package/front_end/models/text_utils/TextCursor.test.ts +0 -48
- package/front_end/models/text_utils/TextRange.test.ts +0 -461
- package/front_end/models/text_utils/TextUtils.test.ts +0 -730
- package/front_end/models/text_utils/WasmDisassembly.test.ts +0 -56
- package/front_end/models/trace/ModelImpl.test.ts +0 -161
- package/front_end/models/trace/Processor.test.ts +0 -428
- package/front_end/models/trace/TracingManager.test.ts +0 -100
- package/front_end/models/trace/extras/FetchNodes.test.ts +0 -261
- package/front_end/models/trace/extras/FetchNodes.ts +0 -254
- package/front_end/models/trace/extras/FilmStrip.test.ts +0 -90
- package/front_end/models/trace/extras/MainThreadActivity.test.ts +0 -82
- package/front_end/models/trace/extras/Metadata.test.ts +0 -115
- package/front_end/models/trace/extras/Metadata.ts +0 -79
- package/front_end/models/trace/extras/ScriptDuplication.test.ts +0 -404
- package/front_end/models/trace/extras/StackTraceForEvent.test.ts +0 -328
- package/front_end/models/trace/extras/ThirdParties.test.ts +0 -114
- package/front_end/models/trace/extras/TraceFilter.test.ts +0 -103
- package/front_end/models/trace/extras/TraceTree.test.ts +0 -489
- package/front_end/models/trace/handlers/AnimationFramesHandler.test.ts +0 -40
- package/front_end/models/trace/handlers/AnimationHandler.test.ts +0 -54
- package/front_end/models/trace/handlers/AsyncJSCallsHandler.test.ts +0 -300
- package/front_end/models/trace/handlers/AuctionWorkletsHandler.test.ts +0 -167
- package/front_end/models/trace/handlers/DOMStatsHandler.test.ts +0 -30
- package/front_end/models/trace/handlers/ExtensionTraceDataHandler.test.ts +0 -895
- package/front_end/models/trace/handlers/FlowsHandler.test.ts +0 -185
- package/front_end/models/trace/handlers/FramesHandler.test.ts +0 -248
- package/front_end/models/trace/handlers/GPUHandler.test.ts +0 -26
- package/front_end/models/trace/handlers/ImagePaintingHandler.test.ts +0 -46
- package/front_end/models/trace/handlers/InitiatorsHandler.test.ts +0 -262
- package/front_end/models/trace/handlers/InvalidationsHandler.test.ts +0 -185
- package/front_end/models/trace/handlers/LargestImagePaintHandler.test.ts +0 -62
- package/front_end/models/trace/handlers/LargestTextPaintHandler.test.ts +0 -27
- package/front_end/models/trace/handlers/LayerTreeHandler.test.ts +0 -46
- package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +0 -264
- package/front_end/models/trace/handlers/MemoryHandler.test.ts +0 -29
- package/front_end/models/trace/handlers/MetaHandler.test.ts +0 -638
- package/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts +0 -514
- package/front_end/models/trace/handlers/PageFramesHandler.test.ts +0 -40
- package/front_end/models/trace/handlers/PageLoadMetricsHandler.test.ts +0 -286
- package/front_end/models/trace/handlers/RendererHandler.test.ts +0 -1020
- package/front_end/models/trace/handlers/SamplesHandler.test.ts +0 -356
- package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +0 -114
- package/front_end/models/trace/handlers/ScriptsHandler.test.ts +0 -103
- package/front_end/models/trace/handlers/SelectorStatsHandler.test.ts +0 -41
- package/front_end/models/trace/handlers/Threads.test.ts +0 -59
- package/front_end/models/trace/handlers/UserInteractionsHandler.test.ts +0 -437
- package/front_end/models/trace/handlers/UserTimingsHandler.test.ts +0 -199
- package/front_end/models/trace/handlers/WarningsHandler.test.ts +0 -86
- package/front_end/models/trace/handlers/WorkersHandler.test.ts +0 -80
- package/front_end/models/trace/handlers/helpers.test.ts +0 -101
- package/front_end/models/trace/helpers/SamplesIntegrator.test.ts +0 -372
- package/front_end/models/trace/helpers/SyntheticEvents.test.ts +0 -62
- package/front_end/models/trace/helpers/Timing.test.ts +0 -371
- package/front_end/models/trace/helpers/Trace.test.ts +0 -761
- package/front_end/models/trace/helpers/TreeHelpers.test.ts +0 -457
- package/front_end/models/trace/insights/CLSCulprits.test.ts +0 -251
- package/front_end/models/trace/insights/Cache.test.ts +0 -221
- package/front_end/models/trace/insights/Common.test.ts +0 -125
- package/front_end/models/trace/insights/DOMSize.test.ts +0 -63
- package/front_end/models/trace/insights/DocumentLatency.test.ts +0 -106
- package/front_end/models/trace/insights/DuplicatedJavaScript.test.ts +0 -129
- package/front_end/models/trace/insights/FontDisplay.test.ts +0 -64
- package/front_end/models/trace/insights/ForcedReflow.test.ts +0 -34
- package/front_end/models/trace/insights/ImageDelivery.test.ts +0 -128
- package/front_end/models/trace/insights/InteractionToNextPaint.test.ts +0 -32
- package/front_end/models/trace/insights/LCPDiscovery.test.ts +0 -67
- package/front_end/models/trace/insights/LCPPhases.test.ts +0 -71
- package/front_end/models/trace/insights/LCPPhases.ts +0 -222
- package/front_end/models/trace/insights/LegacyJavaScript.test.ts +0 -81
- package/front_end/models/trace/insights/ModernHTTP.test.ts +0 -347
- package/front_end/models/trace/insights/NetworkDependencyTree.test.ts +0 -554
- package/front_end/models/trace/insights/RenderBlocking.test.ts +0 -137
- package/front_end/models/trace/insights/SlowCSSSelector.test.ts +0 -70
- package/front_end/models/trace/insights/Statistics.test.ts +0 -145
- package/front_end/models/trace/insights/ThirdParties.test.ts +0 -56
- package/front_end/models/trace/insights/Viewport.test.ts +0 -37
- package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +0 -526
- package/front_end/models/trace/lantern/graph/BaseNode.test.ts +0 -391
- package/front_end/models/trace/lantern/graph/PageDependencyGraph.test.ts +0 -670
- package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.test.ts +0 -65
- package/front_end/models/trace/lantern/metrics/Interactive.test.ts +0 -70
- package/front_end/models/trace/lantern/metrics/LargestContentfulPaint.test.ts +0 -42
- package/front_end/models/trace/lantern/metrics/SpeedIndex.test.ts +0 -87
- package/front_end/models/trace/lantern/metrics/TBTUtils.test.ts +0 -138
- package/front_end/models/trace/lantern/simulation/ConnectionPool.test.ts +0 -199
- package/front_end/models/trace/lantern/simulation/DNSCache.test.ts +0 -76
- package/front_end/models/trace/lantern/simulation/Simulator.test.ts +0 -454
- package/front_end/models/trace/lantern/simulation/TCPConnection.test.ts +0 -368
- package/front_end/models/trace/types/File.test.ts +0 -42
- package/front_end/models/trace/types/TraceEvents.test.ts +0 -91
- package/front_end/models/workspace/SearchConfig.test.ts +0 -114
- package/front_end/models/workspace/UISourceCode.test.ts +0 -414
- package/front_end/models/workspace/WorkspaceImpl.test.ts +0 -187
- package/front_end/models/workspace_diff/WorkspaceDiff.test.ts +0 -82
- package/front_end/panels/accessibility/AccessibilitySidebarView.test.ts +0 -67
- package/front_end/panels/ai_assistance/AiAssistancePanel.test.ts +0 -1803
- package/front_end/panels/ai_assistance/PatchWidget.test.ts +0 -445
- package/front_end/panels/ai_assistance/SelectWorkspaceDialog.test.ts +0 -191
- package/front_end/panels/ai_assistance/components/ChatView.test.ts +0 -102
- package/front_end/panels/ai_assistance/components/ExploreWidget.test.ts +0 -118
- package/front_end/panels/ai_assistance/components/MarkdownRendererWithCodeBlock.test.ts +0 -80
- package/front_end/panels/ai_assistance/components/UserActionRow.test.ts +0 -119
- package/front_end/panels/animation/AnimationScreenshotPopover.ts +0 -65
- package/front_end/panels/animation/AnimationTimeline.test.ts +0 -759
- package/front_end/panels/animation/animationScreenshotPopover.css +0 -18
- package/front_end/panels/application/AppManifestView.test.ts +0 -321
- package/front_end/panels/application/ApplicationPanelSidebar.test.ts +0 -479
- package/front_end/panels/application/BackgroundServiceView.test.ts +0 -164
- package/front_end/panels/application/DOMStorageModel.test.ts +0 -45
- package/front_end/panels/application/ExtensionStorageItemsView.test.ts +0 -152
- package/front_end/panels/application/ExtensionStorageModel.test.ts +0 -249
- package/front_end/panels/application/IndexedDBModel.test.ts +0 -252
- package/front_end/panels/application/IndexedDBViews.test.ts +0 -182
- package/front_end/panels/application/InterestGroupStorageView.test.ts +0 -155
- package/front_end/panels/application/InterestGroupTreeElement.test.ts +0 -37
- package/front_end/panels/application/KeyValueStorageItemsView.test.ts +0 -120
- package/front_end/panels/application/PreloadingTreeElement.test.ts +0 -30
- package/front_end/panels/application/ReportingApiReportsView.test.ts +0 -117
- package/front_end/panels/application/ReportingApiReportsView.ts +0 -88
- package/front_end/panels/application/ReportingApiView.test.ts +0 -102
- package/front_end/panels/application/ServiceWorkerUpdateCycleView.test.ts +0 -130
- package/front_end/panels/application/ServiceWorkersView.test.ts +0 -179
- package/front_end/panels/application/SharedStorageEventsView.test.ts +0 -231
- package/front_end/panels/application/SharedStorageItemsView.test.ts +0 -913
- package/front_end/panels/application/SharedStorageListTreeElement.test.ts +0 -161
- package/front_end/panels/application/SharedStorageModel.test.ts +0 -434
- package/front_end/panels/application/SharedStorageTreeElement.test.ts +0 -140
- package/front_end/panels/application/StorageBucketsTreeElement.test.ts +0 -148
- package/front_end/panels/application/StorageView.test.ts +0 -152
- package/front_end/panels/application/components/BackForwardCacheView.test.ts +0 -303
- package/front_end/panels/application/components/BounceTrackingMitigationsView.test.ts +0 -138
- package/front_end/panels/application/components/EndpointsGrid.test.ts +0 -83
- package/front_end/panels/application/components/FrameDetailsView.test.ts +0 -261
- package/front_end/panels/application/components/InterestGroupAccessGrid.test.ts +0 -70
- package/front_end/panels/application/components/OriginTrialTreeView.test.ts +0 -442
- package/front_end/panels/application/components/ProtocolHandlersView.test.ts +0 -73
- package/front_end/panels/application/components/ReportsGrid.test.ts +0 -131
- package/front_end/panels/application/components/ServiceWorkerRouterView.test.ts +0 -57
- package/front_end/panels/application/components/SharedStorageAccessGrid.test.ts +0 -84
- package/front_end/panels/application/components/SharedStorageMetadataView.test.ts +0 -122
- package/front_end/panels/application/components/StackTrace.test.ts +0 -222
- package/front_end/panels/application/components/StorageMetadataView.test.ts +0 -208
- package/front_end/panels/application/components/TrustTokensView.test.ts +0 -127
- package/front_end/panels/application/preloading/PreloadingView.test.ts +0 -1180
- package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +0 -194
- package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.test.ts +0 -532
- package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +0 -503
- package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.test.ts +0 -150
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.test.ts +0 -158
- package/front_end/panels/application/preloading/components/RuleSetGrid.test.ts +0 -169
- package/front_end/panels/application/preloading/components/UsedPreloadingView.test.ts +0 -751
- package/front_end/panels/autofill/AutofillView.test.ts +0 -295
- package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.test.ts +0 -52
- package/front_end/panels/browser_debugger/browser_debugger.test.ts +0 -11
- package/front_end/panels/changes/CombinedDiffView.test.ts +0 -152
- package/front_end/panels/changes/changes.test.ts +0 -11
- package/front_end/panels/console/ConsoleContextSelector.test.ts +0 -96
- package/front_end/panels/console/ConsoleFormat.test.ts +0 -462
- package/front_end/panels/console/ConsolePrompt.test.ts +0 -142
- package/front_end/panels/console/ConsoleView.test.ts +0 -276
- package/front_end/panels/console/ConsoleViewMessage.test.ts +0 -433
- package/front_end/panels/console/ConsoleViewport.test.ts +0 -399
- package/front_end/panels/console/ErrorStackParser.test.ts +0 -343
- package/front_end/panels/console_counters/console_counters.test.ts +0 -11
- package/front_end/panels/coverage/CoverageDecorationManager.test.ts +0 -210
- package/front_end/panels/coverage/CoverageModel.test.ts +0 -91
- package/front_end/panels/coverage/CoverageView.test.ts +0 -201
- package/front_end/panels/css_overview/CSSOverviewPanel.test.ts +0 -40
- package/front_end/panels/developer_resources/DeveloperResourcesView.test.ts +0 -43
- package/front_end/panels/developer_resources/developer_resources.test.ts +0 -11
- package/front_end/panels/elements/AccessibilityTreeView.test.ts +0 -50
- package/front_end/panels/elements/CSSRuleValidator.test.ts +0 -443
- package/front_end/panels/elements/CSSValueTraceView.test.ts +0 -214
- package/front_end/panels/elements/ClassesPaneWidget.test.ts +0 -48
- package/front_end/panels/elements/ColorSwatchPopoverIcon.test.ts +0 -63
- package/front_end/panels/elements/ComputedStyleModel.test.ts +0 -155
- package/front_end/panels/elements/ComputedStyleWidget.test.ts +0 -153
- package/front_end/panels/elements/DOMLinkifier.test.ts +0 -60
- package/front_end/panels/elements/ElementStatePaneWidget.test.ts +0 -363
- package/front_end/panels/elements/ElementsPanel.test.ts +0 -144
- package/front_end/panels/elements/ElementsTreeElement.test.ts +0 -42
- package/front_end/panels/elements/ElementsTreeElementHighlighter.test.ts +0 -51
- package/front_end/panels/elements/ElementsTreeElementHighlighter.ts +0 -107
- package/front_end/panels/elements/ElementsTreeOutline.test.ts +0 -215
- package/front_end/panels/elements/InspectElementModeController.test.ts +0 -88
- package/front_end/panels/elements/PlatformFontsWidget.test.ts +0 -46
- package/front_end/panels/elements/PropertiesWidget.test.ts +0 -76
- package/front_end/panels/elements/PropertyRenderer.test.ts +0 -340
- package/front_end/panels/elements/StylePropertiesSection.test.ts +0 -324
- package/front_end/panels/elements/StylePropertyHighlighter.test.ts +0 -149
- package/front_end/panels/elements/StylePropertyTreeElement.test.ts +0 -2192
- package/front_end/panels/elements/StylePropertyUtils.test.ts +0 -41
- package/front_end/panels/elements/StylesSidebarPane.test.ts +0 -716
- package/front_end/panels/elements/TopLayerContainer.test.ts +0 -55
- package/front_end/panels/elements/WebCustomData.test.ts +0 -77
- package/front_end/panels/elements/components/AccessibilityTreeNode.test.ts +0 -44
- package/front_end/panels/elements/components/AdornerManager.test.ts +0 -82
- package/front_end/panels/elements/components/CSSHintDetailsView.test.ts +0 -40
- package/front_end/panels/elements/components/CSSPropertyDocsView.test.ts +0 -32
- package/front_end/panels/elements/components/CSSPropertyIconResolver.test.ts +0 -931
- package/front_end/panels/elements/components/CSSQuery.test.ts +0 -58
- package/front_end/panels/elements/components/CSSVariableValueView.test.ts +0 -20
- package/front_end/panels/elements/components/ComputedStyleProperty.test.ts +0 -38
- package/front_end/panels/elements/components/ComputedStyleTrace.test.ts +0 -58
- package/front_end/panels/elements/components/ElementsBreadcrumbs.test.ts +0 -435
- package/front_end/panels/elements/components/ElementsTreeExpandButton.test.ts +0 -50
- package/front_end/panels/elements/components/LayoutPane.test.ts +0 -208
- package/front_end/panels/elements/components/LayoutPane.ts +0 -515
- package/front_end/panels/elements/components/LayoutPaneUtils.ts +0 -41
- package/front_end/panels/elements/components/QueryContainer.test.ts +0 -151
- package/front_end/panels/elements/components/StylePropertyEditor.test.ts +0 -188
- package/front_end/panels/elements/components/layoutPane.css +0 -168
- package/front_end/panels/emulation/AdvancedApp.test.ts +0 -80
- package/front_end/panels/emulation/MediaQueryInspector.test.ts +0 -55
- package/front_end/panels/event_listeners/EventListenersView.test.ts +0 -50
- package/front_end/panels/explain/PromptBuilder.test.ts +0 -582
- package/front_end/panels/explain/components/ConsoleInsight.test.ts +0 -922
- package/front_end/panels/issues/IssueAggregator.test.ts +0 -427
- package/front_end/panels/issues/IssueView.test.ts +0 -75
- package/front_end/panels/issues/IssuesPane.test.ts +0 -32
- package/front_end/panels/layer_viewer/layer_viewer.test.ts +0 -11
- package/front_end/panels/layers/LayersPanel.test.ts +0 -55
- package/front_end/panels/lighthouse/LighthouseController.test.ts +0 -36
- package/front_end/panels/lighthouse/LighthousePanel.test.ts +0 -89
- package/front_end/panels/lighthouse/LighthouseProtocolService.test.ts +0 -70
- package/front_end/panels/lighthouse/LighthouseReportRenderer.test.ts +0 -123
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.test.ts +0 -201
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.test.ts +0 -54
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.test.ts +0 -124
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.test.ts +0 -421
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.test.ts +0 -194
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.test.ts +0 -118
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.test.ts +0 -397
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.test.ts +0 -450
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.test.ts +0 -91
- package/front_end/panels/media/MainView.test.ts +0 -127
- package/front_end/panels/media/TickingFlameChartHelpers.test.ts +0 -90
- package/front_end/panels/mobile_throttling/ThrottlingManager.test.ts +0 -83
- package/front_end/panels/network/BlockedURLsPane.test.ts +0 -80
- package/front_end/panels/network/NetworkConfigView.test.ts +0 -15
- package/front_end/panels/network/NetworkDataGridNode.test.ts +0 -463
- package/front_end/panels/network/NetworkItemView.test.ts +0 -169
- package/front_end/panels/network/NetworkLogView.test.ts +0 -1063
- package/front_end/panels/network/NetworkOverview.test.ts +0 -60
- package/front_end/panels/network/NetworkPanel.test.ts +0 -103
- package/front_end/panels/network/NetworkSearchScope.test.ts +0 -182
- package/front_end/panels/network/RequestCookiesView.test.ts +0 -49
- package/front_end/panels/network/RequestHTMLView.test.ts +0 -28
- package/front_end/panels/network/RequestPayloadView.test.ts +0 -13
- package/front_end/panels/network/RequestPreviewView.test.ts +0 -105
- package/front_end/panels/network/RequestResponseView.test.ts +0 -94
- package/front_end/panels/network/RequestTimingView.test.ts +0 -172
- package/front_end/panels/network/ResourceDirectSocketChunkView.test.ts +0 -335
- package/front_end/panels/network/components/DirectSocketConnectionView.test.ts +0 -253
- package/front_end/panels/network/components/HeaderSectionRow.test.ts +0 -659
- package/front_end/panels/network/components/RequestHeaderSection.test.ts +0 -101
- package/front_end/panels/network/components/RequestHeadersView.test.ts +0 -534
- package/front_end/panels/network/components/RequestTrustTokensView.test.ts +0 -80
- package/front_end/panels/network/components/ResponseHeaderSection.test.ts +0 -1359
- package/front_end/panels/performance_monitor/PerformanceMonitor.test.ts +0 -37
- package/front_end/panels/profiler/HeapDetachedElementsView.test.ts +0 -34
- package/front_end/panels/profiler/HeapProfileView.test.ts +0 -34
- package/front_end/panels/profiler/HeapSnapshotView.test.ts +0 -35
- package/front_end/panels/protocol_monitor/JSONEditor.test.ts +0 -1321
- package/front_end/panels/protocol_monitor/ProtocolMonitor.test.ts +0 -546
- package/front_end/panels/recorder/RecorderController.test.ts +0 -476
- package/front_end/panels/recorder/components/CreateRecordingView.test.ts +0 -141
- package/front_end/panels/recorder/components/RecordingListView.test.ts +0 -75
- package/front_end/panels/recorder/components/RecordingView.test.ts +0 -235
- package/front_end/panels/recorder/components/ReplaySection.test.ts +0 -113
- package/front_end/panels/recorder/components/SelectButton.test.ts +0 -56
- package/front_end/panels/recorder/components/StepEditor.test.ts +0 -711
- package/front_end/panels/recorder/components/StepView.test.ts +0 -208
- package/front_end/panels/recorder/converters/LighthouseConverter.test.ts +0 -79
- package/front_end/panels/recorder/converters/PuppeteerConverter.test.ts +0 -88
- package/front_end/panels/recorder/converters/PuppeteerReplayConverter.test.ts +0 -59
- package/front_end/panels/recorder/injected/selectors/CSSSelector.test.ts +0 -39
- package/front_end/panels/recorder/injected.test.ts +0 -364
- package/front_end/panels/recorder/models/RecorderSettings.test.ts +0 -65
- package/front_end/panels/recorder/models/RecorderShorcutHelper.test.ts +0 -59
- package/front_end/panels/recorder/models/RecordingPlayer.test.ts +0 -255
- package/front_end/panels/recorder/models/SchemaUtils.test.ts +0 -35
- package/front_end/panels/recorder/models/ScreenshotUtils.test.ts +0 -74
- package/front_end/panels/recorder/models/Section.test.ts +0 -98
- package/front_end/panels/recorder/models/recording-storage.test.ts +0 -66
- package/front_end/panels/recorder/models/screenshot-storage.test.ts +0 -159
- package/front_end/panels/recorder/util/SharedObject.test.ts +0 -88
- package/front_end/panels/screencast/ScreencastApp.test.ts +0 -24
- package/front_end/panels/search/SearchResultsPane.test.ts +0 -228
- package/front_end/panels/search/SearchView.test.ts +0 -197
- package/front_end/panels/security/CookieControlsView.test.ts +0 -65
- package/front_end/panels/security/CookieReportView.test.ts +0 -161
- package/front_end/panels/security/SecurityModel.test.ts +0 -45
- package/front_end/panels/security/SecurityPanel.test.ts +0 -242
- package/front_end/panels/settings/AISettingsTab.test.ts +0 -280
- package/front_end/panels/settings/components/SyncSection.test.ts +0 -76
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.test.ts +0 -85
- package/front_end/panels/settings/emulation/utils/StructuredHeaders.test.ts +0 -462
- package/front_end/panels/settings/emulation/utils/UserAgentMetadata.test.ts +0 -94
- package/front_end/panels/snippets/ScriptSnippetFileSystem.test.ts +0 -29
- package/front_end/panels/sources/BreakpointEditDialog.test.ts +0 -127
- package/front_end/panels/sources/CSSPlugin.test.ts +0 -90
- package/front_end/panels/sources/CoveragePlugin.test.ts +0 -80
- package/front_end/panels/sources/DebuggerPausedMessage.test.ts +0 -136
- package/front_end/panels/sources/DebuggerPlugin.test.ts +0 -724
- package/front_end/panels/sources/FilePathScoreFunction.test.ts +0 -171
- package/front_end/panels/sources/FilteredUISourceCodeListProvider.test.ts +0 -151
- package/front_end/panels/sources/NavigatorView.test.ts +0 -276
- package/front_end/panels/sources/OutlineQuickOpen.test.ts +0 -1064
- package/front_end/panels/sources/ResourceOriginPlugin.test.ts +0 -38
- package/front_end/panels/sources/SourcesNavigator.test.ts +0 -614
- package/front_end/panels/sources/SourcesView.test.ts +0 -239
- package/front_end/panels/sources/TabbedEditorContainer.test.ts +0 -122
- package/front_end/panels/sources/components/BreakpointsView.test.ts +0 -1866
- package/front_end/panels/sources/components/BreakpointsViewUtils.test.ts +0 -209
- package/front_end/panels/sources/components/HeadersView.test.ts +0 -573
- package/front_end/panels/sources/components/breakpointsView.css +0 -275
- package/front_end/panels/timeline/AnnotationHelpers.test.ts +0 -184
- package/front_end/panels/timeline/Breadcrumbs.test.ts +0 -281
- package/front_end/panels/timeline/EntriesFilter.test.ts +0 -703
- package/front_end/panels/timeline/EventsSerializer.test.ts +0 -71
- package/front_end/panels/timeline/FreshRecording.test.ts +0 -23
- package/front_end/panels/timeline/Initiators.test.ts +0 -173
- package/front_end/panels/timeline/ModificationsManager.test.ts +0 -344
- package/front_end/panels/timeline/SaveFileFormatter.test.ts +0 -79
- package/front_end/panels/timeline/ThirdPartyTreeView.test.ts +0 -84
- package/front_end/panels/timeline/TimelineController.test.ts +0 -98
- package/front_end/panels/timeline/TimelineDetailsView.test.ts +0 -154
- package/front_end/panels/timeline/TimelineFilters.test.ts +0 -72
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +0 -416
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +0 -325
- package/front_end/panels/timeline/TimelineFlameChartView.test.ts +0 -1184
- package/front_end/panels/timeline/TimelineHistoryManager.test.ts +0 -165
- package/front_end/panels/timeline/TimelineLoader.test.ts +0 -170
- package/front_end/panels/timeline/TimelineMiniMap.test.ts +0 -135
- package/front_end/panels/timeline/TimelinePanel.test.ts +0 -286
- package/front_end/panels/timeline/TimelineSelection.test.ts +0 -112
- package/front_end/panels/timeline/TimelineTreeView.test.ts +0 -339
- package/front_end/panels/timeline/TimelineUIUtils.test.ts +0 -1790
- package/front_end/panels/timeline/TrackConfiguration.test.ts +0 -46
- package/front_end/panels/timeline/components/BreadcrumbsUI.test.ts +0 -101
- package/front_end/panels/timeline/components/CPUThrottlingSelector.test.ts +0 -100
- package/front_end/panels/timeline/components/FieldSettingsDialog.test.ts +0 -295
- package/front_end/panels/timeline/components/IgnoreListSetting.test.ts +0 -324
- package/front_end/panels/timeline/components/InteractionBreakdown.test.ts +0 -37
- package/front_end/panels/timeline/components/Invalidations.test.ts +0 -37
- package/front_end/panels/timeline/components/LayoutShiftDetails.test.ts +0 -62
- package/front_end/panels/timeline/components/LiveMetricsView.test.ts +0 -1014
- package/front_end/panels/timeline/components/MetricCard.test.ts +0 -637
- package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +0 -184
- package/front_end/panels/timeline/components/NetworkThrottlingSelector.test.ts +0 -185
- package/front_end/panels/timeline/components/OriginMap.test.ts +0 -359
- package/front_end/panels/timeline/components/RelatedInsightChips.test.ts +0 -105
- package/front_end/panels/timeline/components/Sidebar.test.ts +0 -146
- package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +0 -286
- package/front_end/panels/timeline/components/SidebarInsightsTab.test.ts +0 -43
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +0 -211
- package/front_end/panels/timeline/components/TimelineSummary.test.ts +0 -77
- package/front_end/panels/timeline/components/Utils.test.ts +0 -112
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.test.ts +0 -358
- package/front_end/panels/timeline/components/insights/CLSCulprits.test.ts +0 -44
- package/front_end/panels/timeline/components/insights/InteractionToNextPaint.test.ts +0 -71
- package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +0 -118
- package/front_end/panels/timeline/components/insights/LCPPhases.ts +0 -256
- package/front_end/panels/timeline/components/insights/Table.test.ts +0 -60
- package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +0 -1317
- package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.test.ts +0 -41
- package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +0 -101
- package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +0 -197
- package/front_end/panels/timeline/track_appenders/CompatibilityTracksAppender.test.ts +0 -228
- package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +0 -247
- package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +0 -116
- package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +0 -125
- package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +0 -104
- package/front_end/panels/timeline/track_appenders/NetworkTrackAppender.test.ts +0 -65
- package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +0 -610
- package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +0 -347
- package/front_end/panels/timeline/utils/AICallTree.test.ts +0 -519
- package/front_end/panels/timeline/utils/EntityMapper.test.ts +0 -122
- package/front_end/panels/timeline/utils/EntryName.test.ts +0 -177
- package/front_end/panels/timeline/utils/Helpers.test.ts +0 -85
- package/front_end/panels/timeline/utils/IgnoreList.test.ts +0 -191
- package/front_end/panels/timeline/utils/ImageCache.test.ts +0 -107
- package/front_end/panels/timeline/utils/InsightAIContext.test.ts +0 -84
- package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +0 -333
- package/front_end/panels/timeline/utils/Treemap.test.ts +0 -321
- package/front_end/panels/utils/utils.test.ts +0 -238
- package/front_end/panels/web_audio/AudioContextContentBuilder.ts +0 -113
- package/front_end/panels/web_audio/AudioContextSelector.ts +0 -140
- package/front_end/panels/web_audio/WebAudioView.test.ts +0 -34
- package/front_end/panels/web_audio/audioContextSelector.css +0 -20
- package/front_end/panels/web_audio/graph_visualizer/EdgeView.ts +0 -80
- package/front_end/panels/web_audio/graph_visualizer/GraphManager.ts +0 -46
- package/front_end/panels/web_audio/graph_visualizer/GraphStyle.ts +0 -96
- package/front_end/panels/web_audio/graph_visualizer/GraphView.ts +0 -197
- package/front_end/panels/web_audio/graph_visualizer/NodeRendererUtility.ts +0 -43
- package/front_end/panels/web_audio/graph_visualizer/NodeView.ts +0 -258
- package/front_end/panels/web_audio/graph_visualizer/graph_visualizer.ts +0 -19
- package/front_end/panels/web_audio/web_audio.test.ts +0 -11
- package/front_end/panels/webauthn/WebauthnPane.test.ts +0 -374
- package/front_end/panels/whats_new/ReleaseNote.test.ts +0 -92
- package/front_end/panels/whats_new/ReleaseNoteView.test.ts +0 -160
- package/front_end/services/trace_bounds/TraceBounds.test.ts +0 -155
- package/front_end/testing/AiAssistanceHelpers.ts +0 -347
- package/front_end/testing/ConsoleHelpers.ts +0 -39
- package/front_end/testing/ContextMenuHelpers.ts +0 -46
- package/front_end/testing/Cookies.ts +0 -72
- package/front_end/testing/DOMHelpers.ts +0 -357
- package/front_end/testing/DataGridHelpers.ts +0 -83
- package/front_end/testing/EnvironmentHelpers.ts +0 -550
- package/front_end/testing/ExpectStubCall.ts +0 -45
- package/front_end/testing/ExtensionHelpers.ts +0 -77
- package/front_end/testing/FileManagerHelpers.ts +0 -22
- package/front_end/testing/InsightHelpers.ts +0 -81
- package/front_end/testing/LanguagePluginHelpers.ts +0 -91
- package/front_end/testing/MockConnection.ts +0 -162
- package/front_end/testing/MockExecutionContext.ts +0 -24
- package/front_end/testing/MockIssuesManager.ts +0 -64
- package/front_end/testing/MockIssuesModel.ts +0 -22
- package/front_end/testing/MockNetworkLog.ts +0 -41
- package/front_end/testing/MockScopeChain.test.ts +0 -25
- package/front_end/testing/MockScopeChain.ts +0 -402
- package/front_end/testing/MutationHelpers.test.ts +0 -273
- package/front_end/testing/MutationHelpers.ts +0 -250
- package/front_end/testing/NetworkHelpers.ts +0 -36
- package/front_end/testing/OverridesHelpers.ts +0 -79
- package/front_end/testing/PersistenceHelpers.ts +0 -64
- package/front_end/testing/PropertyParser.ts +0 -34
- package/front_end/testing/README.md +0 -89
- package/front_end/testing/ResourceTreeHelpers.ts +0 -126
- package/front_end/testing/SourceMapEncoder.test.ts +0 -169
- package/front_end/testing/SourceMapEncoder.ts +0 -366
- package/front_end/testing/SourceMapHelpers.ts +0 -115
- package/front_end/testing/StorageItemsViewHelpers.ts +0 -24
- package/front_end/testing/StubIssue.ts +0 -123
- package/front_end/testing/StyleHelpers.ts +0 -139
- package/front_end/testing/TraceHelpers.ts +0 -990
- package/front_end/testing/TraceLoader.ts +0 -386
- package/front_end/testing/TrackAsyncOperations.ts +0 -276
- package/front_end/testing/UISourceCodeHelpers.ts +0 -157
- package/front_end/testing/UserMetricsHelpers.ts +0 -17
- package/front_end/testing/ViewFunctionHelpers.ts +0 -62
- package/front_end/testing/VisualLoggingHelpers.ts +0 -11
- package/front_end/testing/test_setup.ts +0 -90
- package/front_end/ui/components/adorners/Adorner.test.ts +0 -134
- package/front_end/ui/components/buttons/Button.test.ts +0 -268
- package/front_end/ui/components/cards/Card.test.ts +0 -101
- package/front_end/ui/components/chrome_link/ChromeLink.test.ts +0 -57
- package/front_end/ui/components/code_highlighter/CodeHighlighter.test.ts +0 -318
- package/front_end/ui/components/dialogs/ButtonDialog.test.ts +0 -174
- package/front_end/ui/components/dialogs/Dialog.test.ts +0 -903
- package/front_end/ui/components/dialogs/ShortcutDialog.test.ts +0 -81
- package/front_end/ui/components/diff_view/DiffView.test.ts +0 -94
- package/front_end/ui/components/docs/recorder_recording_view/basic.html +0 -20
- package/front_end/ui/components/docs/recorder_recording_view/basic.ts +0 -99
- package/front_end/ui/components/expandable_list/ExpandableList.test.ts +0 -77
- package/front_end/ui/components/helpers/helpers.test.ts +0 -118
- package/front_end/ui/components/highlighting/HighlightManager.test.ts +0 -89
- package/front_end/ui/components/highlighting/highlighting.css +0 -9
- package/front_end/ui/components/icon_button/FileSourceIcon.test.ts +0 -32
- package/front_end/ui/components/icon_button/Icon.test.ts +0 -126
- package/front_end/ui/components/icon_button/IconButton.test.ts +0 -277
- package/front_end/ui/components/issue_counter/IssueCounter.test.ts +0 -234
- package/front_end/ui/components/issue_counter/IssueLinkIcon.test.ts +0 -187
- package/front_end/ui/components/linkifier/LinkifierImpl.test.ts +0 -84
- package/front_end/ui/components/markdown_view/CodeBlock.test.ts +0 -92
- package/front_end/ui/components/markdown_view/MarkdownImage.test.ts +0 -56
- package/front_end/ui/components/markdown_view/MarkdownLink.test.ts +0 -30
- package/front_end/ui/components/markdown_view/MarkdownView.test.ts +0 -372
- package/front_end/ui/components/menus/SelectMenu.test.ts +0 -106
- package/front_end/ui/components/node_text/NodeText.test.ts +0 -80
- package/front_end/ui/components/panel_feedback/FeedbackButton.test.ts +0 -36
- package/front_end/ui/components/panel_feedback/PanelFeedback.test.ts +0 -47
- package/front_end/ui/components/panel_feedback/PreviewToggle.test.ts +0 -75
- package/front_end/ui/components/render_coordinator/render_coordinator.test.ts +0 -243
- package/front_end/ui/components/report_view/ReportView.test.ts +0 -44
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.test.ts +0 -298
- package/front_end/ui/components/settings/SettingCheckbox.test.ts +0 -205
- package/front_end/ui/components/settings/SettingDeprecationWarning.test.ts +0 -68
- package/front_end/ui/components/snackbars/Snackbar.test.ts +0 -141
- package/front_end/ui/components/survey_link/SurveyLink.test.ts +0 -118
- package/front_end/ui/components/switch/SwitchImpl.test.ts +0 -54
- package/front_end/ui/components/text_editor/AutocompleteHistory.test.ts +0 -126
- package/front_end/ui/components/text_editor/ExecutionPositionHighlighter.test.ts +0 -140
- package/front_end/ui/components/text_editor/TextEditor.test.ts +0 -280
- package/front_end/ui/components/text_editor/TextEditorHistory.test.ts +0 -170
- package/front_end/ui/components/text_editor/javascript.test.ts +0 -121
- package/front_end/ui/components/text_prompt/TextPrompt.test.ts +0 -81
- package/front_end/ui/components/tooltips/Tooltip.test.ts +0 -277
- package/front_end/ui/components/tree_outline/TreeOutline.test.ts +0 -1472
- package/front_end/ui/legacy/ARIAUtils.test.ts +0 -59
- package/front_end/ui/legacy/ActionRegistration.test.ts +0 -175
- package/front_end/ui/legacy/Context.test.ts +0 -14
- package/front_end/ui/legacy/ContextMenu.test.ts +0 -202
- package/front_end/ui/legacy/DockController.test.ts +0 -88
- package/front_end/ui/legacy/FilterBar.test.ts +0 -52
- package/front_end/ui/legacy/Fragment.test.ts +0 -60
- package/front_end/ui/legacy/Geometry.test.ts +0 -658
- package/front_end/ui/legacy/Infobar.test.ts +0 -53
- package/front_end/ui/legacy/KeyboardShortcut.test.ts +0 -28
- package/front_end/ui/legacy/ListModel.test.ts +0 -78
- package/front_end/ui/legacy/ListWidget.test.ts +0 -78
- package/front_end/ui/legacy/SettingsUI.test.ts +0 -157
- package/front_end/ui/legacy/ShortcutRegistry.test.ts +0 -35
- package/front_end/ui/legacy/SplitWidget.test.ts +0 -54
- package/front_end/ui/legacy/SuggestBox.test.ts +0 -126
- package/front_end/ui/legacy/Toolbar.test.ts +0 -231
- package/front_end/ui/legacy/Treeoutline.test.ts +0 -112
- package/front_end/ui/legacy/UIUtils.test.ts +0 -196
- package/front_end/ui/legacy/View.test.ts +0 -63
- package/front_end/ui/legacy/ViewRegistration.test.ts +0 -76
- package/front_end/ui/legacy/Widget.test.ts +0 -174
- package/front_end/ui/legacy/XLink.test.ts +0 -68
- package/front_end/ui/legacy/components/color_picker/ColorFormatSpec.test.ts +0 -217
- package/front_end/ui/legacy/components/color_picker/Spectrum.test.ts +0 -66
- package/front_end/ui/legacy/components/data_grid/DataGridElement.test.ts +0 -268
- package/front_end/ui/legacy/components/inline_editor/AnimationTimingModel.test.ts +0 -23
- package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.test.ts +0 -58
- package/front_end/ui/legacy/components/inline_editor/BezierUI.test.ts +0 -124
- package/front_end/ui/legacy/components/inline_editor/CSSAngle.test.ts +0 -399
- package/front_end/ui/legacy/components/inline_editor/CSSLinearEasingModel.test.ts +0 -64
- package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.test.ts +0 -36
- package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.test.ts +0 -40
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.test.ts +0 -267
- package/front_end/ui/legacy/components/inline_editor/FontEditorUnitConverter.test.ts +0 -47
- package/front_end/ui/legacy/components/inline_editor/FontEditorUtils.test.ts +0 -27
- package/front_end/ui/legacy/components/inline_editor/LinkSwatch.test.ts +0 -86
- package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.test.ts +0 -45
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.test.ts +0 -54
- package/front_end/ui/legacy/components/perf_ui/ChartViewport.test.ts +0 -63
- package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +0 -218
- package/front_end/ui/legacy/components/perf_ui/FlameChart.test.ts +0 -1469
- package/front_end/ui/legacy/components/perf_ui/PieChart.test.ts +0 -220
- package/front_end/ui/legacy/components/perf_ui/TimelineGrid.test.ts +0 -152
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.test.ts +0 -70
- package/front_end/ui/legacy/components/quick_open/CommandMenu.test.ts +0 -74
- package/front_end/ui/legacy/components/quick_open/FilteredListWidget.test.ts +0 -111
- package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +0 -81
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.test.ts +0 -81
- package/front_end/ui/legacy/components/source_frame/SourceFrame.test.ts +0 -146
- package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.test.ts +0 -67
- package/front_end/ui/legacy/components/utils/JSPresentationUtils.test.ts +0 -51
- package/front_end/ui/legacy/components/utils/Linkifier.test.ts +0 -395
- package/front_end/ui/legacy/inspectorViewTabbedPane.css +0 -13
- package/front_end/ui/legacy/theme_support/ThemeSupport.test.ts +0 -129
- package/front_end/ui/lit/i18n-template.test.ts +0 -51
- package/front_end/ui/lit/strip-whitespace.test.ts +0 -110
- package/front_end/ui/visual_logging/Debugging.test.ts +0 -21
- package/front_end/ui/visual_logging/DomState.test.ts +0 -241
- package/front_end/ui/visual_logging/LoggingConfig.test.ts +0 -118
- package/front_end/ui/visual_logging/LoggingDriver.test.ts +0 -1039
- package/front_end/ui/visual_logging/LoggingEvents.test.ts +0 -271
- package/front_end/ui/visual_logging/LoggingState.test.ts +0 -122
- package/front_end/ui/visual_logging/NonDomState.test.ts +0 -44
- package/inspector_overlay/common.test.ts +0 -38
- package/inspector_overlay/css_grid_label_helpers.test.ts +0 -962
- package/inspector_overlay/debug/tool_distances.html +0 -25
- package/inspector_overlay/highlight_common.test.ts +0 -42
- package/inspector_overlay/highlight_flex_common.test.ts +0 -511
- package/inspector_overlay/tool_distances.ts +0 -125
- package/inspector_overlay/tool_highlight.test.ts +0 -105
- package/inspector_overlay/tool_source_order.test.ts +0 -130
- package/inspector_overlay/tool_window_controls.test.ts +0 -81
- package/scripts/DIR_METADATA +0 -3
- package/scripts/README.md +0 -26
- package/scripts/__init__.py +0 -0
- package/scripts/add_icon_paths.py +0 -71
- package/scripts/ai_assistance/README.md +0 -59
- package/scripts/ai_assistance/auto-run/auto-run.ts +0 -389
- package/scripts/ai_assistance/auto-run/shared/comment-parsers.test.ts +0 -168
- package/scripts/ai_assistance/auto-run/shared/comment-parsers.ts +0 -97
- package/scripts/ai_assistance/auto-run/shared/puppeteer-helpers.ts +0 -304
- package/scripts/ai_assistance/auto-run/targets/elements-executor.ts +0 -60
- package/scripts/ai_assistance/auto-run/targets/elements-multimodal-executor.ts +0 -60
- package/scripts/ai_assistance/auto-run/targets/factory.ts +0 -33
- package/scripts/ai_assistance/auto-run/targets/interface.ts +0 -28
- package/scripts/ai_assistance/auto-run/targets/patching-executor.ts +0 -68
- package/scripts/ai_assistance/auto-run/targets/performance-insights-executor.ts +0 -97
- package/scripts/ai_assistance/auto-run/targets/performance-main-thread-executor.ts +0 -97
- package/scripts/ai_assistance/auto-run/trace-downloader.ts +0 -91
- package/scripts/ai_assistance/eval/index.html +0 -32
- package/scripts/ai_assistance/eval/index.js +0 -564
- package/scripts/ai_assistance/package.json +0 -7
- package/scripts/ai_assistance/to_tsv.mjs +0 -39
- package/scripts/ai_assistance/tsconfig.json +0 -14
- package/scripts/ai_assistance/types.d.ts +0 -76
- package/scripts/build/README.md +0 -2
- package/scripts/build/__init__.py +0 -3
- package/scripts/build/assert_grd.py +0 -57
- package/scripts/build/assert_third_party_readmes.py +0 -70
- package/scripts/build/build_inspector_overlay.py +0 -106
- package/scripts/build/code_generator_frontend.py +0 -413
- package/scripts/build/compress_files.js +0 -84
- package/scripts/build/cross_reference_ninja_and_tsc.js +0 -180
- package/scripts/build/devtools_plugin.js +0 -157
- package/scripts/build/efficiently_recompile.py +0 -29
- package/scripts/build/esbuild.js +0 -53
- package/scripts/build/generate_aria.py +0 -36
- package/scripts/build/generate_css_js_files.js +0 -83
- package/scripts/build/generate_deprecations.py +0 -99
- package/scripts/build/generate_devtools_grd.py +0 -123
- package/scripts/build/generate_devtools_json.js +0 -27
- package/scripts/build/generate_html_entrypoint.js +0 -48
- package/scripts/build/generate_supported_css.py +0 -135
- package/scripts/build/ninja/README.md +0 -191
- package/scripts/build/ninja/bundle.gni +0 -108
- package/scripts/build/ninja/copy-file.js +0 -38
- package/scripts/build/ninja/copy-files.js +0 -39
- package/scripts/build/ninja/copy.gni +0 -59
- package/scripts/build/ninja/devtools_entrypoint.gni +0 -221
- package/scripts/build/ninja/devtools_module.gni +0 -33
- package/scripts/build/ninja/devtools_pre_built.gni +0 -54
- package/scripts/build/ninja/generate-declaration.js +0 -18
- package/scripts/build/ninja/generate-tsconfig.js +0 -46
- package/scripts/build/ninja/generate_css.gni +0 -43
- package/scripts/build/ninja/minify-json-files.js +0 -20
- package/scripts/build/ninja/minify_json.gni +0 -32
- package/scripts/build/ninja/node.gni +0 -36
- package/scripts/build/ninja/vars.gni +0 -15
- package/scripts/build/ninja/wasm.gni +0 -25
- package/scripts/build/ninja/write-if-changed.js +0 -27
- package/scripts/build/rollup.config.mjs +0 -31
- package/scripts/build/tests/generate_css_js_files_test.js +0 -40
- package/scripts/build/tests/plugins_test.js +0 -149
- package/scripts/build/typescript/README.md +0 -94
- package/scripts/build/typescript/tests/README.md +0 -10
- package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/BUILDCONFIG.gn +0 -10
- package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/build_output.txt.expected +0 -14
- package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/front_end/module/exporting.ts +0 -1
- package/scripts/build/typescript/tests/fixtures/compilation_failure_front_end/front_end/module/index.ts +0 -3
- package/scripts/build/typescript/tests/fixtures/recompile/BUILDCONFIG.gn +0 -10
- package/scripts/build/typescript/tests/fixtures/recompile/build_output.txt.expected +0 -8
- package/scripts/build/typescript/tests/fixtures/recompile/build_output.txt.expected.regen +0 -4
- package/scripts/build/typescript/tests/fixtures/recompile/front_end/module/exporting.ts +0 -1
- package/scripts/build/typescript/tests/fixtures/recompile/front_end/module/module.ts +0 -5
- package/scripts/build/typescript/tests/fixtures/recompile_dep/BUILDCONFIG.gn +0 -10
- package/scripts/build/typescript/tests/fixtures/recompile_dep/build_output.txt.expected +0 -8
- package/scripts/build/typescript/tests/fixtures/recompile_dep/build_output.txt.expected.regen +0 -6
- package/scripts/build/typescript/tests/fixtures/recompile_dep/expected.tsbuildinfo +0 -2084
- package/scripts/build/typescript/tests/fixtures/recompile_dep/front_end/module/exporting.ts +0 -1
- package/scripts/build/typescript/tests/fixtures/recompile_dep/front_end/module/module.ts +0 -7
- package/scripts/build/typescript/tests/fixtures/simple_dep/BUILDCONFIG.gn +0 -10
- package/scripts/build/typescript/tests/fixtures/simple_dep/build_output.txt.expected +0 -6
- package/scripts/build/typescript/tests/fixtures/simple_dep/build_output.txt.expected.regen +0 -2
- package/scripts/build/typescript/tests/fixtures/simple_dep/front_end/module/exporting.ts +0 -1
- package/scripts/build/typescript/tests/fixtures/simple_dep/front_end/module/index.ts +0 -3
- package/scripts/build/typescript/tests/fixtures/test_dep/BUILDCONFIG.gn +0 -10
- package/scripts/build/typescript/tests/fixtures/test_dep/build_output.txt.expected +0 -8
- package/scripts/build/typescript/tests/fixtures/test_dep/front_end/module/exporting.ts +0 -1
- package/scripts/build/typescript/tests/fixtures/test_dep/front_end/module/module.ts +0 -5
- package/scripts/build/typescript/tests/verify_ts_libary.sh +0 -88
- package/scripts/build/typescript/ts_library.py +0 -330
- package/scripts/build/typescript/typescript.gni +0 -289
- package/scripts/build/wasm-as.py +0 -87
- package/scripts/build/wasm_sourcemap.mjs +0 -22
- package/scripts/check_esbuild_versions.js +0 -51
- package/scripts/check_experiments.js +0 -292
- package/scripts/check_external_links.js +0 -150
- package/scripts/component_server/README.md +0 -43
- package/scripts/component_server/server.js +0 -596
- package/scripts/devtools_build.mjs +0 -329
- package/scripts/devtools_build.test.mjs +0 -243
- package/scripts/devtools_paths.js +0 -193
- package/scripts/devtools_paths.py +0 -132
- package/scripts/eslint_rules/README.md +0 -27
- package/scripts/eslint_rules/lib/canvas-context-tracking.ts +0 -154
- package/scripts/eslint_rules/lib/check-css-import.ts +0 -52
- package/scripts/eslint_rules/lib/check-enumerated-histograms.ts +0 -42
- package/scripts/eslint_rules/lib/check-license-header.ts +0 -222
- package/scripts/eslint_rules/lib/check-test-definitions.ts +0 -91
- package/scripts/eslint_rules/lib/check-was-shown-methods.ts +0 -57
- package/scripts/eslint_rules/lib/enforce-custom-element-definitions-location.ts +0 -95
- package/scripts/eslint_rules/lib/enforce-custom-event-names.ts +0 -174
- package/scripts/eslint_rules/lib/enforce-default-import-name.ts +0 -86
- package/scripts/eslint_rules/lib/enforce-optional-properties-last.ts +0 -87
- package/scripts/eslint_rules/lib/enforce-ui-strings-as-const.ts +0 -69
- package/scripts/eslint_rules/lib/es-modules-import.ts +0 -404
- package/scripts/eslint_rules/lib/html-tagged-template.ts +0 -85
- package/scripts/eslint_rules/lib/inject-checkbox-styles.ts +0 -175
- package/scripts/eslint_rules/lib/inline-type-imports.ts +0 -217
- package/scripts/eslint_rules/lib/jslog-context-list.ts +0 -167
- package/scripts/eslint_rules/lib/l10n-filename-matches.ts +0 -136
- package/scripts/eslint_rules/lib/l10n-i18nString-call-only-with-uistrings.ts +0 -62
- package/scripts/eslint_rules/lib/l10n-no-i18nString-calls-module-instantiation.ts +0 -61
- package/scripts/eslint_rules/lib/l10n-no-locked-or-placeholder-only-phrase.ts +0 -72
- package/scripts/eslint_rules/lib/l10n-no-uistrings-export.ts +0 -89
- package/scripts/eslint_rules/lib/l10n-no-unused-message.ts +0 -159
- package/scripts/eslint_rules/lib/lit-no-attribute-quotes.ts +0 -111
- package/scripts/eslint_rules/lib/lit-template-result-or-nothing.ts +0 -158
- package/scripts/eslint_rules/lib/no-a-tags-in-lit.ts +0 -43
- package/scripts/eslint_rules/lib/no-adopted-style-sheets.ts +0 -37
- package/scripts/eslint_rules/lib/no-assert-deep-strict-equal.ts +0 -60
- package/scripts/eslint_rules/lib/no-assert-equal-boolean-null-undefined.ts +0 -178
- package/scripts/eslint_rules/lib/no-assert-equal.ts +0 -88
- package/scripts/eslint_rules/lib/no-assert-strict-equal-for-arrays-and-objects.ts +0 -86
- package/scripts/eslint_rules/lib/no-bound-component-methods.ts +0 -161
- package/scripts/eslint_rules/lib/no-commented-out-console.ts +0 -47
- package/scripts/eslint_rules/lib/no-commented-out-import.ts +0 -46
- package/scripts/eslint_rules/lib/no-customized-builtin-elements.ts +0 -143
- package/scripts/eslint_rules/lib/no-deprecated-component-usages.ts +0 -46
- package/scripts/eslint_rules/lib/no-document-body-mutation.ts +0 -102
- package/scripts/eslint_rules/lib/no-imperative-dom-api/adorner.ts +0 -52
- package/scripts/eslint_rules/lib/no-imperative-dom-api/aria-utils.ts +0 -112
- package/scripts/eslint_rules/lib/no-imperative-dom-api/ast.ts +0 -63
- package/scripts/eslint_rules/lib/no-imperative-dom-api/button.ts +0 -80
- package/scripts/eslint_rules/lib/no-imperative-dom-api/class-member.ts +0 -54
- package/scripts/eslint_rules/lib/no-imperative-dom-api/data-grid.ts +0 -153
- package/scripts/eslint_rules/lib/no-imperative-dom-api/dom-api-devtools-extensions.ts +0 -36
- package/scripts/eslint_rules/lib/no-imperative-dom-api/dom-api.ts +0 -146
- package/scripts/eslint_rules/lib/no-imperative-dom-api/dom-fragment.ts +0 -307
- package/scripts/eslint_rules/lib/no-imperative-dom-api/split-widget.ts +0 -129
- package/scripts/eslint_rules/lib/no-imperative-dom-api/toolbar.ts +0 -194
- package/scripts/eslint_rules/lib/no-imperative-dom-api/ui-fragment.ts +0 -60
- package/scripts/eslint_rules/lib/no-imperative-dom-api/ui-utils.ts +0 -213
- package/scripts/eslint_rules/lib/no-imperative-dom-api/widget.ts +0 -101
- package/scripts/eslint_rules/lib/no-imperative-dom-api.ts +0 -289
- package/scripts/eslint_rules/lib/no-importing-images-from-src.ts +0 -83
- package/scripts/eslint_rules/lib/no-imports-in-directory.ts +0 -73
- package/scripts/eslint_rules/lib/no-it-screenshot-only-or-repeat.ts +0 -47
- package/scripts/eslint_rules/lib/no-lit-render-outside-of-view.ts +0 -94
- package/scripts/eslint_rules/lib/no-new-lit-element-components.ts +0 -45
- package/scripts/eslint_rules/lib/no-screenshot-test-outside-perf-panel.ts +0 -77
- package/scripts/eslint_rules/lib/no-self-closing-custom-element-tagnames.ts +0 -42
- package/scripts/eslint_rules/lib/no-underscored-properties.ts +0 -70
- package/scripts/eslint_rules/lib/prefer-assert-instance-of.ts +0 -76
- package/scripts/eslint_rules/lib/prefer-assert-is-ok.ts +0 -94
- package/scripts/eslint_rules/lib/prefer-assert-length-of.ts +0 -69
- package/scripts/eslint_rules/lib/prefer-assert-strict-equal.ts +0 -86
- package/scripts/eslint_rules/lib/prefer-private-class-members.ts +0 -38
- package/scripts/eslint_rules/lib/prefer-sinon-assert.ts +0 -143
- package/scripts/eslint_rules/lib/prefer-url-string.ts +0 -109
- package/scripts/eslint_rules/lib/screenshot-assertion-in-it-screenshot.ts +0 -110
- package/scripts/eslint_rules/lib/set-data-type-reference.ts +0 -69
- package/scripts/eslint_rules/lib/single-screenshot-assertion-per-test.ts +0 -85
- package/scripts/eslint_rules/lib/static-custom-event-names.ts +0 -215
- package/scripts/eslint_rules/lib/trace-engine-test-timeouts.ts +0 -125
- package/scripts/eslint_rules/lib/utils/l10n-helper.ts +0 -48
- package/scripts/eslint_rules/lib/utils/lit.ts +0 -56
- package/scripts/eslint_rules/lib/utils/ruleCreator.ts +0 -16
- package/scripts/eslint_rules/lib/utils/treeHelpers.ts +0 -13
- package/scripts/eslint_rules/rules-dir.mjs +0 -75
- package/scripts/eslint_rules/tests/canvas-context-tracking.test.ts +0 -124
- package/scripts/eslint_rules/tests/check-css-import.test.ts +0 -43
- package/scripts/eslint_rules/tests/check-enumerated-histograms.test.ts +0 -31
- package/scripts/eslint_rules/tests/check-license-header.test.ts +0 -293
- package/scripts/eslint_rules/tests/check-test-definitions.test.ts +0 -165
- package/scripts/eslint_rules/tests/check-was-shown-methods.test.ts +0 -103
- package/scripts/eslint_rules/tests/check_css_import_test_file.css +0 -5
- package/scripts/eslint_rules/tests/enforce-custom-element-definitions-location.test.ts +0 -56
- package/scripts/eslint_rules/tests/enforce-custom-event-names.test.ts +0 -124
- package/scripts/eslint_rules/tests/enforce-default-import-name.test.ts +0 -53
- package/scripts/eslint_rules/tests/enforce-optional-properties-last.test.ts +0 -137
- package/scripts/eslint_rules/tests/enforce-ui-strings-as-const.test.ts +0 -35
- package/scripts/eslint_rules/tests/es-modules-import.test.ts +0 -332
- package/scripts/eslint_rules/tests/html-tagged-template.test.ts +0 -103
- package/scripts/eslint_rules/tests/inject-checkbox-styles.test.ts +0 -170
- package/scripts/eslint_rules/tests/inline-type-imports.test.ts +0 -82
- package/scripts/eslint_rules/tests/jslog-context-list.test.ts +0 -218
- package/scripts/eslint_rules/tests/l10n-filename-matches.test.ts +0 -90
- package/scripts/eslint_rules/tests/l10n-i18nString-call-only-with-uistrings.test.ts +0 -44
- package/scripts/eslint_rules/tests/l10n-no-i18nString-calls-module-instantiation.test.ts +0 -77
- package/scripts/eslint_rules/tests/l10n-no-locked-or-placeholder-only-phrase.test.ts +0 -45
- package/scripts/eslint_rules/tests/l10n-no-uistrings-export.test.ts +0 -50
- package/scripts/eslint_rules/tests/l10n-no-unused-message.test.ts +0 -119
- package/scripts/eslint_rules/tests/lit-no-attribute-quotes.test.ts +0 -43
- package/scripts/eslint_rules/tests/lit-template-result-or-nothing.test.ts +0 -142
- package/scripts/eslint_rules/tests/no-a-tags-in-lit.test.ts +0 -67
- package/scripts/eslint_rules/tests/no-adopted-style-sheets.test.ts +0 -52
- package/scripts/eslint_rules/tests/no-assert-deep-strict-equal.test.ts +0 -51
- package/scripts/eslint_rules/tests/no-assert-equal-boolean-null-undefined.test.ts +0 -207
- package/scripts/eslint_rules/tests/no-assert-equal.test.ts +0 -101
- package/scripts/eslint_rules/tests/no-assert-strict-equal-for-arrays-and-objects.test.ts +0 -87
- package/scripts/eslint_rules/tests/no-bound-component-methods.test.ts +0 -105
- package/scripts/eslint_rules/tests/no-commented-out-console.test.ts +0 -35
- package/scripts/eslint_rules/tests/no-commented-out-import.test.ts +0 -45
- package/scripts/eslint_rules/tests/no-customized-builtin-elements.test.ts +0 -150
- package/scripts/eslint_rules/tests/no-deprecated-component-usages.test.ts +0 -46
- package/scripts/eslint_rules/tests/no-document-body-mutation.test.ts +0 -45
- package/scripts/eslint_rules/tests/no-imperative-dom-api.test.ts +0 -1237
- package/scripts/eslint_rules/tests/no-importing-images-from-src.test.ts +0 -40
- package/scripts/eslint_rules/tests/no-imports-in-directory.test.ts +0 -89
- package/scripts/eslint_rules/tests/no-it-screenshot-only-or-repeat.test.ts +0 -34
- package/scripts/eslint_rules/tests/no-lit-render-outside-of-view.test.ts +0 -80
- package/scripts/eslint_rules/tests/no-new-lit-element-components.test.ts +0 -27
- package/scripts/eslint_rules/tests/no-screenshot-test-outside-perf-panel.test.ts +0 -99
- package/scripts/eslint_rules/tests/no-self-closing-custom-element-tagnames.test.ts +0 -59
- package/scripts/eslint_rules/tests/no-underscored-properties.test.ts +0 -99
- package/scripts/eslint_rules/tests/prefer-assert-instance-of.test.ts +0 -195
- package/scripts/eslint_rules/tests/prefer-assert-is-ok.test.ts +0 -182
- package/scripts/eslint_rules/tests/prefer-assert-length-of.test.ts +0 -143
- package/scripts/eslint_rules/tests/prefer-assert-strict-equal.test.ts +0 -367
- package/scripts/eslint_rules/tests/prefer-private-class-members.test.ts +0 -59
- package/scripts/eslint_rules/tests/prefer-sinon-assert.test.ts +0 -333
- package/scripts/eslint_rules/tests/prefer-url-string.test.ts +0 -87
- package/scripts/eslint_rules/tests/screenshot-assertion-in-it-screenshot.test.ts +0 -79
- package/scripts/eslint_rules/tests/set-data-type-reference.test.ts +0 -60
- package/scripts/eslint_rules/tests/single-screenshot-assertion-per-test.test.ts +0 -97
- package/scripts/eslint_rules/tests/static-custom-event-names.test.ts +0 -179
- package/scripts/eslint_rules/tests/trace-engine-test-timeouts.test.ts +0 -59
- package/scripts/eslint_rules/tests/utils.test.ts +0 -79
- package/scripts/eslint_rules/tsconfig.json +0 -13
- package/scripts/extract_bugs.ts +0 -127
- package/scripts/generate_metric_compare_strings.js +0 -130
- package/scripts/hosted_mode/cert.pem +0 -21
- package/scripts/hosted_mode/key.pem +0 -28
- package/scripts/hosted_mode/server.js +0 -258
- package/scripts/javascript_natives/helpers.js +0 -232
- package/scripts/javascript_natives/index.js +0 -105
- package/scripts/javascript_natives/package.json +0 -9
- package/scripts/javascript_natives/test.d.ts +0 -13
- package/scripts/javascript_natives/tests.js +0 -195
- package/scripts/migration/class-fields/migrate.js +0 -77
- package/scripts/migration/class-fields/migrate.sh +0 -8
- package/scripts/migration/class-fields/package.json +0 -5
- package/scripts/migration/web-tests-esm/rename-legacy-global.mjs +0 -129
- package/scripts/npm_test.js +0 -141
- package/scripts/protocol_typescript/protocol_dts_generator.ts +0 -459
- package/scripts/protocol_typescript/protocol_schema.d.ts +0 -92
- package/scripts/reformat-clang-js-ts.js +0 -71
- package/scripts/run_build.mjs +0 -116
- package/scripts/run_on_target.mjs +0 -88
- package/scripts/run_start.mjs +0 -233
- package/scripts/scaffold/README.md +0 -4
- package/scripts/scaffold/scaffold-widget.js +0 -167
- package/scripts/scaffold/templates/WidgetTemplate.css.txt +0 -9
- package/scripts/scaffold/templates/WidgetTemplate.ts.txt +0 -60
- package/scripts/search-trace-files.js +0 -66
- package/scripts/stylelint_rules/lib/use_theme_colors.mjs +0 -322
- package/scripts/stylelint_rules/tests/use_theme_colors.test.js +0 -515
- package/scripts/tools/update_goldens.py +0 -457
- package/scripts/tools/update_goldens_unittest.py +0 -88
- package/scripts/tools/update_goldens_v2.py +0 -68
- package/scripts/tsconfig.json +0 -10
- package/scripts/utils.js +0 -160
- package/scripts/watch_build.js +0 -230
- package/scripts/whitespaces.txt +0 -12
@@ -24,12 +24,12 @@ declare namespace ProtocolProxyApi {
|
|
24
24
|
|
25
25
|
Audits: AuditsApi;
|
26
26
|
|
27
|
-
Extensions: ExtensionsApi;
|
28
|
-
|
29
27
|
Autofill: AutofillApi;
|
30
28
|
|
31
29
|
BackgroundService: BackgroundServiceApi;
|
32
30
|
|
31
|
+
BluetoothEmulation: BluetoothEmulationApi;
|
32
|
+
|
33
33
|
Browser: BrowserApi;
|
34
34
|
|
35
35
|
CSS: CSSApi;
|
@@ -42,22 +42,30 @@ declare namespace ProtocolProxyApi {
|
|
42
42
|
|
43
43
|
DOMDebugger: DOMDebuggerApi;
|
44
44
|
|
45
|
-
EventBreakpoints: EventBreakpointsApi;
|
46
|
-
|
47
45
|
DOMSnapshot: DOMSnapshotApi;
|
48
46
|
|
49
47
|
DOMStorage: DOMStorageApi;
|
50
48
|
|
49
|
+
DeviceAccess: DeviceAccessApi;
|
50
|
+
|
51
51
|
DeviceOrientation: DeviceOrientationApi;
|
52
52
|
|
53
53
|
Emulation: EmulationApi;
|
54
54
|
|
55
|
-
|
55
|
+
EventBreakpoints: EventBreakpointsApi;
|
56
56
|
|
57
|
-
|
57
|
+
Extensions: ExtensionsApi;
|
58
|
+
|
59
|
+
FedCm: FedCmApi;
|
60
|
+
|
61
|
+
Fetch: FetchApi;
|
58
62
|
|
59
63
|
FileSystem: FileSystemApi;
|
60
64
|
|
65
|
+
HeadlessExperimental: HeadlessExperimentalApi;
|
66
|
+
|
67
|
+
IO: IOApi;
|
68
|
+
|
61
69
|
IndexedDB: IndexedDBApi;
|
62
70
|
|
63
71
|
Input: InputApi;
|
@@ -68,18 +76,24 @@ declare namespace ProtocolProxyApi {
|
|
68
76
|
|
69
77
|
Log: LogApi;
|
70
78
|
|
79
|
+
Media: MediaApi;
|
80
|
+
|
71
81
|
Memory: MemoryApi;
|
72
82
|
|
73
83
|
Network: NetworkApi;
|
74
84
|
|
75
85
|
Overlay: OverlayApi;
|
76
86
|
|
87
|
+
PWA: PWAApi;
|
88
|
+
|
77
89
|
Page: PageApi;
|
78
90
|
|
79
91
|
Performance: PerformanceApi;
|
80
92
|
|
81
93
|
PerformanceTimeline: PerformanceTimelineApi;
|
82
94
|
|
95
|
+
Preload: PreloadApi;
|
96
|
+
|
83
97
|
Security: SecurityApi;
|
84
98
|
|
85
99
|
ServiceWorker: ServiceWorkerApi;
|
@@ -94,24 +108,10 @@ declare namespace ProtocolProxyApi {
|
|
94
108
|
|
95
109
|
Tracing: TracingApi;
|
96
110
|
|
97
|
-
Fetch: FetchApi;
|
98
|
-
|
99
111
|
WebAudio: WebAudioApi;
|
100
112
|
|
101
113
|
WebAuthn: WebAuthnApi;
|
102
114
|
|
103
|
-
Media: MediaApi;
|
104
|
-
|
105
|
-
DeviceAccess: DeviceAccessApi;
|
106
|
-
|
107
|
-
Preload: PreloadApi;
|
108
|
-
|
109
|
-
FedCm: FedCmApi;
|
110
|
-
|
111
|
-
PWA: PWAApi;
|
112
|
-
|
113
|
-
BluetoothEmulation: BluetoothEmulationApi;
|
114
|
-
|
115
115
|
Debugger: DebuggerApi;
|
116
116
|
|
117
117
|
HeapProfiler: HeapProfilerApi;
|
@@ -131,12 +131,12 @@ declare namespace ProtocolProxyApi {
|
|
131
131
|
|
132
132
|
Audits: AuditsDispatcher;
|
133
133
|
|
134
|
-
Extensions: ExtensionsDispatcher;
|
135
|
-
|
136
134
|
Autofill: AutofillDispatcher;
|
137
135
|
|
138
136
|
BackgroundService: BackgroundServiceDispatcher;
|
139
137
|
|
138
|
+
BluetoothEmulation: BluetoothEmulationDispatcher;
|
139
|
+
|
140
140
|
Browser: BrowserDispatcher;
|
141
141
|
|
142
142
|
CSS: CSSDispatcher;
|
@@ -149,22 +149,30 @@ declare namespace ProtocolProxyApi {
|
|
149
149
|
|
150
150
|
DOMDebugger: DOMDebuggerDispatcher;
|
151
151
|
|
152
|
-
EventBreakpoints: EventBreakpointsDispatcher;
|
153
|
-
|
154
152
|
DOMSnapshot: DOMSnapshotDispatcher;
|
155
153
|
|
156
154
|
DOMStorage: DOMStorageDispatcher;
|
157
155
|
|
156
|
+
DeviceAccess: DeviceAccessDispatcher;
|
157
|
+
|
158
158
|
DeviceOrientation: DeviceOrientationDispatcher;
|
159
159
|
|
160
160
|
Emulation: EmulationDispatcher;
|
161
161
|
|
162
|
-
|
162
|
+
EventBreakpoints: EventBreakpointsDispatcher;
|
163
163
|
|
164
|
-
|
164
|
+
Extensions: ExtensionsDispatcher;
|
165
|
+
|
166
|
+
FedCm: FedCmDispatcher;
|
167
|
+
|
168
|
+
Fetch: FetchDispatcher;
|
165
169
|
|
166
170
|
FileSystem: FileSystemDispatcher;
|
167
171
|
|
172
|
+
HeadlessExperimental: HeadlessExperimentalDispatcher;
|
173
|
+
|
174
|
+
IO: IODispatcher;
|
175
|
+
|
168
176
|
IndexedDB: IndexedDBDispatcher;
|
169
177
|
|
170
178
|
Input: InputDispatcher;
|
@@ -175,18 +183,24 @@ declare namespace ProtocolProxyApi {
|
|
175
183
|
|
176
184
|
Log: LogDispatcher;
|
177
185
|
|
186
|
+
Media: MediaDispatcher;
|
187
|
+
|
178
188
|
Memory: MemoryDispatcher;
|
179
189
|
|
180
190
|
Network: NetworkDispatcher;
|
181
191
|
|
182
192
|
Overlay: OverlayDispatcher;
|
183
193
|
|
194
|
+
PWA: PWADispatcher;
|
195
|
+
|
184
196
|
Page: PageDispatcher;
|
185
197
|
|
186
198
|
Performance: PerformanceDispatcher;
|
187
199
|
|
188
200
|
PerformanceTimeline: PerformanceTimelineDispatcher;
|
189
201
|
|
202
|
+
Preload: PreloadDispatcher;
|
203
|
+
|
190
204
|
Security: SecurityDispatcher;
|
191
205
|
|
192
206
|
ServiceWorker: ServiceWorkerDispatcher;
|
@@ -201,24 +215,10 @@ declare namespace ProtocolProxyApi {
|
|
201
215
|
|
202
216
|
Tracing: TracingDispatcher;
|
203
217
|
|
204
|
-
Fetch: FetchDispatcher;
|
205
|
-
|
206
218
|
WebAudio: WebAudioDispatcher;
|
207
219
|
|
208
220
|
WebAuthn: WebAuthnDispatcher;
|
209
221
|
|
210
|
-
Media: MediaDispatcher;
|
211
|
-
|
212
|
-
DeviceAccess: DeviceAccessDispatcher;
|
213
|
-
|
214
|
-
Preload: PreloadDispatcher;
|
215
|
-
|
216
|
-
FedCm: FedCmDispatcher;
|
217
|
-
|
218
|
-
PWA: PWADispatcher;
|
219
|
-
|
220
|
-
BluetoothEmulation: BluetoothEmulationDispatcher;
|
221
|
-
|
222
222
|
Debugger: DebuggerDispatcher;
|
223
223
|
|
224
224
|
HeapProfiler: HeapProfilerDispatcher;
|
@@ -407,49 +407,6 @@ declare namespace ProtocolProxyApi {
|
|
407
407
|
|
408
408
|
}
|
409
409
|
|
410
|
-
export interface ExtensionsApi {
|
411
|
-
/**
|
412
|
-
* Installs an unpacked extension from the filesystem similar to
|
413
|
-
* --load-extension CLI flags. Returns extension ID once the extension
|
414
|
-
* has been installed. Available if the client is connected using the
|
415
|
-
* --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging
|
416
|
-
* flag is set.
|
417
|
-
*/
|
418
|
-
invoke_loadUnpacked(params: Protocol.Extensions.LoadUnpackedRequest): Promise<Protocol.Extensions.LoadUnpackedResponse>;
|
419
|
-
|
420
|
-
/**
|
421
|
-
* Uninstalls an unpacked extension (others not supported) from the profile.
|
422
|
-
* Available if the client is connected using the --remote-debugging-pipe flag
|
423
|
-
* and the --enable-unsafe-extension-debugging.
|
424
|
-
*/
|
425
|
-
invoke_uninstall(params: Protocol.Extensions.UninstallRequest): Promise<Protocol.ProtocolResponseWithError>;
|
426
|
-
|
427
|
-
/**
|
428
|
-
* Gets data from extension storage in the given `storageArea`. If `keys` is
|
429
|
-
* specified, these are used to filter the result.
|
430
|
-
*/
|
431
|
-
invoke_getStorageItems(params: Protocol.Extensions.GetStorageItemsRequest): Promise<Protocol.Extensions.GetStorageItemsResponse>;
|
432
|
-
|
433
|
-
/**
|
434
|
-
* Removes `keys` from extension storage in the given `storageArea`.
|
435
|
-
*/
|
436
|
-
invoke_removeStorageItems(params: Protocol.Extensions.RemoveStorageItemsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
437
|
-
|
438
|
-
/**
|
439
|
-
* Clears extension storage in the given `storageArea`.
|
440
|
-
*/
|
441
|
-
invoke_clearStorageItems(params: Protocol.Extensions.ClearStorageItemsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
442
|
-
|
443
|
-
/**
|
444
|
-
* Sets `values` in extension storage in the given `storageArea`. The provided `values`
|
445
|
-
* will be merged with existing values in the storage area.
|
446
|
-
*/
|
447
|
-
invoke_setStorageItems(params: Protocol.Extensions.SetStorageItemsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
448
|
-
|
449
|
-
}
|
450
|
-
export interface ExtensionsDispatcher {
|
451
|
-
}
|
452
|
-
|
453
410
|
export interface AutofillApi {
|
454
411
|
/**
|
455
412
|
* Trigger autofill on a form identified by the fieldId.
|
@@ -517,9 +474,124 @@ declare namespace ProtocolProxyApi {
|
|
517
474
|
|
518
475
|
}
|
519
476
|
|
477
|
+
export interface BluetoothEmulationApi {
|
478
|
+
/**
|
479
|
+
* Enable the BluetoothEmulation domain.
|
480
|
+
*/
|
481
|
+
invoke_enable(params: Protocol.BluetoothEmulation.EnableRequest): Promise<Protocol.ProtocolResponseWithError>;
|
482
|
+
|
483
|
+
/**
|
484
|
+
* Set the state of the simulated central.
|
485
|
+
*/
|
486
|
+
invoke_setSimulatedCentralState(params: Protocol.BluetoothEmulation.SetSimulatedCentralStateRequest): Promise<Protocol.ProtocolResponseWithError>;
|
487
|
+
|
488
|
+
/**
|
489
|
+
* Disable the BluetoothEmulation domain.
|
490
|
+
*/
|
491
|
+
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
492
|
+
|
493
|
+
/**
|
494
|
+
* Simulates a peripheral with |address|, |name| and |knownServiceUuids|
|
495
|
+
* that has already been connected to the system.
|
496
|
+
*/
|
497
|
+
invoke_simulatePreconnectedPeripheral(params: Protocol.BluetoothEmulation.SimulatePreconnectedPeripheralRequest): Promise<Protocol.ProtocolResponseWithError>;
|
498
|
+
|
499
|
+
/**
|
500
|
+
* Simulates an advertisement packet described in |entry| being received by
|
501
|
+
* the central.
|
502
|
+
*/
|
503
|
+
invoke_simulateAdvertisement(params: Protocol.BluetoothEmulation.SimulateAdvertisementRequest): Promise<Protocol.ProtocolResponseWithError>;
|
504
|
+
|
505
|
+
/**
|
506
|
+
* Simulates the response code from the peripheral with |address| for a
|
507
|
+
* GATT operation of |type|. The |code| value follows the HCI Error Codes from
|
508
|
+
* Bluetooth Core Specification Vol 2 Part D 1.3 List Of Error Codes.
|
509
|
+
*/
|
510
|
+
invoke_simulateGATTOperationResponse(params: Protocol.BluetoothEmulation.SimulateGATTOperationResponseRequest): Promise<Protocol.ProtocolResponseWithError>;
|
511
|
+
|
512
|
+
/**
|
513
|
+
* Simulates the response from the characteristic with |characteristicId| for a
|
514
|
+
* characteristic operation of |type|. The |code| value follows the Error
|
515
|
+
* Codes from Bluetooth Core Specification Vol 3 Part F 3.4.1.1 Error Response.
|
516
|
+
* The |data| is expected to exist when simulating a successful read operation
|
517
|
+
* response.
|
518
|
+
*/
|
519
|
+
invoke_simulateCharacteristicOperationResponse(params: Protocol.BluetoothEmulation.SimulateCharacteristicOperationResponseRequest): Promise<Protocol.ProtocolResponseWithError>;
|
520
|
+
|
521
|
+
/**
|
522
|
+
* Simulates the response from the descriptor with |descriptorId| for a
|
523
|
+
* descriptor operation of |type|. The |code| value follows the Error
|
524
|
+
* Codes from Bluetooth Core Specification Vol 3 Part F 3.4.1.1 Error Response.
|
525
|
+
* The |data| is expected to exist when simulating a successful read operation
|
526
|
+
* response.
|
527
|
+
*/
|
528
|
+
invoke_simulateDescriptorOperationResponse(params: Protocol.BluetoothEmulation.SimulateDescriptorOperationResponseRequest): Promise<Protocol.ProtocolResponseWithError>;
|
529
|
+
|
530
|
+
/**
|
531
|
+
* Adds a service with |serviceUuid| to the peripheral with |address|.
|
532
|
+
*/
|
533
|
+
invoke_addService(params: Protocol.BluetoothEmulation.AddServiceRequest): Promise<Protocol.BluetoothEmulation.AddServiceResponse>;
|
534
|
+
|
535
|
+
/**
|
536
|
+
* Removes the service respresented by |serviceId| from the simulated central.
|
537
|
+
*/
|
538
|
+
invoke_removeService(params: Protocol.BluetoothEmulation.RemoveServiceRequest): Promise<Protocol.ProtocolResponseWithError>;
|
539
|
+
|
540
|
+
/**
|
541
|
+
* Adds a characteristic with |characteristicUuid| and |properties| to the
|
542
|
+
* service represented by |serviceId|.
|
543
|
+
*/
|
544
|
+
invoke_addCharacteristic(params: Protocol.BluetoothEmulation.AddCharacteristicRequest): Promise<Protocol.BluetoothEmulation.AddCharacteristicResponse>;
|
545
|
+
|
546
|
+
/**
|
547
|
+
* Removes the characteristic respresented by |characteristicId| from the
|
548
|
+
* simulated central.
|
549
|
+
*/
|
550
|
+
invoke_removeCharacteristic(params: Protocol.BluetoothEmulation.RemoveCharacteristicRequest): Promise<Protocol.ProtocolResponseWithError>;
|
551
|
+
|
552
|
+
/**
|
553
|
+
* Adds a descriptor with |descriptorUuid| to the characteristic respresented
|
554
|
+
* by |characteristicId|.
|
555
|
+
*/
|
556
|
+
invoke_addDescriptor(params: Protocol.BluetoothEmulation.AddDescriptorRequest): Promise<Protocol.BluetoothEmulation.AddDescriptorResponse>;
|
557
|
+
|
558
|
+
/**
|
559
|
+
* Removes the descriptor with |descriptorId| from the simulated central.
|
560
|
+
*/
|
561
|
+
invoke_removeDescriptor(params: Protocol.BluetoothEmulation.RemoveDescriptorRequest): Promise<Protocol.ProtocolResponseWithError>;
|
562
|
+
|
563
|
+
/**
|
564
|
+
* Simulates a GATT disconnection from the peripheral with |address|.
|
565
|
+
*/
|
566
|
+
invoke_simulateGATTDisconnection(params: Protocol.BluetoothEmulation.SimulateGATTDisconnectionRequest): Promise<Protocol.ProtocolResponseWithError>;
|
567
|
+
|
568
|
+
}
|
569
|
+
export interface BluetoothEmulationDispatcher {
|
570
|
+
/**
|
571
|
+
* Event for when a GATT operation of |type| to the peripheral with |address|
|
572
|
+
* happened.
|
573
|
+
*/
|
574
|
+
gattOperationReceived(params: Protocol.BluetoothEmulation.GattOperationReceivedEvent): void;
|
575
|
+
|
576
|
+
/**
|
577
|
+
* Event for when a characteristic operation of |type| to the characteristic
|
578
|
+
* respresented by |characteristicId| happened. |data| and |writeType| is
|
579
|
+
* expected to exist when |type| is write.
|
580
|
+
*/
|
581
|
+
characteristicOperationReceived(params: Protocol.BluetoothEmulation.CharacteristicOperationReceivedEvent): void;
|
582
|
+
|
583
|
+
/**
|
584
|
+
* Event for when a descriptor operation of |type| to the descriptor
|
585
|
+
* respresented by |descriptorId| happened. |data| is expected to exist when
|
586
|
+
* |type| is write.
|
587
|
+
*/
|
588
|
+
descriptorOperationReceived(params: Protocol.BluetoothEmulation.DescriptorOperationReceivedEvent): void;
|
589
|
+
|
590
|
+
}
|
591
|
+
|
520
592
|
export interface BrowserApi {
|
521
593
|
/**
|
522
|
-
* Set permission settings for given
|
594
|
+
* Set permission settings for given requesting and embedding origins.
|
523
595
|
*/
|
524
596
|
invoke_setPermission(params: Protocol.Browser.SetPermissionRequest): Promise<Protocol.ProtocolResponseWithError>;
|
525
597
|
|
@@ -594,6 +666,11 @@ declare namespace ProtocolProxyApi {
|
|
594
666
|
*/
|
595
667
|
invoke_setWindowBounds(params: Protocol.Browser.SetWindowBoundsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
596
668
|
|
669
|
+
/**
|
670
|
+
* Set size of the browser contents resizing browser window as necessary.
|
671
|
+
*/
|
672
|
+
invoke_setContentsSize(params: Protocol.Browser.SetContentsSizeRequest): Promise<Protocol.ProtocolResponseWithError>;
|
673
|
+
|
597
674
|
/**
|
598
675
|
* Set dock tile details, platform-specific.
|
599
676
|
*/
|
@@ -710,6 +787,11 @@ declare namespace ProtocolProxyApi {
|
|
710
787
|
*/
|
711
788
|
invoke_getMatchedStylesForNode(params: Protocol.CSS.GetMatchedStylesForNodeRequest): Promise<Protocol.CSS.GetMatchedStylesForNodeResponse>;
|
712
789
|
|
790
|
+
/**
|
791
|
+
* Returns the values of the default UA-defined environment variables used in env()
|
792
|
+
*/
|
793
|
+
invoke_getEnvironmentVariables(): Promise<Protocol.CSS.GetEnvironmentVariablesResponse>;
|
794
|
+
|
713
795
|
/**
|
714
796
|
* Returns all media queries parsed by the rendering engine.
|
715
797
|
*/
|
@@ -1025,6 +1107,7 @@ declare namespace ProtocolProxyApi {
|
|
1025
1107
|
* Returns the root DOM node (and optionally the subtree) to the caller.
|
1026
1108
|
* Deprecated, as it is not designed to work well with the rest of the DOM agent.
|
1027
1109
|
* Use DOMSnapshot.captureSnapshot instead.
|
1110
|
+
* @deprecated
|
1028
1111
|
*/
|
1029
1112
|
invoke_getFlattenedDocument(params: Protocol.DOM.GetFlattenedDocumentRequest): Promise<Protocol.DOM.GetFlattenedDocumentResponse>;
|
1030
1113
|
|
@@ -1223,9 +1306,9 @@ declare namespace ProtocolProxyApi {
|
|
1223
1306
|
/**
|
1224
1307
|
* Returns the query container of the given node based on container query
|
1225
1308
|
* conditions: containerName, physical and logical axes, and whether it queries
|
1226
|
-
* scroll-state. If no axes are provided and
|
1227
|
-
* style container is returned, which is the
|
1228
|
-
* element with a matching container-name.
|
1309
|
+
* scroll-state or anchored elements. If no axes are provided and
|
1310
|
+
* queriesScrollState is false, the style container is returned, which is the
|
1311
|
+
* direct parent or the closest element with a matching container-name.
|
1229
1312
|
*/
|
1230
1313
|
invoke_getContainerForNode(params: Protocol.DOM.GetContainerForNodeRequest): Promise<Protocol.DOM.GetContainerForNodeResponse>;
|
1231
1314
|
|
@@ -1241,6 +1324,12 @@ declare namespace ProtocolProxyApi {
|
|
1241
1324
|
*/
|
1242
1325
|
invoke_getAnchorElement(params: Protocol.DOM.GetAnchorElementRequest): Promise<Protocol.DOM.GetAnchorElementResponse>;
|
1243
1326
|
|
1327
|
+
/**
|
1328
|
+
* When enabling, this API force-opens the popover identified by nodeId
|
1329
|
+
* and keeps it open until disabled.
|
1330
|
+
*/
|
1331
|
+
invoke_forceShowPopover(params: Protocol.DOM.ForceShowPopoverRequest): Promise<Protocol.DOM.ForceShowPopoverResponse>;
|
1332
|
+
|
1244
1333
|
}
|
1245
1334
|
export interface DOMDispatcher {
|
1246
1335
|
/**
|
@@ -1344,6 +1433,7 @@ declare namespace ProtocolProxyApi {
|
|
1344
1433
|
|
1345
1434
|
/**
|
1346
1435
|
* Removes breakpoint on particular native event.
|
1436
|
+
* @deprecated
|
1347
1437
|
*/
|
1348
1438
|
invoke_removeInstrumentationBreakpoint(params: Protocol.DOMDebugger.RemoveInstrumentationBreakpointRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1349
1439
|
|
@@ -1369,6 +1459,7 @@ declare namespace ProtocolProxyApi {
|
|
1369
1459
|
|
1370
1460
|
/**
|
1371
1461
|
* Sets breakpoint on particular native event.
|
1462
|
+
* @deprecated
|
1372
1463
|
*/
|
1373
1464
|
invoke_setInstrumentationBreakpoint(params: Protocol.DOMDebugger.SetInstrumentationBreakpointRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1374
1465
|
|
@@ -1381,34 +1472,14 @@ declare namespace ProtocolProxyApi {
|
|
1381
1472
|
export interface DOMDebuggerDispatcher {
|
1382
1473
|
}
|
1383
1474
|
|
1384
|
-
export interface
|
1475
|
+
export interface DOMSnapshotApi {
|
1385
1476
|
/**
|
1386
|
-
*
|
1477
|
+
* Disables DOM snapshot agent for the given page.
|
1387
1478
|
*/
|
1388
|
-
|
1479
|
+
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
1389
1480
|
|
1390
1481
|
/**
|
1391
|
-
*
|
1392
|
-
*/
|
1393
|
-
invoke_removeInstrumentationBreakpoint(params: Protocol.EventBreakpoints.RemoveInstrumentationBreakpointRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1394
|
-
|
1395
|
-
/**
|
1396
|
-
* Removes all breakpoints
|
1397
|
-
*/
|
1398
|
-
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
1399
|
-
|
1400
|
-
}
|
1401
|
-
export interface EventBreakpointsDispatcher {
|
1402
|
-
}
|
1403
|
-
|
1404
|
-
export interface DOMSnapshotApi {
|
1405
|
-
/**
|
1406
|
-
* Disables DOM snapshot agent for the given page.
|
1407
|
-
*/
|
1408
|
-
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
1409
|
-
|
1410
|
-
/**
|
1411
|
-
* Enables DOM snapshot agent for the given page.
|
1482
|
+
* Enables DOM snapshot agent for the given page.
|
1412
1483
|
*/
|
1413
1484
|
invoke_enable(): Promise<Protocol.ProtocolResponseWithError>;
|
1414
1485
|
|
@@ -1417,6 +1488,7 @@ declare namespace ProtocolProxyApi {
|
|
1417
1488
|
* template contents, and imported documents) in a flattened array, as well as layout and
|
1418
1489
|
* white-listed computed style information for the nodes. Shadow DOM in the returned DOM tree is
|
1419
1490
|
* flattened.
|
1491
|
+
* @deprecated
|
1420
1492
|
*/
|
1421
1493
|
invoke_getSnapshot(params: Protocol.DOMSnapshot.GetSnapshotRequest): Promise<Protocol.DOMSnapshot.GetSnapshotResponse>;
|
1422
1494
|
|
@@ -1463,6 +1535,37 @@ declare namespace ProtocolProxyApi {
|
|
1463
1535
|
|
1464
1536
|
}
|
1465
1537
|
|
1538
|
+
export interface DeviceAccessApi {
|
1539
|
+
/**
|
1540
|
+
* Enable events in this domain.
|
1541
|
+
*/
|
1542
|
+
invoke_enable(): Promise<Protocol.ProtocolResponseWithError>;
|
1543
|
+
|
1544
|
+
/**
|
1545
|
+
* Disable events in this domain.
|
1546
|
+
*/
|
1547
|
+
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
1548
|
+
|
1549
|
+
/**
|
1550
|
+
* Select a device in response to a DeviceAccess.deviceRequestPrompted event.
|
1551
|
+
*/
|
1552
|
+
invoke_selectPrompt(params: Protocol.DeviceAccess.SelectPromptRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1553
|
+
|
1554
|
+
/**
|
1555
|
+
* Cancel a prompt in response to a DeviceAccess.deviceRequestPrompted event.
|
1556
|
+
*/
|
1557
|
+
invoke_cancelPrompt(params: Protocol.DeviceAccess.CancelPromptRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1558
|
+
|
1559
|
+
}
|
1560
|
+
export interface DeviceAccessDispatcher {
|
1561
|
+
/**
|
1562
|
+
* A device request opened a user prompt to select a device. Respond with the
|
1563
|
+
* selectPrompt or cancelPrompt command.
|
1564
|
+
*/
|
1565
|
+
deviceRequestPrompted(params: Protocol.DeviceAccess.DeviceRequestPromptedEvent): void;
|
1566
|
+
|
1567
|
+
}
|
1568
|
+
|
1466
1569
|
export interface DeviceOrientationApi {
|
1467
1570
|
/**
|
1468
1571
|
* Clears the overridden Device Orientation.
|
@@ -1481,6 +1584,7 @@ declare namespace ProtocolProxyApi {
|
|
1481
1584
|
export interface EmulationApi {
|
1482
1585
|
/**
|
1483
1586
|
* Tells whether emulation is supported.
|
1587
|
+
* @deprecated
|
1484
1588
|
*/
|
1485
1589
|
invoke_canEmulate(): Promise<Protocol.Emulation.CanEmulateResponse>;
|
1486
1590
|
|
@@ -1640,6 +1744,7 @@ declare namespace ProtocolProxyApi {
|
|
1640
1744
|
|
1641
1745
|
/**
|
1642
1746
|
* Overrides value returned by the javascript navigator object.
|
1747
|
+
* @deprecated
|
1643
1748
|
*/
|
1644
1749
|
invoke_setNavigatorOverrides(params: Protocol.Emulation.SetNavigatorOverridesRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1645
1750
|
|
@@ -1678,11 +1783,17 @@ declare namespace ProtocolProxyApi {
|
|
1678
1783
|
* Resizes the frame/viewport of the page. Note that this does not affect the frame's container
|
1679
1784
|
* (e.g. browser window). Can be used to produce screenshots of the specified size. Not supported
|
1680
1785
|
* on Android.
|
1786
|
+
* @deprecated
|
1681
1787
|
*/
|
1682
1788
|
invoke_setVisibleSize(params: Protocol.Emulation.SetVisibleSizeRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1683
1789
|
|
1684
1790
|
invoke_setDisabledImageTypes(params: Protocol.Emulation.SetDisabledImageTypesRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1685
1791
|
|
1792
|
+
/**
|
1793
|
+
* Override the value of navigator.connection.saveData
|
1794
|
+
*/
|
1795
|
+
invoke_setDataSaverOverride(params: Protocol.Emulation.SetDataSaverOverrideRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1796
|
+
|
1686
1797
|
invoke_setHardwareConcurrencyOverride(params: Protocol.Emulation.SetHardwareConcurrencyOverrideRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1687
1798
|
|
1688
1799
|
/**
|
@@ -1702,197 +1813,400 @@ declare namespace ProtocolProxyApi {
|
|
1702
1813
|
*/
|
1703
1814
|
invoke_setSmallViewportHeightDifferenceOverride(params: Protocol.Emulation.SetSmallViewportHeightDifferenceOverrideRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1704
1815
|
|
1705
|
-
}
|
1706
|
-
export interface EmulationDispatcher {
|
1707
1816
|
/**
|
1708
|
-
*
|
1817
|
+
* Returns device's screen configuration.
|
1709
1818
|
*/
|
1710
|
-
|
1711
|
-
|
1712
|
-
}
|
1819
|
+
invoke_getScreenInfos(): Promise<Protocol.Emulation.GetScreenInfosResponse>;
|
1713
1820
|
|
1714
|
-
export interface HeadlessExperimentalApi {
|
1715
1821
|
/**
|
1716
|
-
*
|
1717
|
-
* screenshot from the resulting frame. Requires that the target was created with enabled
|
1718
|
-
* BeginFrameControl. Designed for use with --run-all-compositor-stages-before-draw, see also
|
1719
|
-
* https://goo.gle/chrome-headless-rendering for more background.
|
1822
|
+
* Add a new screen to the device. Only supported in headless mode.
|
1720
1823
|
*/
|
1721
|
-
|
1824
|
+
invoke_addScreen(params: Protocol.Emulation.AddScreenRequest): Promise<Protocol.Emulation.AddScreenResponse>;
|
1722
1825
|
|
1723
1826
|
/**
|
1724
|
-
*
|
1827
|
+
* Remove screen from the device. Only supported in headless mode.
|
1725
1828
|
*/
|
1726
|
-
|
1829
|
+
invoke_removeScreen(params: Protocol.Emulation.RemoveScreenRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1727
1830
|
|
1831
|
+
}
|
1832
|
+
export interface EmulationDispatcher {
|
1728
1833
|
/**
|
1729
|
-
*
|
1834
|
+
* Notification sent after the virtual time budget for the current VirtualTimePolicy has run out.
|
1730
1835
|
*/
|
1731
|
-
|
1836
|
+
virtualTimeBudgetExpired(): void;
|
1732
1837
|
|
1733
1838
|
}
|
1734
|
-
export interface HeadlessExperimentalDispatcher {
|
1735
|
-
}
|
1736
1839
|
|
1737
|
-
|
1738
|
-
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
|
1739
|
-
export interface IOApi {
|
1840
|
+
export interface EventBreakpointsApi {
|
1740
1841
|
/**
|
1741
|
-
*
|
1842
|
+
* Sets breakpoint on particular native event.
|
1742
1843
|
*/
|
1743
|
-
|
1844
|
+
invoke_setInstrumentationBreakpoint(params: Protocol.EventBreakpoints.SetInstrumentationBreakpointRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1744
1845
|
|
1745
1846
|
/**
|
1746
|
-
*
|
1847
|
+
* Removes breakpoint on particular native event.
|
1747
1848
|
*/
|
1748
|
-
|
1849
|
+
invoke_removeInstrumentationBreakpoint(params: Protocol.EventBreakpoints.RemoveInstrumentationBreakpointRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1749
1850
|
|
1750
1851
|
/**
|
1751
|
-
*
|
1852
|
+
* Removes all breakpoints
|
1752
1853
|
*/
|
1753
|
-
|
1754
|
-
|
1755
|
-
}
|
1756
|
-
export interface IODispatcher {
|
1757
|
-
}
|
1758
|
-
|
1759
|
-
export interface FileSystemApi {
|
1760
|
-
invoke_getDirectory(params: Protocol.FileSystem.GetDirectoryRequest): Promise<Protocol.FileSystem.GetDirectoryResponse>;
|
1854
|
+
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
1761
1855
|
|
1762
1856
|
}
|
1763
|
-
export interface
|
1857
|
+
export interface EventBreakpointsDispatcher {
|
1764
1858
|
}
|
1765
1859
|
|
1766
|
-
|
1767
|
-
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
|
1768
|
-
export interface IndexedDBApi {
|
1860
|
+
export interface ExtensionsApi {
|
1769
1861
|
/**
|
1770
|
-
*
|
1862
|
+
* Installs an unpacked extension from the filesystem similar to
|
1863
|
+
* --load-extension CLI flags. Returns extension ID once the extension
|
1864
|
+
* has been installed. Available if the client is connected using the
|
1865
|
+
* --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging
|
1866
|
+
* flag is set.
|
1771
1867
|
*/
|
1772
|
-
|
1868
|
+
invoke_loadUnpacked(params: Protocol.Extensions.LoadUnpackedRequest): Promise<Protocol.Extensions.LoadUnpackedResponse>;
|
1773
1869
|
|
1774
1870
|
/**
|
1775
|
-
*
|
1871
|
+
* Uninstalls an unpacked extension (others not supported) from the profile.
|
1872
|
+
* Available if the client is connected using the --remote-debugging-pipe flag
|
1873
|
+
* and the --enable-unsafe-extension-debugging.
|
1776
1874
|
*/
|
1777
|
-
|
1875
|
+
invoke_uninstall(params: Protocol.Extensions.UninstallRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1778
1876
|
|
1779
1877
|
/**
|
1780
|
-
*
|
1878
|
+
* Gets data from extension storage in the given `storageArea`. If `keys` is
|
1879
|
+
* specified, these are used to filter the result.
|
1781
1880
|
*/
|
1782
|
-
|
1881
|
+
invoke_getStorageItems(params: Protocol.Extensions.GetStorageItemsRequest): Promise<Protocol.Extensions.GetStorageItemsResponse>;
|
1783
1882
|
|
1784
1883
|
/**
|
1785
|
-
*
|
1884
|
+
* Removes `keys` from extension storage in the given `storageArea`.
|
1786
1885
|
*/
|
1787
|
-
|
1886
|
+
invoke_removeStorageItems(params: Protocol.Extensions.RemoveStorageItemsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1788
1887
|
|
1789
1888
|
/**
|
1790
|
-
*
|
1889
|
+
* Clears extension storage in the given `storageArea`.
|
1791
1890
|
*/
|
1792
|
-
|
1891
|
+
invoke_clearStorageItems(params: Protocol.Extensions.ClearStorageItemsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1793
1892
|
|
1794
1893
|
/**
|
1795
|
-
*
|
1894
|
+
* Sets `values` in extension storage in the given `storageArea`. The provided `values`
|
1895
|
+
* will be merged with existing values in the storage area.
|
1796
1896
|
*/
|
1797
|
-
|
1897
|
+
invoke_setStorageItems(params: Protocol.Extensions.SetStorageItemsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1798
1898
|
|
1799
|
-
|
1800
|
-
|
1801
|
-
|
1802
|
-
invoke_getMetadata(params: Protocol.IndexedDB.GetMetadataRequest): Promise<Protocol.IndexedDB.GetMetadataResponse>;
|
1899
|
+
}
|
1900
|
+
export interface ExtensionsDispatcher {
|
1901
|
+
}
|
1803
1902
|
|
1804
|
-
|
1805
|
-
|
1806
|
-
*/
|
1807
|
-
invoke_requestDatabase(params: Protocol.IndexedDB.RequestDatabaseRequest): Promise<Protocol.IndexedDB.RequestDatabaseResponse>;
|
1903
|
+
export interface FedCmApi {
|
1904
|
+
invoke_enable(params: Protocol.FedCm.EnableRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1808
1905
|
|
1809
|
-
|
1810
|
-
* Requests database names for given security origin.
|
1811
|
-
*/
|
1812
|
-
invoke_requestDatabaseNames(params: Protocol.IndexedDB.RequestDatabaseNamesRequest): Promise<Protocol.IndexedDB.RequestDatabaseNamesResponse>;
|
1906
|
+
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
1813
1907
|
|
1814
|
-
|
1815
|
-
export interface IndexedDBDispatcher {
|
1816
|
-
}
|
1908
|
+
invoke_selectAccount(params: Protocol.FedCm.SelectAccountRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1817
1909
|
|
1818
|
-
|
1819
|
-
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
|
1820
|
-
export interface InputApi {
|
1821
|
-
/**
|
1822
|
-
* Dispatches a drag event into the page.
|
1823
|
-
*/
|
1824
|
-
invoke_dispatchDragEvent(params: Protocol.Input.DispatchDragEventRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1910
|
+
invoke_clickDialogButton(params: Protocol.FedCm.ClickDialogButtonRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1825
1911
|
|
1826
|
-
|
1827
|
-
|
1828
|
-
|
1829
|
-
invoke_dispatchKeyEvent(params: Protocol.Input.DispatchKeyEventRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1912
|
+
invoke_openUrl(params: Protocol.FedCm.OpenUrlRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1913
|
+
|
1914
|
+
invoke_dismissDialog(params: Protocol.FedCm.DismissDialogRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1830
1915
|
|
1831
1916
|
/**
|
1832
|
-
*
|
1833
|
-
*
|
1917
|
+
* Resets the cooldown time, if any, to allow the next FedCM call to show
|
1918
|
+
* a dialog even if one was recently dismissed by the user.
|
1834
1919
|
*/
|
1835
|
-
|
1920
|
+
invoke_resetCooldown(): Promise<Protocol.ProtocolResponseWithError>;
|
1921
|
+
|
1922
|
+
}
|
1923
|
+
export interface FedCmDispatcher {
|
1924
|
+
dialogShown(params: Protocol.FedCm.DialogShownEvent): void;
|
1836
1925
|
|
1837
1926
|
/**
|
1838
|
-
*
|
1839
|
-
*
|
1840
|
-
* Use imeSetComposition with empty string as text to cancel composition.
|
1927
|
+
* Triggered when a dialog is closed, either by user action, JS abort,
|
1928
|
+
* or a command below.
|
1841
1929
|
*/
|
1842
|
-
|
1930
|
+
dialogClosed(params: Protocol.FedCm.DialogClosedEvent): void;
|
1931
|
+
|
1932
|
+
}
|
1843
1933
|
|
1934
|
+
export interface FetchApi {
|
1844
1935
|
/**
|
1845
|
-
*
|
1936
|
+
* Disables the fetch domain.
|
1846
1937
|
*/
|
1847
|
-
|
1938
|
+
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
1848
1939
|
|
1849
1940
|
/**
|
1850
|
-
*
|
1941
|
+
* Enables issuing of requestPaused events. A request will be paused until client
|
1942
|
+
* calls one of failRequest, fulfillRequest or continueRequest/continueWithAuth.
|
1851
1943
|
*/
|
1852
|
-
|
1944
|
+
invoke_enable(params: Protocol.Fetch.EnableRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1853
1945
|
|
1854
1946
|
/**
|
1855
|
-
*
|
1947
|
+
* Causes the request to fail with specified reason.
|
1856
1948
|
*/
|
1857
|
-
|
1949
|
+
invoke_failRequest(params: Protocol.Fetch.FailRequestRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1858
1950
|
|
1859
1951
|
/**
|
1860
|
-
*
|
1952
|
+
* Provides response to the request.
|
1861
1953
|
*/
|
1862
|
-
|
1954
|
+
invoke_fulfillRequest(params: Protocol.Fetch.FulfillRequestRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1863
1955
|
|
1864
1956
|
/**
|
1865
|
-
*
|
1957
|
+
* Continues the request, optionally modifying some of its parameters.
|
1866
1958
|
*/
|
1867
|
-
|
1959
|
+
invoke_continueRequest(params: Protocol.Fetch.ContinueRequestRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1868
1960
|
|
1869
1961
|
/**
|
1870
|
-
*
|
1871
|
-
* Drag and drop behavior can be directly controlled via `Input.dispatchDragEvent`.
|
1962
|
+
* Continues a request supplying authChallengeResponse following authRequired event.
|
1872
1963
|
*/
|
1873
|
-
|
1964
|
+
invoke_continueWithAuth(params: Protocol.Fetch.ContinueWithAuthRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1874
1965
|
|
1875
1966
|
/**
|
1876
|
-
*
|
1967
|
+
* Continues loading of the paused response, optionally modifying the
|
1968
|
+
* response headers. If either responseCode or headers are modified, all of them
|
1969
|
+
* must be present.
|
1877
1970
|
*/
|
1878
|
-
|
1971
|
+
invoke_continueResponse(params: Protocol.Fetch.ContinueResponseRequest): Promise<Protocol.ProtocolResponseWithError>;
|
1879
1972
|
|
1880
1973
|
/**
|
1881
|
-
*
|
1974
|
+
* Causes the body of the response to be received from the server and
|
1975
|
+
* returned as a single string. May only be issued for a request that
|
1976
|
+
* is paused in the Response stage and is mutually exclusive with
|
1977
|
+
* takeResponseBodyForInterceptionAsStream. Calling other methods that
|
1978
|
+
* affect the request or disabling fetch domain before body is received
|
1979
|
+
* results in an undefined behavior.
|
1980
|
+
* Note that the response body is not available for redirects. Requests
|
1981
|
+
* paused in the _redirect received_ state may be differentiated by
|
1982
|
+
* `responseCode` and presence of `location` response header, see
|
1983
|
+
* comments to `requestPaused` for details.
|
1882
1984
|
*/
|
1883
|
-
|
1985
|
+
invoke_getResponseBody(params: Protocol.Fetch.GetResponseBodyRequest): Promise<Protocol.Fetch.GetResponseBodyResponse>;
|
1884
1986
|
|
1885
1987
|
/**
|
1886
|
-
*
|
1988
|
+
* Returns a handle to the stream representing the response body.
|
1989
|
+
* The request must be paused in the HeadersReceived stage.
|
1990
|
+
* Note that after this command the request can't be continued
|
1991
|
+
* as is -- client either needs to cancel it or to provide the
|
1992
|
+
* response body.
|
1993
|
+
* The stream only supports sequential read, IO.read will fail if the position
|
1994
|
+
* is specified.
|
1995
|
+
* This method is mutually exclusive with getResponseBody.
|
1996
|
+
* Calling other methods that affect the request or disabling fetch
|
1997
|
+
* domain before body is received results in an undefined behavior.
|
1887
1998
|
*/
|
1888
|
-
|
1999
|
+
invoke_takeResponseBodyAsStream(params: Protocol.Fetch.TakeResponseBodyAsStreamRequest): Promise<Protocol.Fetch.TakeResponseBodyAsStreamResponse>;
|
1889
2000
|
|
1890
2001
|
}
|
1891
|
-
export interface
|
2002
|
+
export interface FetchDispatcher {
|
1892
2003
|
/**
|
1893
|
-
*
|
1894
|
-
*
|
1895
|
-
|
2004
|
+
* Issued when the domain is enabled and the request URL matches the
|
2005
|
+
* specified filter. The request is paused until the client responds
|
2006
|
+
* with one of continueRequest, failRequest or fulfillRequest.
|
2007
|
+
* The stage of the request can be determined by presence of responseErrorReason
|
2008
|
+
* and responseStatusCode -- the request is at the response stage if either
|
2009
|
+
* of these fields is present and in the request stage otherwise.
|
2010
|
+
* Redirect responses and subsequent requests are reported similarly to regular
|
2011
|
+
* responses and requests. Redirect responses may be distinguished by the value
|
2012
|
+
* of `responseStatusCode` (which is one of 301, 302, 303, 307, 308) along with
|
2013
|
+
* presence of the `location` header. Requests resulting from a redirect will
|
2014
|
+
* have `redirectedRequestId` field set.
|
2015
|
+
*/
|
2016
|
+
requestPaused(params: Protocol.Fetch.RequestPausedEvent): void;
|
2017
|
+
|
2018
|
+
/**
|
2019
|
+
* Issued when the domain is enabled with handleAuthRequests set to true.
|
2020
|
+
* The request is paused until client responds with continueWithAuth.
|
2021
|
+
*/
|
2022
|
+
authRequired(params: Protocol.Fetch.AuthRequiredEvent): void;
|
2023
|
+
|
2024
|
+
}
|
2025
|
+
|
2026
|
+
export interface FileSystemApi {
|
2027
|
+
invoke_getDirectory(params: Protocol.FileSystem.GetDirectoryRequest): Promise<Protocol.FileSystem.GetDirectoryResponse>;
|
2028
|
+
|
2029
|
+
}
|
2030
|
+
export interface FileSystemDispatcher {
|
2031
|
+
}
|
2032
|
+
|
2033
|
+
export interface HeadlessExperimentalApi {
|
2034
|
+
/**
|
2035
|
+
* Sends a BeginFrame to the target and returns when the frame was completed. Optionally captures a
|
2036
|
+
* screenshot from the resulting frame. Requires that the target was created with enabled
|
2037
|
+
* BeginFrameControl. Designed for use with --run-all-compositor-stages-before-draw, see also
|
2038
|
+
* https://goo.gle/chrome-headless-rendering for more background.
|
2039
|
+
*/
|
2040
|
+
invoke_beginFrame(params: Protocol.HeadlessExperimental.BeginFrameRequest): Promise<Protocol.HeadlessExperimental.BeginFrameResponse>;
|
2041
|
+
|
2042
|
+
/**
|
2043
|
+
* Disables headless events for the target.
|
2044
|
+
* @deprecated
|
2045
|
+
*/
|
2046
|
+
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
2047
|
+
|
2048
|
+
/**
|
2049
|
+
* Enables headless events for the target.
|
2050
|
+
* @deprecated
|
2051
|
+
*/
|
2052
|
+
invoke_enable(): Promise<Protocol.ProtocolResponseWithError>;
|
2053
|
+
|
2054
|
+
}
|
2055
|
+
export interface HeadlessExperimentalDispatcher {
|
2056
|
+
}
|
2057
|
+
|
2058
|
+
// eslint thinks this is us prefixing our interfaces but it's not!
|
2059
|
+
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
|
2060
|
+
export interface IOApi {
|
2061
|
+
/**
|
2062
|
+
* Close the stream, discard any temporary backing storage.
|
2063
|
+
*/
|
2064
|
+
invoke_close(params: Protocol.IO.CloseRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2065
|
+
|
2066
|
+
/**
|
2067
|
+
* Read a chunk of the stream
|
2068
|
+
*/
|
2069
|
+
invoke_read(params: Protocol.IO.ReadRequest): Promise<Protocol.IO.ReadResponse>;
|
2070
|
+
|
2071
|
+
/**
|
2072
|
+
* Return UUID of Blob object specified by a remote object id.
|
2073
|
+
*/
|
2074
|
+
invoke_resolveBlob(params: Protocol.IO.ResolveBlobRequest): Promise<Protocol.IO.ResolveBlobResponse>;
|
2075
|
+
|
2076
|
+
}
|
2077
|
+
export interface IODispatcher {
|
2078
|
+
}
|
2079
|
+
|
2080
|
+
// eslint thinks this is us prefixing our interfaces but it's not!
|
2081
|
+
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
|
2082
|
+
export interface IndexedDBApi {
|
2083
|
+
/**
|
2084
|
+
* Clears all entries from an object store.
|
2085
|
+
*/
|
2086
|
+
invoke_clearObjectStore(params: Protocol.IndexedDB.ClearObjectStoreRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2087
|
+
|
2088
|
+
/**
|
2089
|
+
* Deletes a database.
|
2090
|
+
*/
|
2091
|
+
invoke_deleteDatabase(params: Protocol.IndexedDB.DeleteDatabaseRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2092
|
+
|
2093
|
+
/**
|
2094
|
+
* Delete a range of entries from an object store
|
2095
|
+
*/
|
2096
|
+
invoke_deleteObjectStoreEntries(params: Protocol.IndexedDB.DeleteObjectStoreEntriesRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2097
|
+
|
2098
|
+
/**
|
2099
|
+
* Disables events from backend.
|
2100
|
+
*/
|
2101
|
+
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
2102
|
+
|
2103
|
+
/**
|
2104
|
+
* Enables events from backend.
|
2105
|
+
*/
|
2106
|
+
invoke_enable(): Promise<Protocol.ProtocolResponseWithError>;
|
2107
|
+
|
2108
|
+
/**
|
2109
|
+
* Requests data from object store or index.
|
2110
|
+
*/
|
2111
|
+
invoke_requestData(params: Protocol.IndexedDB.RequestDataRequest): Promise<Protocol.IndexedDB.RequestDataResponse>;
|
2112
|
+
|
2113
|
+
/**
|
2114
|
+
* Gets metadata of an object store.
|
2115
|
+
*/
|
2116
|
+
invoke_getMetadata(params: Protocol.IndexedDB.GetMetadataRequest): Promise<Protocol.IndexedDB.GetMetadataResponse>;
|
2117
|
+
|
2118
|
+
/**
|
2119
|
+
* Requests database with given name in given frame.
|
2120
|
+
*/
|
2121
|
+
invoke_requestDatabase(params: Protocol.IndexedDB.RequestDatabaseRequest): Promise<Protocol.IndexedDB.RequestDatabaseResponse>;
|
2122
|
+
|
2123
|
+
/**
|
2124
|
+
* Requests database names for given security origin.
|
2125
|
+
*/
|
2126
|
+
invoke_requestDatabaseNames(params: Protocol.IndexedDB.RequestDatabaseNamesRequest): Promise<Protocol.IndexedDB.RequestDatabaseNamesResponse>;
|
2127
|
+
|
2128
|
+
}
|
2129
|
+
export interface IndexedDBDispatcher {
|
2130
|
+
}
|
2131
|
+
|
2132
|
+
// eslint thinks this is us prefixing our interfaces but it's not!
|
2133
|
+
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
|
2134
|
+
export interface InputApi {
|
2135
|
+
/**
|
2136
|
+
* Dispatches a drag event into the page.
|
2137
|
+
*/
|
2138
|
+
invoke_dispatchDragEvent(params: Protocol.Input.DispatchDragEventRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2139
|
+
|
2140
|
+
/**
|
2141
|
+
* Dispatches a key event to the page.
|
2142
|
+
*/
|
2143
|
+
invoke_dispatchKeyEvent(params: Protocol.Input.DispatchKeyEventRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2144
|
+
|
2145
|
+
/**
|
2146
|
+
* This method emulates inserting text that doesn't come from a key press,
|
2147
|
+
* for example an emoji keyboard or an IME.
|
2148
|
+
*/
|
2149
|
+
invoke_insertText(params: Protocol.Input.InsertTextRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2150
|
+
|
2151
|
+
/**
|
2152
|
+
* This method sets the current candidate text for IME.
|
2153
|
+
* Use imeCommitComposition to commit the final text.
|
2154
|
+
* Use imeSetComposition with empty string as text to cancel composition.
|
2155
|
+
*/
|
2156
|
+
invoke_imeSetComposition(params: Protocol.Input.ImeSetCompositionRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2157
|
+
|
2158
|
+
/**
|
2159
|
+
* Dispatches a mouse event to the page.
|
2160
|
+
*/
|
2161
|
+
invoke_dispatchMouseEvent(params: Protocol.Input.DispatchMouseEventRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2162
|
+
|
2163
|
+
/**
|
2164
|
+
* Dispatches a touch event to the page.
|
2165
|
+
*/
|
2166
|
+
invoke_dispatchTouchEvent(params: Protocol.Input.DispatchTouchEventRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2167
|
+
|
2168
|
+
/**
|
2169
|
+
* Cancels any active dragging in the page.
|
2170
|
+
*/
|
2171
|
+
invoke_cancelDragging(): Promise<Protocol.ProtocolResponseWithError>;
|
2172
|
+
|
2173
|
+
/**
|
2174
|
+
* Emulates touch event from the mouse event parameters.
|
2175
|
+
*/
|
2176
|
+
invoke_emulateTouchFromMouseEvent(params: Protocol.Input.EmulateTouchFromMouseEventRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2177
|
+
|
2178
|
+
/**
|
2179
|
+
* Ignores input events (useful while auditing page).
|
2180
|
+
*/
|
2181
|
+
invoke_setIgnoreInputEvents(params: Protocol.Input.SetIgnoreInputEventsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2182
|
+
|
2183
|
+
/**
|
2184
|
+
* Prevents default drag and drop behavior and instead emits `Input.dragIntercepted` events.
|
2185
|
+
* Drag and drop behavior can be directly controlled via `Input.dispatchDragEvent`.
|
2186
|
+
*/
|
2187
|
+
invoke_setInterceptDrags(params: Protocol.Input.SetInterceptDragsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2188
|
+
|
2189
|
+
/**
|
2190
|
+
* Synthesizes a pinch gesture over a time period by issuing appropriate touch events.
|
2191
|
+
*/
|
2192
|
+
invoke_synthesizePinchGesture(params: Protocol.Input.SynthesizePinchGestureRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2193
|
+
|
2194
|
+
/**
|
2195
|
+
* Synthesizes a scroll gesture over a time period by issuing appropriate touch events.
|
2196
|
+
*/
|
2197
|
+
invoke_synthesizeScrollGesture(params: Protocol.Input.SynthesizeScrollGestureRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2198
|
+
|
2199
|
+
/**
|
2200
|
+
* Synthesizes a tap gesture over a time period by issuing appropriate touch events.
|
2201
|
+
*/
|
2202
|
+
invoke_synthesizeTapGesture(params: Protocol.Input.SynthesizeTapGestureRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2203
|
+
|
2204
|
+
}
|
2205
|
+
export interface InputDispatcher {
|
2206
|
+
/**
|
2207
|
+
* Emitted only when `Input.setInterceptDrags` is enabled. Use this data with `Input.dispatchDragEvent` to
|
2208
|
+
* restore normal drag and drop behavior.
|
2209
|
+
*/
|
1896
2210
|
dragIntercepted(params: Protocol.Input.DragInterceptedEvent): void;
|
1897
2211
|
|
1898
2212
|
}
|
@@ -2016,6 +2330,50 @@ declare namespace ProtocolProxyApi {
|
|
2016
2330
|
|
2017
2331
|
}
|
2018
2332
|
|
2333
|
+
export interface MediaApi {
|
2334
|
+
/**
|
2335
|
+
* Enables the Media domain
|
2336
|
+
*/
|
2337
|
+
invoke_enable(): Promise<Protocol.ProtocolResponseWithError>;
|
2338
|
+
|
2339
|
+
/**
|
2340
|
+
* Disables the Media domain.
|
2341
|
+
*/
|
2342
|
+
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
2343
|
+
|
2344
|
+
}
|
2345
|
+
export interface MediaDispatcher {
|
2346
|
+
/**
|
2347
|
+
* This can be called multiple times, and can be used to set / override /
|
2348
|
+
* remove player properties. A null propValue indicates removal.
|
2349
|
+
*/
|
2350
|
+
playerPropertiesChanged(params: Protocol.Media.PlayerPropertiesChangedEvent): void;
|
2351
|
+
|
2352
|
+
/**
|
2353
|
+
* Send events as a list, allowing them to be batched on the browser for less
|
2354
|
+
* congestion. If batched, events must ALWAYS be in chronological order.
|
2355
|
+
*/
|
2356
|
+
playerEventsAdded(params: Protocol.Media.PlayerEventsAddedEvent): void;
|
2357
|
+
|
2358
|
+
/**
|
2359
|
+
* Send a list of any messages that need to be delivered.
|
2360
|
+
*/
|
2361
|
+
playerMessagesLogged(params: Protocol.Media.PlayerMessagesLoggedEvent): void;
|
2362
|
+
|
2363
|
+
/**
|
2364
|
+
* Send a list of any errors that need to be delivered.
|
2365
|
+
*/
|
2366
|
+
playerErrorsRaised(params: Protocol.Media.PlayerErrorsRaisedEvent): void;
|
2367
|
+
|
2368
|
+
/**
|
2369
|
+
* Called whenever a player is created, or when a new agent joins and receives
|
2370
|
+
* a list of active players. If an agent is restored, it will receive one
|
2371
|
+
* event for each active player.
|
2372
|
+
*/
|
2373
|
+
playerCreated(params: Protocol.Media.PlayerCreatedEvent): void;
|
2374
|
+
|
2375
|
+
}
|
2376
|
+
|
2019
2377
|
export interface MemoryApi {
|
2020
2378
|
/**
|
2021
2379
|
* Retruns current DOM object counters.
|
@@ -2081,6 +2439,17 @@ declare namespace ProtocolProxyApi {
|
|
2081
2439
|
}
|
2082
2440
|
|
2083
2441
|
export interface NetworkApi {
|
2442
|
+
/**
|
2443
|
+
* Returns enum representing if IP Proxy of requests is available
|
2444
|
+
* or reason it is not active.
|
2445
|
+
*/
|
2446
|
+
invoke_getIPProtectionProxyStatus(): Promise<Protocol.Network.GetIPProtectionProxyStatusResponse>;
|
2447
|
+
|
2448
|
+
/**
|
2449
|
+
* Sets bypass IP Protection Proxy boolean.
|
2450
|
+
*/
|
2451
|
+
invoke_setIPProtectionProxyBypassEnabled(params: Protocol.Network.SetIPProtectionProxyBypassEnabledRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2452
|
+
|
2084
2453
|
/**
|
2085
2454
|
* Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted.
|
2086
2455
|
*/
|
@@ -2093,16 +2462,19 @@ declare namespace ProtocolProxyApi {
|
|
2093
2462
|
|
2094
2463
|
/**
|
2095
2464
|
* Tells whether clearing browser cache is supported.
|
2465
|
+
* @deprecated
|
2096
2466
|
*/
|
2097
2467
|
invoke_canClearBrowserCache(): Promise<Protocol.Network.CanClearBrowserCacheResponse>;
|
2098
2468
|
|
2099
2469
|
/**
|
2100
2470
|
* Tells whether clearing browser cookies is supported.
|
2471
|
+
* @deprecated
|
2101
2472
|
*/
|
2102
2473
|
invoke_canClearBrowserCookies(): Promise<Protocol.Network.CanClearBrowserCookiesResponse>;
|
2103
2474
|
|
2104
2475
|
/**
|
2105
2476
|
* Tells whether emulation of network conditions is supported.
|
2477
|
+
* @deprecated
|
2106
2478
|
*/
|
2107
2479
|
invoke_canEmulateNetworkConditions(): Promise<Protocol.Network.CanEmulateNetworkConditionsResponse>;
|
2108
2480
|
|
@@ -2122,6 +2494,7 @@ declare namespace ProtocolProxyApi {
|
|
2122
2494
|
* fetch occurs as a result which encounters a redirect an additional Network.requestIntercepted
|
2123
2495
|
* event will be sent with the same InterceptionId.
|
2124
2496
|
* Deprecated, use Fetch.continueRequest, Fetch.fulfillRequest and Fetch.failRequest instead.
|
2497
|
+
* @deprecated
|
2125
2498
|
*/
|
2126
2499
|
invoke_continueInterceptedRequest(params: Protocol.Network.ContinueInterceptedRequestRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2127
2500
|
|
@@ -2149,6 +2522,7 @@ declare namespace ProtocolProxyApi {
|
|
2149
2522
|
* Returns all browser cookies. Depending on the backend support, will return detailed cookie
|
2150
2523
|
* information in the `cookies` field.
|
2151
2524
|
* Deprecated. Use Storage.getCookies instead.
|
2525
|
+
* @deprecated
|
2152
2526
|
*/
|
2153
2527
|
invoke_getAllCookies(): Promise<Protocol.Network.GetAllCookiesResponse>;
|
2154
2528
|
|
@@ -2236,6 +2610,7 @@ declare namespace ProtocolProxyApi {
|
|
2236
2610
|
/**
|
2237
2611
|
* Sets the requests to intercept that match the provided patterns and optionally resource types.
|
2238
2612
|
* Deprecated, please use Fetch.enable instead.
|
2613
|
+
* @deprecated
|
2239
2614
|
*/
|
2240
2615
|
invoke_setRequestInterception(params: Protocol.Network.SetRequestInterceptionRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2241
2616
|
|
@@ -2298,6 +2673,7 @@ declare namespace ProtocolProxyApi {
|
|
2298
2673
|
* Details of an intercepted HTTP request, which must be either allowed, blocked, modified or
|
2299
2674
|
* mocked.
|
2300
2675
|
* Deprecated, use Fetch.requestPaused instead.
|
2676
|
+
* @deprecated
|
2301
2677
|
*/
|
2302
2678
|
requestIntercepted(params: Protocol.Network.RequestInterceptedEvent): void;
|
2303
2679
|
|
@@ -2541,6 +2917,7 @@ declare namespace ProtocolProxyApi {
|
|
2541
2917
|
* Deprecated: Doesn't work reliably and cannot be fixed due to process
|
2542
2918
|
* separation (the owner node might be in a different process). Determine
|
2543
2919
|
* the owner node in the client and use highlightNode.
|
2920
|
+
* @deprecated
|
2544
2921
|
*/
|
2545
2922
|
invoke_highlightFrame(params: Protocol.Overlay.HighlightFrameRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2546
2923
|
|
@@ -2557,6 +2934,9 @@ declare namespace ProtocolProxyApi {
|
|
2557
2934
|
|
2558
2935
|
/**
|
2559
2936
|
* Highlights given rectangle. Coordinates are absolute with respect to the main frame viewport.
|
2937
|
+
* Issue: the method does not handle device pixel ratio (DPR) correctly.
|
2938
|
+
* The coordinates currently have to be adjusted by the client
|
2939
|
+
* if DPR is not 1 (see crbug.com/437807128).
|
2560
2940
|
*/
|
2561
2941
|
invoke_highlightRect(params: Protocol.Overlay.HighlightRectRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2562
2942
|
|
@@ -2617,11 +2997,13 @@ declare namespace ProtocolProxyApi {
|
|
2617
2997
|
|
2618
2998
|
/**
|
2619
2999
|
* Deprecated, no longer has any effect.
|
3000
|
+
* @deprecated
|
2620
3001
|
*/
|
2621
3002
|
invoke_setShowHitTestBorders(params: Protocol.Overlay.SetShowHitTestBordersRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2622
3003
|
|
2623
3004
|
/**
|
2624
3005
|
* Deprecated, no longer has any effect.
|
3006
|
+
* @deprecated
|
2625
3007
|
*/
|
2626
3008
|
invoke_setShowWebVitals(params: Protocol.Overlay.SetShowWebVitalsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2627
3009
|
|
@@ -2670,11 +3052,100 @@ declare namespace ProtocolProxyApi {
|
|
2670
3052
|
|
2671
3053
|
}
|
2672
3054
|
|
2673
|
-
export interface
|
3055
|
+
export interface PWAApi {
|
2674
3056
|
/**
|
2675
|
-
*
|
3057
|
+
* Returns the following OS state for the given manifest id.
|
2676
3058
|
*/
|
2677
|
-
|
3059
|
+
invoke_getOsAppState(params: Protocol.PWA.GetOsAppStateRequest): Promise<Protocol.PWA.GetOsAppStateResponse>;
|
3060
|
+
|
3061
|
+
/**
|
3062
|
+
* Installs the given manifest identity, optionally using the given installUrlOrBundleUrl
|
3063
|
+
*
|
3064
|
+
* IWA-specific install description:
|
3065
|
+
* manifestId corresponds to isolated-app:// + web_package::SignedWebBundleId
|
3066
|
+
*
|
3067
|
+
* File installation mode:
|
3068
|
+
* The installUrlOrBundleUrl can be either file:// or http(s):// pointing
|
3069
|
+
* to a signed web bundle (.swbn). In this case SignedWebBundleId must correspond to
|
3070
|
+
* The .swbn file's signing key.
|
3071
|
+
*
|
3072
|
+
* Dev proxy installation mode:
|
3073
|
+
* installUrlOrBundleUrl must be http(s):// that serves dev mode IWA.
|
3074
|
+
* web_package::SignedWebBundleId must be of type dev proxy.
|
3075
|
+
*
|
3076
|
+
* The advantage of dev proxy mode is that all changes to IWA
|
3077
|
+
* automatically will be reflected in the running app without
|
3078
|
+
* reinstallation.
|
3079
|
+
*
|
3080
|
+
* To generate bundle id for proxy mode:
|
3081
|
+
* 1. Generate 32 random bytes.
|
3082
|
+
* 2. Add a specific suffix 0x00 at the end.
|
3083
|
+
* 3. Encode the entire sequence using Base32 without padding.
|
3084
|
+
*
|
3085
|
+
* If Chrome is not in IWA dev
|
3086
|
+
* mode, the installation will fail, regardless of the state of the allowlist.
|
3087
|
+
*/
|
3088
|
+
invoke_install(params: Protocol.PWA.InstallRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3089
|
+
|
3090
|
+
/**
|
3091
|
+
* Uninstalls the given manifest_id and closes any opened app windows.
|
3092
|
+
*/
|
3093
|
+
invoke_uninstall(params: Protocol.PWA.UninstallRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3094
|
+
|
3095
|
+
/**
|
3096
|
+
* Launches the installed web app, or an url in the same web app instead of the
|
3097
|
+
* default start url if it is provided. Returns a page Target.TargetID which
|
3098
|
+
* can be used to attach to via Target.attachToTarget or similar APIs.
|
3099
|
+
*/
|
3100
|
+
invoke_launch(params: Protocol.PWA.LaunchRequest): Promise<Protocol.PWA.LaunchResponse>;
|
3101
|
+
|
3102
|
+
/**
|
3103
|
+
* Opens one or more local files from an installed web app identified by its
|
3104
|
+
* manifestId. The web app needs to have file handlers registered to process
|
3105
|
+
* the files. The API returns one or more page Target.TargetIDs which can be
|
3106
|
+
* used to attach to via Target.attachToTarget or similar APIs.
|
3107
|
+
* If some files in the parameters cannot be handled by the web app, they will
|
3108
|
+
* be ignored. If none of the files can be handled, this API returns an error.
|
3109
|
+
* If no files are provided as the parameter, this API also returns an error.
|
3110
|
+
*
|
3111
|
+
* According to the definition of the file handlers in the manifest file, one
|
3112
|
+
* Target.TargetID may represent a page handling one or more files. The order
|
3113
|
+
* of the returned Target.TargetIDs is not guaranteed.
|
3114
|
+
*
|
3115
|
+
* TODO(crbug.com/339454034): Check the existences of the input files.
|
3116
|
+
*/
|
3117
|
+
invoke_launchFilesInApp(params: Protocol.PWA.LaunchFilesInAppRequest): Promise<Protocol.PWA.LaunchFilesInAppResponse>;
|
3118
|
+
|
3119
|
+
/**
|
3120
|
+
* Opens the current page in its web app identified by the manifest id, needs
|
3121
|
+
* to be called on a page target. This function returns immediately without
|
3122
|
+
* waiting for the app to finish loading.
|
3123
|
+
*/
|
3124
|
+
invoke_openCurrentPageInApp(params: Protocol.PWA.OpenCurrentPageInAppRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3125
|
+
|
3126
|
+
/**
|
3127
|
+
* Changes user settings of the web app identified by its manifestId. If the
|
3128
|
+
* app was not installed, this command returns an error. Unset parameters will
|
3129
|
+
* be ignored; unrecognized values will cause an error.
|
3130
|
+
*
|
3131
|
+
* Unlike the ones defined in the manifest files of the web apps, these
|
3132
|
+
* settings are provided by the browser and controlled by the users, they
|
3133
|
+
* impact the way the browser handling the web apps.
|
3134
|
+
*
|
3135
|
+
* See the comment of each parameter.
|
3136
|
+
*/
|
3137
|
+
invoke_changeAppUserSettings(params: Protocol.PWA.ChangeAppUserSettingsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3138
|
+
|
3139
|
+
}
|
3140
|
+
export interface PWADispatcher {
|
3141
|
+
}
|
3142
|
+
|
3143
|
+
export interface PageApi {
|
3144
|
+
/**
|
3145
|
+
* Deprecated, please use addScriptToEvaluateOnNewDocument instead.
|
3146
|
+
* @deprecated
|
3147
|
+
*/
|
3148
|
+
invoke_addScriptToEvaluateOnLoad(params: Protocol.Page.AddScriptToEvaluateOnLoadRequest): Promise<Protocol.Page.AddScriptToEvaluateOnLoadResponse>;
|
2678
3149
|
|
2679
3150
|
/**
|
2680
3151
|
* Evaluates given script in every frame upon creation (before loading frame's scripts).
|
@@ -2699,16 +3170,19 @@ declare namespace ProtocolProxyApi {
|
|
2699
3170
|
|
2700
3171
|
/**
|
2701
3172
|
* Clears the overridden device metrics.
|
3173
|
+
* @deprecated
|
2702
3174
|
*/
|
2703
3175
|
invoke_clearDeviceMetricsOverride(): Promise<Protocol.ProtocolResponseWithError>;
|
2704
3176
|
|
2705
3177
|
/**
|
2706
3178
|
* Clears the overridden Device Orientation.
|
3179
|
+
* @deprecated
|
2707
3180
|
*/
|
2708
3181
|
invoke_clearDeviceOrientationOverride(): Promise<Protocol.ProtocolResponseWithError>;
|
2709
3182
|
|
2710
3183
|
/**
|
2711
3184
|
* Clears the overridden Geolocation Position and Error.
|
3185
|
+
* @deprecated
|
2712
3186
|
*/
|
2713
3187
|
invoke_clearGeolocationOverride(): Promise<Protocol.ProtocolResponseWithError>;
|
2714
3188
|
|
@@ -2719,6 +3193,7 @@ declare namespace ProtocolProxyApi {
|
|
2719
3193
|
|
2720
3194
|
/**
|
2721
3195
|
* Deletes browser cookie with given name, domain and path.
|
3196
|
+
* @deprecated
|
2722
3197
|
*/
|
2723
3198
|
invoke_deleteCookie(params: Protocol.Page.DeleteCookieRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2724
3199
|
|
@@ -2745,6 +3220,7 @@ declare namespace ProtocolProxyApi {
|
|
2745
3220
|
|
2746
3221
|
/**
|
2747
3222
|
* Deprecated because it's not guaranteed that the returned icon is in fact the one used for PWA installation.
|
3223
|
+
* @deprecated
|
2748
3224
|
*/
|
2749
3225
|
invoke_getManifestIcons(): Promise<Protocol.Page.GetManifestIconsResponse>;
|
2750
3226
|
|
@@ -2813,6 +3289,7 @@ declare namespace ProtocolProxyApi {
|
|
2813
3289
|
|
2814
3290
|
/**
|
2815
3291
|
* Deprecated, please use removeScriptToEvaluateOnNewDocument instead.
|
3292
|
+
* @deprecated
|
2816
3293
|
*/
|
2817
3294
|
invoke_removeScriptToEvaluateOnLoad(params: Protocol.Page.RemoveScriptToEvaluateOnLoadRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2818
3295
|
|
@@ -2855,11 +3332,13 @@ declare namespace ProtocolProxyApi {
|
|
2855
3332
|
* Overrides the values of device screen dimensions (window.screen.width, window.screen.height,
|
2856
3333
|
* window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media
|
2857
3334
|
* query results).
|
3335
|
+
* @deprecated
|
2858
3336
|
*/
|
2859
3337
|
invoke_setDeviceMetricsOverride(params: Protocol.Page.SetDeviceMetricsOverrideRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2860
3338
|
|
2861
3339
|
/**
|
2862
3340
|
* Overrides the Device Orientation.
|
3341
|
+
* @deprecated
|
2863
3342
|
*/
|
2864
3343
|
invoke_setDeviceOrientationOverride(params: Protocol.Page.SetDeviceOrientationOverrideRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2865
3344
|
|
@@ -2880,12 +3359,14 @@ declare namespace ProtocolProxyApi {
|
|
2880
3359
|
|
2881
3360
|
/**
|
2882
3361
|
* Set the behavior when downloading a file.
|
3362
|
+
* @deprecated
|
2883
3363
|
*/
|
2884
3364
|
invoke_setDownloadBehavior(params: Protocol.Page.SetDownloadBehaviorRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2885
3365
|
|
2886
3366
|
/**
|
2887
3367
|
* Overrides the Geolocation Position or Error. Omitting any of the parameters emulates position
|
2888
3368
|
* unavailable.
|
3369
|
+
* @deprecated
|
2889
3370
|
*/
|
2890
3371
|
invoke_setGeolocationOverride(params: Protocol.Page.SetGeolocationOverrideRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2891
3372
|
|
@@ -2896,6 +3377,7 @@ declare namespace ProtocolProxyApi {
|
|
2896
3377
|
|
2897
3378
|
/**
|
2898
3379
|
* Toggles mouse event-based touch event emulation.
|
3380
|
+
* @deprecated
|
2899
3381
|
*/
|
2900
3382
|
invoke_setTouchEmulationEnabled(params: Protocol.Page.SetTouchEmulationEnabledRequest): Promise<Protocol.ProtocolResponseWithError>;
|
2901
3383
|
|
@@ -3008,6 +3490,7 @@ declare namespace ProtocolProxyApi {
|
|
3008
3490
|
|
3009
3491
|
/**
|
3010
3492
|
* Fired when frame no longer has a scheduled navigation.
|
3493
|
+
* @deprecated
|
3011
3494
|
*/
|
3012
3495
|
frameClearedScheduledNavigation(params: Protocol.Page.FrameClearedScheduledNavigationEvent): void;
|
3013
3496
|
|
@@ -3053,6 +3536,7 @@ declare namespace ProtocolProxyApi {
|
|
3053
3536
|
|
3054
3537
|
/**
|
3055
3538
|
* Fired when frame schedules a potential navigation.
|
3539
|
+
* @deprecated
|
3056
3540
|
*/
|
3057
3541
|
frameScheduledNavigation(params: Protocol.Page.FrameScheduledNavigationEvent): void;
|
3058
3542
|
|
@@ -3069,12 +3553,14 @@ declare namespace ProtocolProxyApi {
|
|
3069
3553
|
/**
|
3070
3554
|
* Fired when page is about to start a download.
|
3071
3555
|
* Deprecated. Use Browser.downloadWillBegin instead.
|
3556
|
+
* @deprecated
|
3072
3557
|
*/
|
3073
3558
|
downloadWillBegin(params: Protocol.Page.DownloadWillBeginEvent): void;
|
3074
3559
|
|
3075
3560
|
/**
|
3076
3561
|
* Fired when download makes progress. Last call has |done| == true.
|
3077
3562
|
* Deprecated. Use Browser.downloadProgress instead.
|
3563
|
+
* @deprecated
|
3078
3564
|
*/
|
3079
3565
|
downloadProgress(params: Protocol.Page.DownloadProgressEvent): void;
|
3080
3566
|
|
@@ -3138,8 +3624,7 @@ declare namespace ProtocolProxyApi {
|
|
3138
3624
|
windowOpen(params: Protocol.Page.WindowOpenEvent): void;
|
3139
3625
|
|
3140
3626
|
/**
|
3141
|
-
* Issued for every compilation cache generated.
|
3142
|
-
* if Page.setGenerateCompilationCache is enabled.
|
3627
|
+
* Issued for every compilation cache generated.
|
3143
3628
|
*/
|
3144
3629
|
compilationCacheProduced(params: Protocol.Page.CompilationCacheProducedEvent): void;
|
3145
3630
|
|
@@ -3160,6 +3645,7 @@ declare namespace ProtocolProxyApi {
|
|
3160
3645
|
* Sets time domain to use for collecting and reporting duration metrics.
|
3161
3646
|
* Note that this must be called before enabling metrics collection. Calling
|
3162
3647
|
* this method while metrics collection is enabled returns an error.
|
3648
|
+
* @deprecated
|
3163
3649
|
*/
|
3164
3650
|
invoke_setTimeDomain(params: Protocol.Performance.SetTimeDomainRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3165
3651
|
|
@@ -3193,6 +3679,42 @@ declare namespace ProtocolProxyApi {
|
|
3193
3679
|
|
3194
3680
|
}
|
3195
3681
|
|
3682
|
+
export interface PreloadApi {
|
3683
|
+
invoke_enable(): Promise<Protocol.ProtocolResponseWithError>;
|
3684
|
+
|
3685
|
+
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
3686
|
+
|
3687
|
+
}
|
3688
|
+
export interface PreloadDispatcher {
|
3689
|
+
/**
|
3690
|
+
* Upsert. Currently, it is only emitted when a rule set added.
|
3691
|
+
*/
|
3692
|
+
ruleSetUpdated(params: Protocol.Preload.RuleSetUpdatedEvent): void;
|
3693
|
+
|
3694
|
+
ruleSetRemoved(params: Protocol.Preload.RuleSetRemovedEvent): void;
|
3695
|
+
|
3696
|
+
/**
|
3697
|
+
* Fired when a preload enabled state is updated.
|
3698
|
+
*/
|
3699
|
+
preloadEnabledStateUpdated(params: Protocol.Preload.PreloadEnabledStateUpdatedEvent): void;
|
3700
|
+
|
3701
|
+
/**
|
3702
|
+
* Fired when a prefetch attempt is updated.
|
3703
|
+
*/
|
3704
|
+
prefetchStatusUpdated(params: Protocol.Preload.PrefetchStatusUpdatedEvent): void;
|
3705
|
+
|
3706
|
+
/**
|
3707
|
+
* Fired when a prerender attempt is updated.
|
3708
|
+
*/
|
3709
|
+
prerenderStatusUpdated(params: Protocol.Preload.PrerenderStatusUpdatedEvent): void;
|
3710
|
+
|
3711
|
+
/**
|
3712
|
+
* Send a list of sources for all preloading attempts in a document.
|
3713
|
+
*/
|
3714
|
+
preloadingAttemptSourcesUpdated(params: Protocol.Preload.PreloadingAttemptSourcesUpdatedEvent): void;
|
3715
|
+
|
3716
|
+
}
|
3717
|
+
|
3196
3718
|
export interface SecurityApi {
|
3197
3719
|
/**
|
3198
3720
|
* Disables tracking security state changes.
|
@@ -3211,12 +3733,14 @@ declare namespace ProtocolProxyApi {
|
|
3211
3733
|
|
3212
3734
|
/**
|
3213
3735
|
* Handles a certificate error that fired a certificateError event.
|
3736
|
+
* @deprecated
|
3214
3737
|
*/
|
3215
3738
|
invoke_handleCertificateError(params: Protocol.Security.HandleCertificateErrorRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3216
3739
|
|
3217
3740
|
/**
|
3218
3741
|
* Enable/disable overriding certificate errors. If enabled, all certificate error events need to
|
3219
3742
|
* be handled by the DevTools client and should be answered with `handleCertificateError` commands.
|
3743
|
+
* @deprecated
|
3220
3744
|
*/
|
3221
3745
|
invoke_setOverrideCertificateErrors(params: Protocol.Security.SetOverrideCertificateErrorsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3222
3746
|
|
@@ -3227,6 +3751,7 @@ declare namespace ProtocolProxyApi {
|
|
3227
3751
|
* handled with the `handleCertificateError` command. Note: this event does not fire if the
|
3228
3752
|
* certificate error has been allowed internally. Only one client per target should override
|
3229
3753
|
* certificate errors at the same time.
|
3754
|
+
* @deprecated
|
3230
3755
|
*/
|
3231
3756
|
certificateError(params: Protocol.Security.CertificateErrorEvent): void;
|
3232
3757
|
|
@@ -3237,6 +3762,7 @@ declare namespace ProtocolProxyApi {
|
|
3237
3762
|
|
3238
3763
|
/**
|
3239
3764
|
* The security state of the page changed. No longer being sent.
|
3765
|
+
* @deprecated
|
3240
3766
|
*/
|
3241
3767
|
securityStateChanged(params: Protocol.Security.SecurityStateChangedEvent): void;
|
3242
3768
|
|
@@ -3253,8 +3779,6 @@ declare namespace ProtocolProxyApi {
|
|
3253
3779
|
|
3254
3780
|
invoke_enable(): Promise<Protocol.ProtocolResponseWithError>;
|
3255
3781
|
|
3256
|
-
invoke_inspectWorker(params: Protocol.ServiceWorker.InspectWorkerRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3257
|
-
|
3258
3782
|
invoke_setForceUpdateOnPageLoad(params: Protocol.ServiceWorker.SetForceUpdateOnPageLoadRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3259
3783
|
|
3260
3784
|
invoke_skipWaiting(params: Protocol.ServiceWorker.SkipWaitingRequest): Promise<Protocol.ProtocolResponseWithError>;
|
@@ -3533,6 +4057,8 @@ declare namespace ProtocolProxyApi {
|
|
3533
4057
|
|
3534
4058
|
attributionReportingReportSent(params: Protocol.Storage.AttributionReportingReportSentEvent): void;
|
3535
4059
|
|
4060
|
+
attributionReportingVerboseDebugReportSent(params: Protocol.Storage.AttributionReportingVerboseDebugReportSentEvent): void;
|
4061
|
+
|
3536
4062
|
}
|
3537
4063
|
|
3538
4064
|
export interface SystemInfoApi {
|
@@ -3629,6 +4155,7 @@ declare namespace ProtocolProxyApi {
|
|
3629
4155
|
* Sends protocol message over session with given id.
|
3630
4156
|
* Consider using flat mode instead; see commands attachToTarget, setAutoAttach,
|
3631
4157
|
* and crbug.com/991325.
|
4158
|
+
* @deprecated
|
3632
4159
|
*/
|
3633
4160
|
invoke_sendMessageToTarget(params: Protocol.Target.SendMessageToTargetRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3634
4161
|
|
@@ -3665,6 +4192,11 @@ declare namespace ProtocolProxyApi {
|
|
3665
4192
|
*/
|
3666
4193
|
invoke_setRemoteLocations(params: Protocol.Target.SetRemoteLocationsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3667
4194
|
|
4195
|
+
/**
|
4196
|
+
* Opens a DevTools window for the target.
|
4197
|
+
*/
|
4198
|
+
invoke_openDevTools(params: Protocol.Target.OpenDevToolsRequest): Promise<Protocol.Target.OpenDevToolsResponse>;
|
4199
|
+
|
3668
4200
|
}
|
3669
4201
|
export interface TargetDispatcher {
|
3670
4202
|
/**
|
@@ -3771,98 +4303,6 @@ declare namespace ProtocolProxyApi {
|
|
3771
4303
|
|
3772
4304
|
}
|
3773
4305
|
|
3774
|
-
export interface FetchApi {
|
3775
|
-
/**
|
3776
|
-
* Disables the fetch domain.
|
3777
|
-
*/
|
3778
|
-
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
3779
|
-
|
3780
|
-
/**
|
3781
|
-
* Enables issuing of requestPaused events. A request will be paused until client
|
3782
|
-
* calls one of failRequest, fulfillRequest or continueRequest/continueWithAuth.
|
3783
|
-
*/
|
3784
|
-
invoke_enable(params: Protocol.Fetch.EnableRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3785
|
-
|
3786
|
-
/**
|
3787
|
-
* Causes the request to fail with specified reason.
|
3788
|
-
*/
|
3789
|
-
invoke_failRequest(params: Protocol.Fetch.FailRequestRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3790
|
-
|
3791
|
-
/**
|
3792
|
-
* Provides response to the request.
|
3793
|
-
*/
|
3794
|
-
invoke_fulfillRequest(params: Protocol.Fetch.FulfillRequestRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3795
|
-
|
3796
|
-
/**
|
3797
|
-
* Continues the request, optionally modifying some of its parameters.
|
3798
|
-
*/
|
3799
|
-
invoke_continueRequest(params: Protocol.Fetch.ContinueRequestRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3800
|
-
|
3801
|
-
/**
|
3802
|
-
* Continues a request supplying authChallengeResponse following authRequired event.
|
3803
|
-
*/
|
3804
|
-
invoke_continueWithAuth(params: Protocol.Fetch.ContinueWithAuthRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3805
|
-
|
3806
|
-
/**
|
3807
|
-
* Continues loading of the paused response, optionally modifying the
|
3808
|
-
* response headers. If either responseCode or headers are modified, all of them
|
3809
|
-
* must be present.
|
3810
|
-
*/
|
3811
|
-
invoke_continueResponse(params: Protocol.Fetch.ContinueResponseRequest): Promise<Protocol.ProtocolResponseWithError>;
|
3812
|
-
|
3813
|
-
/**
|
3814
|
-
* Causes the body of the response to be received from the server and
|
3815
|
-
* returned as a single string. May only be issued for a request that
|
3816
|
-
* is paused in the Response stage and is mutually exclusive with
|
3817
|
-
* takeResponseBodyForInterceptionAsStream. Calling other methods that
|
3818
|
-
* affect the request or disabling fetch domain before body is received
|
3819
|
-
* results in an undefined behavior.
|
3820
|
-
* Note that the response body is not available for redirects. Requests
|
3821
|
-
* paused in the _redirect received_ state may be differentiated by
|
3822
|
-
* `responseCode` and presence of `location` response header, see
|
3823
|
-
* comments to `requestPaused` for details.
|
3824
|
-
*/
|
3825
|
-
invoke_getResponseBody(params: Protocol.Fetch.GetResponseBodyRequest): Promise<Protocol.Fetch.GetResponseBodyResponse>;
|
3826
|
-
|
3827
|
-
/**
|
3828
|
-
* Returns a handle to the stream representing the response body.
|
3829
|
-
* The request must be paused in the HeadersReceived stage.
|
3830
|
-
* Note that after this command the request can't be continued
|
3831
|
-
* as is -- client either needs to cancel it or to provide the
|
3832
|
-
* response body.
|
3833
|
-
* The stream only supports sequential read, IO.read will fail if the position
|
3834
|
-
* is specified.
|
3835
|
-
* This method is mutually exclusive with getResponseBody.
|
3836
|
-
* Calling other methods that affect the request or disabling fetch
|
3837
|
-
* domain before body is received results in an undefined behavior.
|
3838
|
-
*/
|
3839
|
-
invoke_takeResponseBodyAsStream(params: Protocol.Fetch.TakeResponseBodyAsStreamRequest): Promise<Protocol.Fetch.TakeResponseBodyAsStreamResponse>;
|
3840
|
-
|
3841
|
-
}
|
3842
|
-
export interface FetchDispatcher {
|
3843
|
-
/**
|
3844
|
-
* Issued when the domain is enabled and the request URL matches the
|
3845
|
-
* specified filter. The request is paused until the client responds
|
3846
|
-
* with one of continueRequest, failRequest or fulfillRequest.
|
3847
|
-
* The stage of the request can be determined by presence of responseErrorReason
|
3848
|
-
* and responseStatusCode -- the request is at the response stage if either
|
3849
|
-
* of these fields is present and in the request stage otherwise.
|
3850
|
-
* Redirect responses and subsequent requests are reported similarly to regular
|
3851
|
-
* responses and requests. Redirect responses may be distinguished by the value
|
3852
|
-
* of `responseStatusCode` (which is one of 301, 302, 303, 307, 308) along with
|
3853
|
-
* presence of the `location` header. Requests resulting from a redirect will
|
3854
|
-
* have `redirectedRequestId` field set.
|
3855
|
-
*/
|
3856
|
-
requestPaused(params: Protocol.Fetch.RequestPausedEvent): void;
|
3857
|
-
|
3858
|
-
/**
|
3859
|
-
* Issued when the domain is enabled with handleAuthRequests set to true.
|
3860
|
-
* The request is paused until client responds with continueWithAuth.
|
3861
|
-
*/
|
3862
|
-
authRequired(params: Protocol.Fetch.AuthRequiredEvent): void;
|
3863
|
-
|
3864
|
-
}
|
3865
|
-
|
3866
4306
|
export interface WebAudioApi {
|
3867
4307
|
/**
|
3868
4308
|
* Enables the WebAudio domain and starts sending context lifetime events.
|
@@ -4045,394 +4485,68 @@ declare namespace ProtocolProxyApi {
|
|
4045
4485
|
|
4046
4486
|
}
|
4047
4487
|
|
4048
|
-
export interface
|
4488
|
+
export interface DebuggerApi {
|
4049
4489
|
/**
|
4050
|
-
*
|
4490
|
+
* Continues execution until specific location is reached.
|
4051
4491
|
*/
|
4052
|
-
|
4492
|
+
invoke_continueToLocation(params: Protocol.Debugger.ContinueToLocationRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4053
4493
|
|
4054
4494
|
/**
|
4055
|
-
* Disables
|
4495
|
+
* Disables debugger for given page.
|
4056
4496
|
*/
|
4057
4497
|
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
4058
4498
|
|
4059
|
-
}
|
4060
|
-
export interface MediaDispatcher {
|
4061
|
-
/**
|
4062
|
-
* This can be called multiple times, and can be used to set / override /
|
4063
|
-
* remove player properties. A null propValue indicates removal.
|
4064
|
-
*/
|
4065
|
-
playerPropertiesChanged(params: Protocol.Media.PlayerPropertiesChangedEvent): void;
|
4066
|
-
|
4067
4499
|
/**
|
4068
|
-
*
|
4069
|
-
*
|
4500
|
+
* Enables debugger for the given page. Clients should not assume that the debugging has been
|
4501
|
+
* enabled until the result for this command is received.
|
4070
4502
|
*/
|
4071
|
-
|
4503
|
+
invoke_enable(params: Protocol.Debugger.EnableRequest): Promise<Protocol.Debugger.EnableResponse>;
|
4072
4504
|
|
4073
4505
|
/**
|
4074
|
-
*
|
4506
|
+
* Evaluates expression on a given call frame.
|
4075
4507
|
*/
|
4076
|
-
|
4508
|
+
invoke_evaluateOnCallFrame(params: Protocol.Debugger.EvaluateOnCallFrameRequest): Promise<Protocol.Debugger.EvaluateOnCallFrameResponse>;
|
4077
4509
|
|
4078
4510
|
/**
|
4079
|
-
*
|
4511
|
+
* Returns possible locations for breakpoint. scriptId in start and end range locations should be
|
4512
|
+
* the same.
|
4080
4513
|
*/
|
4081
|
-
|
4514
|
+
invoke_getPossibleBreakpoints(params: Protocol.Debugger.GetPossibleBreakpointsRequest): Promise<Protocol.Debugger.GetPossibleBreakpointsResponse>;
|
4082
4515
|
|
4083
4516
|
/**
|
4084
|
-
*
|
4085
|
-
* a list of active players. If an agent is restored, it will receive the full
|
4086
|
-
* list of player ids and all events again.
|
4517
|
+
* Returns source for the script with given id.
|
4087
4518
|
*/
|
4088
|
-
|
4519
|
+
invoke_getScriptSource(params: Protocol.Debugger.GetScriptSourceRequest): Promise<Protocol.Debugger.GetScriptSourceResponse>;
|
4089
4520
|
|
4090
|
-
|
4521
|
+
invoke_disassembleWasmModule(params: Protocol.Debugger.DisassembleWasmModuleRequest): Promise<Protocol.Debugger.DisassembleWasmModuleResponse>;
|
4091
4522
|
|
4092
|
-
export interface DeviceAccessApi {
|
4093
4523
|
/**
|
4094
|
-
*
|
4524
|
+
* Disassemble the next chunk of lines for the module corresponding to the
|
4525
|
+
* stream. If disassembly is complete, this API will invalidate the streamId
|
4526
|
+
* and return an empty chunk. Any subsequent calls for the now invalid stream
|
4527
|
+
* will return errors.
|
4095
4528
|
*/
|
4096
|
-
|
4529
|
+
invoke_nextWasmDisassemblyChunk(params: Protocol.Debugger.NextWasmDisassemblyChunkRequest): Promise<Protocol.Debugger.NextWasmDisassemblyChunkResponse>;
|
4097
4530
|
|
4098
4531
|
/**
|
4099
|
-
*
|
4532
|
+
* This command is deprecated. Use getScriptSource instead.
|
4533
|
+
* @deprecated
|
4100
4534
|
*/
|
4101
|
-
|
4535
|
+
invoke_getWasmBytecode(params: Protocol.Debugger.GetWasmBytecodeRequest): Promise<Protocol.Debugger.GetWasmBytecodeResponse>;
|
4102
4536
|
|
4103
4537
|
/**
|
4104
|
-
*
|
4538
|
+
* Returns stack trace with given `stackTraceId`.
|
4105
4539
|
*/
|
4106
|
-
|
4107
|
-
|
4108
|
-
/**
|
4109
|
-
* Cancel a prompt in response to a DeviceAccess.deviceRequestPrompted event.
|
4110
|
-
*/
|
4111
|
-
invoke_cancelPrompt(params: Protocol.DeviceAccess.CancelPromptRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4112
|
-
|
4113
|
-
}
|
4114
|
-
export interface DeviceAccessDispatcher {
|
4115
|
-
/**
|
4116
|
-
* A device request opened a user prompt to select a device. Respond with the
|
4117
|
-
* selectPrompt or cancelPrompt command.
|
4118
|
-
*/
|
4119
|
-
deviceRequestPrompted(params: Protocol.DeviceAccess.DeviceRequestPromptedEvent): void;
|
4120
|
-
|
4121
|
-
}
|
4122
|
-
|
4123
|
-
export interface PreloadApi {
|
4124
|
-
invoke_enable(): Promise<Protocol.ProtocolResponseWithError>;
|
4125
|
-
|
4126
|
-
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
4127
|
-
|
4128
|
-
}
|
4129
|
-
export interface PreloadDispatcher {
|
4130
|
-
/**
|
4131
|
-
* Upsert. Currently, it is only emitted when a rule set added.
|
4132
|
-
*/
|
4133
|
-
ruleSetUpdated(params: Protocol.Preload.RuleSetUpdatedEvent): void;
|
4134
|
-
|
4135
|
-
ruleSetRemoved(params: Protocol.Preload.RuleSetRemovedEvent): void;
|
4136
|
-
|
4137
|
-
/**
|
4138
|
-
* Fired when a preload enabled state is updated.
|
4139
|
-
*/
|
4140
|
-
preloadEnabledStateUpdated(params: Protocol.Preload.PreloadEnabledStateUpdatedEvent): void;
|
4141
|
-
|
4142
|
-
/**
|
4143
|
-
* Fired when a prefetch attempt is updated.
|
4144
|
-
*/
|
4145
|
-
prefetchStatusUpdated(params: Protocol.Preload.PrefetchStatusUpdatedEvent): void;
|
4146
|
-
|
4147
|
-
/**
|
4148
|
-
* Fired when a prerender attempt is updated.
|
4149
|
-
*/
|
4150
|
-
prerenderStatusUpdated(params: Protocol.Preload.PrerenderStatusUpdatedEvent): void;
|
4151
|
-
|
4152
|
-
/**
|
4153
|
-
* Send a list of sources for all preloading attempts in a document.
|
4154
|
-
*/
|
4155
|
-
preloadingAttemptSourcesUpdated(params: Protocol.Preload.PreloadingAttemptSourcesUpdatedEvent): void;
|
4156
|
-
|
4157
|
-
}
|
4158
|
-
|
4159
|
-
export interface FedCmApi {
|
4160
|
-
invoke_enable(params: Protocol.FedCm.EnableRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4161
|
-
|
4162
|
-
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
4163
|
-
|
4164
|
-
invoke_selectAccount(params: Protocol.FedCm.SelectAccountRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4165
|
-
|
4166
|
-
invoke_clickDialogButton(params: Protocol.FedCm.ClickDialogButtonRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4167
|
-
|
4168
|
-
invoke_openUrl(params: Protocol.FedCm.OpenUrlRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4169
|
-
|
4170
|
-
invoke_dismissDialog(params: Protocol.FedCm.DismissDialogRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4171
|
-
|
4172
|
-
/**
|
4173
|
-
* Resets the cooldown time, if any, to allow the next FedCM call to show
|
4174
|
-
* a dialog even if one was recently dismissed by the user.
|
4175
|
-
*/
|
4176
|
-
invoke_resetCooldown(): Promise<Protocol.ProtocolResponseWithError>;
|
4177
|
-
|
4178
|
-
}
|
4179
|
-
export interface FedCmDispatcher {
|
4180
|
-
dialogShown(params: Protocol.FedCm.DialogShownEvent): void;
|
4181
|
-
|
4182
|
-
/**
|
4183
|
-
* Triggered when a dialog is closed, either by user action, JS abort,
|
4184
|
-
* or a command below.
|
4185
|
-
*/
|
4186
|
-
dialogClosed(params: Protocol.FedCm.DialogClosedEvent): void;
|
4187
|
-
|
4188
|
-
}
|
4189
|
-
|
4190
|
-
export interface PWAApi {
|
4191
|
-
/**
|
4192
|
-
* Returns the following OS state for the given manifest id.
|
4193
|
-
*/
|
4194
|
-
invoke_getOsAppState(params: Protocol.PWA.GetOsAppStateRequest): Promise<Protocol.PWA.GetOsAppStateResponse>;
|
4195
|
-
|
4196
|
-
/**
|
4197
|
-
* Installs the given manifest identity, optionally using the given install_url
|
4198
|
-
* or IWA bundle location.
|
4199
|
-
*
|
4200
|
-
* TODO(crbug.com/337872319) Support IWA to meet the following specific
|
4201
|
-
* requirement.
|
4202
|
-
* IWA-specific install description: If the manifest_id is isolated-app://,
|
4203
|
-
* install_url_or_bundle_url is required, and can be either an http(s) URL or
|
4204
|
-
* file:// URL pointing to a signed web bundle (.swbn). The .swbn file's
|
4205
|
-
* signing key must correspond to manifest_id. If Chrome is not in IWA dev
|
4206
|
-
* mode, the installation will fail, regardless of the state of the allowlist.
|
4207
|
-
*/
|
4208
|
-
invoke_install(params: Protocol.PWA.InstallRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4209
|
-
|
4210
|
-
/**
|
4211
|
-
* Uninstalls the given manifest_id and closes any opened app windows.
|
4212
|
-
*/
|
4213
|
-
invoke_uninstall(params: Protocol.PWA.UninstallRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4214
|
-
|
4215
|
-
/**
|
4216
|
-
* Launches the installed web app, or an url in the same web app instead of the
|
4217
|
-
* default start url if it is provided. Returns a page Target.TargetID which
|
4218
|
-
* can be used to attach to via Target.attachToTarget or similar APIs.
|
4219
|
-
*/
|
4220
|
-
invoke_launch(params: Protocol.PWA.LaunchRequest): Promise<Protocol.PWA.LaunchResponse>;
|
4221
|
-
|
4222
|
-
/**
|
4223
|
-
* Opens one or more local files from an installed web app identified by its
|
4224
|
-
* manifestId. The web app needs to have file handlers registered to process
|
4225
|
-
* the files. The API returns one or more page Target.TargetIDs which can be
|
4226
|
-
* used to attach to via Target.attachToTarget or similar APIs.
|
4227
|
-
* If some files in the parameters cannot be handled by the web app, they will
|
4228
|
-
* be ignored. If none of the files can be handled, this API returns an error.
|
4229
|
-
* If no files are provided as the parameter, this API also returns an error.
|
4230
|
-
*
|
4231
|
-
* According to the definition of the file handlers in the manifest file, one
|
4232
|
-
* Target.TargetID may represent a page handling one or more files. The order
|
4233
|
-
* of the returned Target.TargetIDs is not guaranteed.
|
4234
|
-
*
|
4235
|
-
* TODO(crbug.com/339454034): Check the existences of the input files.
|
4236
|
-
*/
|
4237
|
-
invoke_launchFilesInApp(params: Protocol.PWA.LaunchFilesInAppRequest): Promise<Protocol.PWA.LaunchFilesInAppResponse>;
|
4238
|
-
|
4239
|
-
/**
|
4240
|
-
* Opens the current page in its web app identified by the manifest id, needs
|
4241
|
-
* to be called on a page target. This function returns immediately without
|
4242
|
-
* waiting for the app to finish loading.
|
4243
|
-
*/
|
4244
|
-
invoke_openCurrentPageInApp(params: Protocol.PWA.OpenCurrentPageInAppRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4245
|
-
|
4246
|
-
/**
|
4247
|
-
* Changes user settings of the web app identified by its manifestId. If the
|
4248
|
-
* app was not installed, this command returns an error. Unset parameters will
|
4249
|
-
* be ignored; unrecognized values will cause an error.
|
4250
|
-
*
|
4251
|
-
* Unlike the ones defined in the manifest files of the web apps, these
|
4252
|
-
* settings are provided by the browser and controlled by the users, they
|
4253
|
-
* impact the way the browser handling the web apps.
|
4254
|
-
*
|
4255
|
-
* See the comment of each parameter.
|
4256
|
-
*/
|
4257
|
-
invoke_changeAppUserSettings(params: Protocol.PWA.ChangeAppUserSettingsRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4258
|
-
|
4259
|
-
}
|
4260
|
-
export interface PWADispatcher {
|
4261
|
-
}
|
4262
|
-
|
4263
|
-
export interface BluetoothEmulationApi {
|
4264
|
-
/**
|
4265
|
-
* Enable the BluetoothEmulation domain.
|
4266
|
-
*/
|
4267
|
-
invoke_enable(params: Protocol.BluetoothEmulation.EnableRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4268
|
-
|
4269
|
-
/**
|
4270
|
-
* Set the state of the simulated central.
|
4271
|
-
*/
|
4272
|
-
invoke_setSimulatedCentralState(params: Protocol.BluetoothEmulation.SetSimulatedCentralStateRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4273
|
-
|
4274
|
-
/**
|
4275
|
-
* Disable the BluetoothEmulation domain.
|
4276
|
-
*/
|
4277
|
-
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
4278
|
-
|
4279
|
-
/**
|
4280
|
-
* Simulates a peripheral with |address|, |name| and |knownServiceUuids|
|
4281
|
-
* that has already been connected to the system.
|
4282
|
-
*/
|
4283
|
-
invoke_simulatePreconnectedPeripheral(params: Protocol.BluetoothEmulation.SimulatePreconnectedPeripheralRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4284
|
-
|
4285
|
-
/**
|
4286
|
-
* Simulates an advertisement packet described in |entry| being received by
|
4287
|
-
* the central.
|
4288
|
-
*/
|
4289
|
-
invoke_simulateAdvertisement(params: Protocol.BluetoothEmulation.SimulateAdvertisementRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4290
|
-
|
4291
|
-
/**
|
4292
|
-
* Simulates the response code from the peripheral with |address| for a
|
4293
|
-
* GATT operation of |type|. The |code| value follows the HCI Error Codes from
|
4294
|
-
* Bluetooth Core Specification Vol 2 Part D 1.3 List Of Error Codes.
|
4295
|
-
*/
|
4296
|
-
invoke_simulateGATTOperationResponse(params: Protocol.BluetoothEmulation.SimulateGATTOperationResponseRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4297
|
-
|
4298
|
-
/**
|
4299
|
-
* Simulates the response from the characteristic with |characteristicId| for a
|
4300
|
-
* characteristic operation of |type|. The |code| value follows the Error
|
4301
|
-
* Codes from Bluetooth Core Specification Vol 3 Part F 3.4.1.1 Error Response.
|
4302
|
-
* The |data| is expected to exist when simulating a successful read operation
|
4303
|
-
* response.
|
4304
|
-
*/
|
4305
|
-
invoke_simulateCharacteristicOperationResponse(params: Protocol.BluetoothEmulation.SimulateCharacteristicOperationResponseRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4306
|
-
|
4307
|
-
/**
|
4308
|
-
* Simulates the response from the descriptor with |descriptorId| for a
|
4309
|
-
* descriptor operation of |type|. The |code| value follows the Error
|
4310
|
-
* Codes from Bluetooth Core Specification Vol 3 Part F 3.4.1.1 Error Response.
|
4311
|
-
* The |data| is expected to exist when simulating a successful read operation
|
4312
|
-
* response.
|
4313
|
-
*/
|
4314
|
-
invoke_simulateDescriptorOperationResponse(params: Protocol.BluetoothEmulation.SimulateDescriptorOperationResponseRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4315
|
-
|
4316
|
-
/**
|
4317
|
-
* Adds a service with |serviceUuid| to the peripheral with |address|.
|
4318
|
-
*/
|
4319
|
-
invoke_addService(params: Protocol.BluetoothEmulation.AddServiceRequest): Promise<Protocol.BluetoothEmulation.AddServiceResponse>;
|
4320
|
-
|
4321
|
-
/**
|
4322
|
-
* Removes the service respresented by |serviceId| from the simulated central.
|
4323
|
-
*/
|
4324
|
-
invoke_removeService(params: Protocol.BluetoothEmulation.RemoveServiceRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4325
|
-
|
4326
|
-
/**
|
4327
|
-
* Adds a characteristic with |characteristicUuid| and |properties| to the
|
4328
|
-
* service represented by |serviceId|.
|
4329
|
-
*/
|
4330
|
-
invoke_addCharacteristic(params: Protocol.BluetoothEmulation.AddCharacteristicRequest): Promise<Protocol.BluetoothEmulation.AddCharacteristicResponse>;
|
4331
|
-
|
4332
|
-
/**
|
4333
|
-
* Removes the characteristic respresented by |characteristicId| from the
|
4334
|
-
* simulated central.
|
4335
|
-
*/
|
4336
|
-
invoke_removeCharacteristic(params: Protocol.BluetoothEmulation.RemoveCharacteristicRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4337
|
-
|
4338
|
-
/**
|
4339
|
-
* Adds a descriptor with |descriptorUuid| to the characteristic respresented
|
4340
|
-
* by |characteristicId|.
|
4341
|
-
*/
|
4342
|
-
invoke_addDescriptor(params: Protocol.BluetoothEmulation.AddDescriptorRequest): Promise<Protocol.BluetoothEmulation.AddDescriptorResponse>;
|
4343
|
-
|
4344
|
-
/**
|
4345
|
-
* Removes the descriptor with |descriptorId| from the simulated central.
|
4346
|
-
*/
|
4347
|
-
invoke_removeDescriptor(params: Protocol.BluetoothEmulation.RemoveDescriptorRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4348
|
-
|
4349
|
-
/**
|
4350
|
-
* Simulates a GATT disconnection from the peripheral with |address|.
|
4351
|
-
*/
|
4352
|
-
invoke_simulateGATTDisconnection(params: Protocol.BluetoothEmulation.SimulateGATTDisconnectionRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4353
|
-
|
4354
|
-
}
|
4355
|
-
export interface BluetoothEmulationDispatcher {
|
4356
|
-
/**
|
4357
|
-
* Event for when a GATT operation of |type| to the peripheral with |address|
|
4358
|
-
* happened.
|
4359
|
-
*/
|
4360
|
-
gattOperationReceived(params: Protocol.BluetoothEmulation.GattOperationReceivedEvent): void;
|
4361
|
-
|
4362
|
-
/**
|
4363
|
-
* Event for when a characteristic operation of |type| to the characteristic
|
4364
|
-
* respresented by |characteristicId| happened. |data| and |writeType| is
|
4365
|
-
* expected to exist when |type| is write.
|
4366
|
-
*/
|
4367
|
-
characteristicOperationReceived(params: Protocol.BluetoothEmulation.CharacteristicOperationReceivedEvent): void;
|
4368
|
-
|
4369
|
-
/**
|
4370
|
-
* Event for when a descriptor operation of |type| to the descriptor
|
4371
|
-
* respresented by |descriptorId| happened. |data| is expected to exist when
|
4372
|
-
* |type| is write.
|
4373
|
-
*/
|
4374
|
-
descriptorOperationReceived(params: Protocol.BluetoothEmulation.DescriptorOperationReceivedEvent): void;
|
4375
|
-
|
4376
|
-
}
|
4377
|
-
|
4378
|
-
export interface DebuggerApi {
|
4379
|
-
/**
|
4380
|
-
* Continues execution until specific location is reached.
|
4381
|
-
*/
|
4382
|
-
invoke_continueToLocation(params: Protocol.Debugger.ContinueToLocationRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4383
|
-
|
4384
|
-
/**
|
4385
|
-
* Disables debugger for given page.
|
4386
|
-
*/
|
4387
|
-
invoke_disable(): Promise<Protocol.ProtocolResponseWithError>;
|
4388
|
-
|
4389
|
-
/**
|
4390
|
-
* Enables debugger for the given page. Clients should not assume that the debugging has been
|
4391
|
-
* enabled until the result for this command is received.
|
4392
|
-
*/
|
4393
|
-
invoke_enable(params: Protocol.Debugger.EnableRequest): Promise<Protocol.Debugger.EnableResponse>;
|
4394
|
-
|
4395
|
-
/**
|
4396
|
-
* Evaluates expression on a given call frame.
|
4397
|
-
*/
|
4398
|
-
invoke_evaluateOnCallFrame(params: Protocol.Debugger.EvaluateOnCallFrameRequest): Promise<Protocol.Debugger.EvaluateOnCallFrameResponse>;
|
4399
|
-
|
4400
|
-
/**
|
4401
|
-
* Returns possible locations for breakpoint. scriptId in start and end range locations should be
|
4402
|
-
* the same.
|
4403
|
-
*/
|
4404
|
-
invoke_getPossibleBreakpoints(params: Protocol.Debugger.GetPossibleBreakpointsRequest): Promise<Protocol.Debugger.GetPossibleBreakpointsResponse>;
|
4405
|
-
|
4406
|
-
/**
|
4407
|
-
* Returns source for the script with given id.
|
4408
|
-
*/
|
4409
|
-
invoke_getScriptSource(params: Protocol.Debugger.GetScriptSourceRequest): Promise<Protocol.Debugger.GetScriptSourceResponse>;
|
4410
|
-
|
4411
|
-
invoke_disassembleWasmModule(params: Protocol.Debugger.DisassembleWasmModuleRequest): Promise<Protocol.Debugger.DisassembleWasmModuleResponse>;
|
4412
|
-
|
4413
|
-
/**
|
4414
|
-
* Disassemble the next chunk of lines for the module corresponding to the
|
4415
|
-
* stream. If disassembly is complete, this API will invalidate the streamId
|
4416
|
-
* and return an empty chunk. Any subsequent calls for the now invalid stream
|
4417
|
-
* will return errors.
|
4418
|
-
*/
|
4419
|
-
invoke_nextWasmDisassemblyChunk(params: Protocol.Debugger.NextWasmDisassemblyChunkRequest): Promise<Protocol.Debugger.NextWasmDisassemblyChunkResponse>;
|
4420
|
-
|
4421
|
-
/**
|
4422
|
-
* This command is deprecated. Use getScriptSource instead.
|
4423
|
-
*/
|
4424
|
-
invoke_getWasmBytecode(params: Protocol.Debugger.GetWasmBytecodeRequest): Promise<Protocol.Debugger.GetWasmBytecodeResponse>;
|
4425
|
-
|
4426
|
-
/**
|
4427
|
-
* Returns stack trace with given `stackTraceId`.
|
4428
|
-
*/
|
4429
|
-
invoke_getStackTrace(params: Protocol.Debugger.GetStackTraceRequest): Promise<Protocol.Debugger.GetStackTraceResponse>;
|
4540
|
+
invoke_getStackTrace(params: Protocol.Debugger.GetStackTraceRequest): Promise<Protocol.Debugger.GetStackTraceResponse>;
|
4430
4541
|
|
4431
4542
|
/**
|
4432
4543
|
* Stops on the next JavaScript statement.
|
4433
4544
|
*/
|
4434
4545
|
invoke_pause(): Promise<Protocol.ProtocolResponseWithError>;
|
4435
4546
|
|
4547
|
+
/**
|
4548
|
+
* @deprecated
|
4549
|
+
*/
|
4436
4550
|
invoke_pauseOnAsyncCall(params: Protocol.Debugger.PauseOnAsyncCallRequest): Promise<Protocol.ProtocolResponseWithError>;
|
4437
4551
|
|
4438
4552
|
/**
|
@@ -4577,6 +4691,7 @@ declare namespace ProtocolProxyApi {
|
|
4577
4691
|
/**
|
4578
4692
|
* Fired when breakpoint is resolved to an actual script and location.
|
4579
4693
|
* Deprecated in favor of `resolvedBreakpoints` in the `scriptParsed` event.
|
4694
|
+
* @deprecated
|
4580
4695
|
*/
|
4581
4696
|
breakpointResolved(params: Protocol.Debugger.BreakpointResolvedEvent): void;
|
4582
4697
|
|