chrome-devtools-frontend 1.0.1513662 → 1.0.1515446
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mailmap +1 -1
- package/AUTHORS +1 -0
- package/LICENSE +1 -1
- package/WATCHLISTS +1 -1
- package/config/owner/COMMON_OWNERS +0 -1
- package/config/owner/LIGHTHOUSE_OWNERS +0 -1
- package/docs/committers_policy.md +1 -1
- package/docs/contributing/README.md +1 -1
- package/docs/contributing/infrastructure.md +101 -5
- package/eslint.config.mjs +1 -2
- package/extension-api/ExtensionAPI.d.ts +1 -1
- package/front_end/Images/gdp-logo-dark.png +0 -0
- package/front_end/Images/gdp-logo-light.png +0 -0
- package/front_end/Images/generate-css-vars.js +2 -2
- package/front_end/Images/rollup.config.mjs +1 -1
- package/front_end/application_tokens.css +1 -1
- package/front_end/core/common/App.ts +1 -1
- package/front_end/core/common/AppProvider.ts +1 -1
- package/front_end/core/common/Base64.ts +1 -1
- package/front_end/core/common/CharacterIdMap.ts +1 -1
- package/front_end/core/common/Color.ts +1 -1
- package/front_end/core/common/ColorConverter.ts +1 -1
- package/front_end/core/common/ColorUtils.ts +1 -1
- package/front_end/core/common/Console.ts +1 -1
- package/front_end/core/common/Debouncer.ts +1 -1
- package/front_end/core/common/EventTarget.ts +1 -1
- package/front_end/core/common/Gzip.ts +1 -1
- package/front_end/core/common/JavaScriptMetaData.ts +1 -1
- package/front_end/core/common/Lazy.ts +1 -1
- package/front_end/core/common/Linkifier.ts +1 -1
- package/front_end/core/common/MapWithDefault.ts +1 -1
- package/front_end/core/common/Mutex.ts +1 -1
- package/front_end/core/common/Object.ts +1 -1
- package/front_end/core/common/ParsedURL.ts +3 -29
- package/front_end/core/common/Progress.ts +3 -29
- package/front_end/core/common/QueryParamHandler.ts +1 -1
- package/front_end/core/common/ResolverBase.ts +1 -1
- package/front_end/core/common/ResourceType.ts +1 -1
- package/front_end/core/common/ReturnToPanel.ts +1 -1
- package/front_end/core/common/Revealer.ts +1 -1
- package/front_end/core/common/Runnable.ts +1 -1
- package/front_end/core/common/SegmentedRange.ts +1 -1
- package/front_end/core/common/SettingRegistration.ts +1 -1
- package/front_end/core/common/Settings.ts +14 -61
- package/front_end/core/common/SimpleHistoryManager.ts +3 -29
- package/front_end/core/common/StringOutputStream.ts +1 -1
- package/front_end/core/common/TextDictionary.ts +3 -29
- package/front_end/core/common/Throttler.ts +1 -1
- package/front_end/core/common/Trie.ts +1 -1
- package/front_end/core/common/Worker.ts +3 -29
- package/front_end/core/common/common.ts +1 -1
- package/front_end/core/dom_extension/DOMExtension.ts +1 -1
- package/front_end/core/dom_extension/dom_extension.ts +3 -29
- package/front_end/core/host/AidaClient.ts +3 -3
- package/front_end/core/host/GdpClient.ts +1 -2
- package/front_end/core/host/InspectorFrontendHost.ts +20 -40
- package/front_end/core/host/InspectorFrontendHostAPI.ts +1 -1
- package/front_end/core/host/Platform.ts +3 -29
- package/front_end/core/host/ResourceLoader.ts +1 -1
- package/front_end/core/host/UserMetrics.ts +3 -29
- package/front_end/core/host/host.ts +1 -1
- package/front_end/core/i18n/ByteUtilities.ts +1 -1
- package/front_end/core/i18n/DevToolsLocale.ts +1 -1
- package/front_end/core/i18n/NumberFormatter.ts +1 -1
- package/front_end/core/i18n/collect-ui-strings.js +1 -1
- package/front_end/core/i18n/generate-locales-js.js +1 -1
- package/front_end/core/i18n/i18n.ts +1 -1
- package/front_end/core/i18n/i18nImpl.ts +1 -1
- package/front_end/core/i18n/i18nTypes.ts +1 -1
- package/front_end/core/i18n/locales.d.ts +1 -1
- package/front_end/core/i18n/time-utilities.ts +1 -1
- package/front_end/core/platform/ArrayUtilities.ts +1 -1
- package/front_end/core/platform/Brand.ts +1 -1
- package/front_end/core/platform/Constructor.ts +1 -1
- package/front_end/core/platform/DOMUtilities.ts +1 -1
- package/front_end/core/platform/DateUtilities.ts +1 -1
- package/front_end/core/platform/DevToolsPath.ts +1 -1
- package/front_end/core/platform/KeyboardUtilities.ts +1 -1
- package/front_end/core/platform/MapUtilities.ts +1 -1
- package/front_end/core/platform/MimeType.ts +1 -1
- package/front_end/core/platform/NumberUtilities.ts +1 -1
- package/front_end/core/platform/StringUtilities.ts +1 -1
- package/front_end/core/platform/Timing.ts +1 -1
- package/front_end/core/platform/TypedArrayUtilities.ts +1 -1
- package/front_end/core/platform/TypescriptUtilities.ts +1 -1
- package/front_end/core/platform/UIString.ts +1 -1
- package/front_end/core/platform/UserVisibleError.ts +1 -1
- package/front_end/core/platform/platform.ts +3 -29
- package/front_end/core/protocol_client/InspectorBackend.ts +3 -29
- package/front_end/core/protocol_client/NodeURL.ts +1 -1
- package/front_end/core/protocol_client/protocol_client.ts +1 -1
- package/front_end/core/root/Runtime.ts +1 -1
- package/front_end/core/root/root.ts +1 -1
- package/front_end/core/sdk/AccessibilityModel.ts +1 -1
- package/front_end/core/sdk/AnimationModel.ts +1 -1
- package/front_end/core/sdk/AutofillModel.ts +1 -1
- package/front_end/core/sdk/CPUProfilerModel.ts +3 -29
- package/front_end/core/sdk/CPUThrottlingManager.ts +1 -1
- package/front_end/core/sdk/CSSContainerQuery.ts +1 -1
- package/front_end/core/sdk/CSSFontFace.ts +1 -1
- package/front_end/core/sdk/CSSLayer.ts +1 -1
- package/front_end/core/sdk/CSSMatchedStyles.ts +17 -11
- package/front_end/core/sdk/CSSMedia.ts +1 -1
- package/front_end/core/sdk/CSSMetadata.ts +1 -1
- package/front_end/core/sdk/CSSModel.ts +1 -1
- package/front_end/core/sdk/CSSProperty.ts +1 -1
- package/front_end/core/sdk/CSSPropertyParser.ts +1 -1
- package/front_end/core/sdk/CSSPropertyParserMatchers.ts +2 -3
- package/front_end/core/sdk/CSSQuery.ts +1 -1
- package/front_end/core/sdk/CSSRule.ts +1 -1
- package/front_end/core/sdk/CSSScope.ts +1 -1
- package/front_end/core/sdk/CSSStyleDeclaration.ts +1 -1
- package/front_end/core/sdk/CSSStyleSheetHeader.ts +1 -1
- package/front_end/core/sdk/CSSSupports.ts +1 -1
- package/front_end/core/sdk/CategorizedBreakpoint.ts +1 -1
- package/front_end/core/sdk/ChildTargetManager.ts +1 -1
- package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +3 -29
- package/front_end/core/sdk/Connections.ts +5 -3
- package/front_end/core/sdk/ConsoleModel.ts +3 -29
- package/front_end/core/sdk/ConsoleModelTypes.ts +1 -1
- package/front_end/core/sdk/Cookie.ts +1 -1
- package/front_end/core/sdk/CookieModel.ts +1 -1
- package/front_end/core/sdk/CookieParser.ts +3 -29
- package/front_end/core/sdk/DOMDebuggerModel.ts +1 -1
- package/front_end/core/sdk/DOMModel.ts +1 -1
- package/front_end/core/sdk/DebuggerModel.ts +1 -1
- package/front_end/core/sdk/EmulationModel.ts +1 -1
- package/front_end/core/sdk/EnhancedTracesParser.ts +1 -1
- package/front_end/core/sdk/EventBreakpointsModel.ts +1 -1
- package/front_end/core/sdk/FrameAssociated.ts +1 -1
- package/front_end/core/sdk/FrameManager.ts +1 -1
- package/front_end/core/sdk/HeapProfilerModel.ts +1 -1
- package/front_end/core/sdk/HttpReasonPhraseStrings.ts +1 -1
- package/front_end/core/sdk/IOModel.ts +1 -1
- package/front_end/core/sdk/IsolateManager.ts +1 -1
- package/front_end/core/sdk/IssuesModel.ts +1 -1
- package/front_end/core/sdk/LayerTreeBase.ts +1 -1
- package/front_end/core/sdk/LogModel.ts +1 -1
- package/front_end/core/sdk/NetworkManager.ts +48 -1
- package/front_end/core/sdk/NetworkRequest.ts +1 -1
- package/front_end/core/sdk/OverlayColorGenerator.ts +1 -1
- package/front_end/core/sdk/OverlayModel.ts +1 -1
- package/front_end/core/sdk/OverlayPersistentHighlighter.ts +1 -1
- package/front_end/core/sdk/PageLoad.ts +1 -1
- package/front_end/core/sdk/PageResourceLoader.ts +1 -1
- package/front_end/core/sdk/PaintProfiler.ts +3 -29
- package/front_end/core/sdk/PerformanceMetricsModel.ts +1 -1
- package/front_end/core/sdk/PreloadingModel.ts +1 -1
- package/front_end/core/sdk/RehydratingConnection.ts +2 -1
- package/front_end/core/sdk/RehydratingObject.ts +3 -1
- package/front_end/core/sdk/RemoteObject.ts +1 -1
- package/front_end/core/sdk/Resource.ts +1 -1
- package/front_end/core/sdk/ResourceTreeModel.ts +1 -1
- package/front_end/core/sdk/RuntimeModel.ts +1 -1
- package/front_end/core/sdk/SDKModel.ts +1 -1
- package/front_end/core/sdk/ScreenCaptureModel.ts +1 -1
- package/front_end/core/sdk/Script.ts +5 -1
- package/front_end/core/sdk/SecurityOriginManager.ts +1 -1
- package/front_end/core/sdk/ServerSentEvents.ts +1 -1
- package/front_end/core/sdk/ServerSentEventsProtocol.ts +1 -1
- package/front_end/core/sdk/ServerTiming.ts +1 -1
- package/front_end/core/sdk/ServiceWorkerCacheModel.ts +1 -1
- package/front_end/core/sdk/ServiceWorkerManager.ts +1 -1
- package/front_end/core/sdk/SourceMap.ts +1 -1
- package/front_end/core/sdk/SourceMapFunctionRanges.ts +1 -1
- package/front_end/core/sdk/SourceMapManager.ts +1 -1
- package/front_end/core/sdk/SourceMapScopeChainEntry.ts +1 -1
- package/front_end/core/sdk/SourceMapScopesInfo.ts +1 -1
- package/front_end/core/sdk/StorageBucketsModel.ts +3 -29
- package/front_end/core/sdk/StorageKeyManager.ts +1 -1
- package/front_end/core/sdk/Target.ts +1 -1
- package/front_end/core/sdk/TargetManager.ts +19 -1
- package/front_end/core/sdk/TraceObject.ts +1 -1
- package/front_end/core/sdk/WebAuthnModel.ts +1 -1
- package/front_end/core/sdk/sdk-meta.ts +1 -1
- package/front_end/core/sdk/sdk.ts +3 -1
- package/front_end/design_system_tokens.css +1 -1
- package/front_end/devtools_compatibility.js +1 -1
- package/front_end/emulated_devices/optimized/optimized_images.gni +1 -1
- package/front_end/entrypoint_template.html +1 -1
- package/front_end/entrypoints/device_mode_emulation_frame/device_mode_emulation_frame.ts +1 -1
- package/front_end/entrypoints/devtools_app/devtools_app.ts +1 -1
- package/front_end/entrypoints/formatter_worker/AcornTokenizer.ts +1 -1
- package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +3 -29
- package/front_end/entrypoints/formatter_worker/CSSRuleParser.ts +1 -1
- package/front_end/entrypoints/formatter_worker/ESTreeWalker.ts +1 -1
- package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.ts +1 -1
- package/front_end/entrypoints/formatter_worker/FormatterActions.ts +1 -1
- package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +3 -29
- package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +1 -1
- package/front_end/entrypoints/formatter_worker/IdentityFormatter.ts +1 -1
- package/front_end/entrypoints/formatter_worker/JSONFormatter.ts +1 -1
- package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +3 -29
- package/front_end/entrypoints/formatter_worker/ScopeParser.ts +1 -1
- package/front_end/entrypoints/formatter_worker/Substitute.ts +1 -1
- package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +1 -1
- package/front_end/entrypoints/formatter_worker/formatter_worker.ts +1 -1
- package/front_end/entrypoints/heap_snapshot_worker/AllocationProfile.ts +3 -29
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +3 -29
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotLoader.ts +3 -29
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.ts +3 -29
- package/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker-entrypoint.ts +1 -1
- package/front_end/entrypoints/heap_snapshot_worker/heap_snapshot_worker.ts +1 -1
- package/front_end/entrypoints/inspector/inspector.ts +1 -1
- package/front_end/entrypoints/inspector_main/InspectorMain.ts +1 -1
- package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +1 -1
- package/front_end/entrypoints/inspector_main/RenderingOptions.ts +3 -29
- package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +1 -1
- package/front_end/entrypoints/inspector_main/inspector_main.ts +1 -1
- package/front_end/entrypoints/inspector_main/nodeIcon.css +1 -1
- package/front_end/entrypoints/inspector_main/outermostTargetSelector.css +1 -1
- package/front_end/entrypoints/inspector_main/renderingOptions.css +1 -1
- package/front_end/entrypoints/js_app/js_app.ts +1 -1
- package/front_end/entrypoints/lighthouse_worker/LighthouseWorkerService.ts +1 -1
- package/front_end/entrypoints/lighthouse_worker/lighthouse_worker.ts +1 -1
- package/front_end/entrypoints/main/ExecutionContextSelector.ts +1 -1
- package/front_end/entrypoints/main/GlobalAiButton.ts +1 -1
- package/front_end/entrypoints/main/MainImpl.ts +1 -1
- package/front_end/entrypoints/main/SimpleApp.ts +1 -1
- package/front_end/entrypoints/main/globalAiButton.css +1 -1
- package/front_end/entrypoints/main/main-meta.ts +1 -1
- package/front_end/entrypoints/main/main.ts +1 -1
- package/front_end/entrypoints/ndb_app/ndb_app.ts +1 -1
- package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +1 -1
- package/front_end/entrypoints/node_app/NodeMain.ts +1 -1
- package/front_end/entrypoints/node_app/nodeConnectionsPanel.css +1 -1
- package/front_end/entrypoints/node_app/node_app.ts +1 -1
- package/front_end/entrypoints/rehydrated_devtools_app/rehydrated_devtools_app.ts +1 -1
- package/front_end/entrypoints/shell/shell.ts +1 -1
- package/front_end/entrypoints/visibility.gni +1 -1
- package/front_end/entrypoints/wasmparser_worker/WasmParserWorker.ts +3 -29
- package/front_end/entrypoints/wasmparser_worker/wasmparser_worker-entrypoint.ts +1 -1
- package/front_end/entrypoints/wasmparser_worker/wasmparser_worker.ts +1 -1
- package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
- package/front_end/entrypoints/worker_app/worker_app.ts +1 -1
- package/front_end/generated/ARIAProperties.js +1 -1
- package/front_end/generated/Deprecation.ts +1 -1
- package/front_end/generated/InspectorBackendCommands.js +3 -3
- package/front_end/generated/SupportedCSSProperties.js +4 -4
- package/front_end/generated/protocol-mapping.d.ts +1 -1
- package/front_end/generated/protocol-proxy-api.d.ts +1 -1
- package/front_end/generated/protocol.ts +22 -4
- package/front_end/global_typings/global_defs.d.ts +16 -2
- package/front_end/legacy/legacy-defs.d.ts +1 -1
- package/front_end/models/ai_assistance/AgentProject.ts +1 -1
- package/front_end/models/ai_assistance/AiHistoryStorage.ts +1 -1
- package/front_end/models/ai_assistance/AiUtils.ts +1 -1
- package/front_end/models/ai_assistance/ChangeManager.ts +1 -1
- package/front_end/models/ai_assistance/ConversationHandler.ts +1 -1
- package/front_end/models/ai_assistance/EvaluateAction.ts +1 -1
- package/front_end/models/ai_assistance/ExtensionScope.ts +1 -1
- package/front_end/models/ai_assistance/agents/AiAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/FileAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/NetworkAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/PatchAgent.ts +1 -1
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +60 -197
- package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.ts +77 -9
- package/front_end/models/ai_assistance/agents/StylingAgent.ts +1 -1
- package/front_end/models/ai_assistance/ai_assistance.ts +4 -1
- package/front_end/models/ai_assistance/data_formatters/FileFormatter.ts +1 -1
- package/front_end/models/ai_assistance/data_formatters/NetworkRequestFormatter.ts +1 -1
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +1 -1
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +77 -2
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +83 -20
- package/front_end/models/ai_assistance/debug.ts +1 -1
- package/front_end/models/ai_assistance/injected.ts +1 -1
- package/front_end/{panels/timeline/utils → models/ai_assistance/performance}/AICallTree.ts +6 -9
- package/front_end/{panels/timeline/utils → models/ai_assistance/performance}/AIContext.ts +28 -7
- package/front_end/{panels/timeline/utils/InsightAIContext.ts → models/ai_assistance/performance/AIQueries.ts} +1 -1
- package/front_end/models/ai_code_completion/AiCodeCompletion.ts +1 -1
- package/front_end/models/ai_code_completion/ai_code_completion.ts +1 -1
- package/front_end/models/autofill_manager/AutofillManager.ts +1 -1
- package/front_end/models/autofill_manager/autofill_manager.ts +1 -1
- package/front_end/models/badges/Badge.ts +2 -1
- package/front_end/models/badges/StarterBadge.ts +1 -0
- package/front_end/models/bindings/CSSWorkspaceBinding.ts +1 -1
- package/front_end/models/bindings/CompilerScriptMapping.ts +3 -29
- package/front_end/models/bindings/ContentProviderBasedProject.ts +3 -29
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +1 -1
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -1
- package/front_end/models/bindings/DefaultScriptMapping.ts +3 -29
- package/front_end/models/bindings/FileUtils.ts +3 -29
- package/front_end/models/bindings/LiveLocation.ts +1 -1
- package/front_end/models/bindings/NetworkProject.ts +3 -29
- package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +3 -29
- package/front_end/models/bindings/ResourceMapping.ts +1 -1
- package/front_end/models/bindings/ResourceScriptMapping.ts +3 -29
- package/front_end/models/bindings/ResourceUtils.ts +1 -1
- package/front_end/models/bindings/SASSSourceMapping.ts +3 -29
- package/front_end/models/bindings/StylesSourceMapping.ts +3 -29
- package/front_end/models/bindings/TempFile.ts +3 -29
- package/front_end/models/bindings/bindings.ts +1 -1
- package/front_end/models/breakpoints/BreakpointManager.ts +3 -29
- package/front_end/models/breakpoints/breakpoints.ts +1 -1
- package/front_end/models/cpu_profile/CPUProfileDataModel.ts +1 -1
- package/front_end/models/cpu_profile/ProfileTreeModel.ts +2 -2
- package/front_end/models/cpu_profile/cpu_profile.ts +1 -1
- package/front_end/models/crux-manager/CrUXManager.ts +1 -1
- package/front_end/models/crux-manager/crux-manager.ts +1 -1
- package/front_end/models/elements/ElementUpdateRecord.ts +1 -1
- package/front_end/models/elements/elements.ts +1 -1
- package/front_end/models/emulation/DeviceModeModel.ts +1 -1
- package/front_end/models/emulation/EmulatedDevices.ts +1 -1
- package/front_end/models/emulation/emulation.ts +1 -1
- package/front_end/models/extensions/ExtensionAPI.ts +3 -29
- package/front_end/models/extensions/ExtensionEndpoint.ts +1 -1
- package/front_end/models/extensions/ExtensionPanel.ts +7 -29
- package/front_end/models/extensions/ExtensionServer.ts +3 -29
- package/front_end/models/extensions/ExtensionView.ts +3 -29
- package/front_end/models/extensions/HostUrlPattern.ts +1 -1
- package/front_end/models/extensions/LanguageExtensionEndpoint.ts +1 -1
- package/front_end/models/extensions/RecorderExtensionEndpoint.ts +1 -1
- package/front_end/models/extensions/RecorderPluginManager.ts +1 -1
- package/front_end/models/extensions/extensions.ts +1 -1
- package/front_end/models/formatter/FormatterWorkerPool.ts +1 -1
- package/front_end/models/formatter/ScriptFormatter.ts +3 -29
- package/front_end/models/formatter/formatter.ts +1 -1
- package/front_end/models/geometry/GeometryImpl.ts +3 -29
- package/front_end/models/geometry/geometry.ts +1 -1
- package/front_end/models/har/HARFormat.ts +1 -1
- package/front_end/models/har/Importer.ts +1 -1
- package/front_end/models/har/Log.ts +3 -29
- package/front_end/models/har/Writer.ts +1 -1
- package/front_end/models/har/har.ts +1 -1
- package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +8 -30
- package/front_end/models/heap_snapshot_model/heap_snapshot_model.ts +1 -1
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +1 -1
- package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -1
- package/front_end/models/issues_manager/CheckFormsIssuesTrigger.ts +1 -1
- package/front_end/models/issues_manager/ClientHintIssue.ts +1 -1
- package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +1 -1
- package/front_end/models/issues_manager/ContrastCheckTrigger.ts +1 -1
- package/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts +1 -1
- package/front_end/models/issues_manager/CookieIssue.ts +1 -1
- package/front_end/models/issues_manager/CorsIssue.ts +1 -1
- package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +1 -1
- package/front_end/models/issues_manager/DeprecationIssue.ts +1 -1
- package/front_end/models/issues_manager/ElementAccessibilityIssue.ts +1 -1
- 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 +1 -1
- package/front_end/models/issues_manager/HeavyAdIssue.ts +1 -1
- package/front_end/models/issues_manager/Issue.ts +1 -1
- package/front_end/models/issues_manager/IssueResolver.ts +1 -1
- package/front_end/models/issues_manager/IssuesManager.ts +1 -1
- package/front_end/models/issues_manager/IssuesManagerEvents.ts +1 -1
- 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 +1 -1
- package/front_end/models/issues_manager/PropertyRuleIssue.ts +1 -1
- package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
- package/front_end/models/issues_manager/RelatedIssue.ts +1 -1
- package/front_end/models/issues_manager/SRIMessageSignatureIssue.ts +1 -1
- 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/SourceFrameIssuesManager.ts +1 -1
- package/front_end/models/issues_manager/StylesheetLoadingIssue.ts +1 -1
- package/front_end/models/issues_manager/UnencodedDigestIssue.ts +1 -1
- package/front_end/models/issues_manager/UserReidentificationIssue.ts +1 -1
- package/front_end/models/issues_manager/issues_manager.ts +1 -1
- package/front_end/models/javascript_metadata/JavaScriptMetadata.ts +1 -1
- package/front_end/models/javascript_metadata/NativeFunctions.js +18 -13
- package/front_end/models/javascript_metadata/javascript_metadata.ts +1 -1
- package/front_end/models/live-metrics/LiveMetrics.ts +8 -2
- package/front_end/models/live-metrics/live-metrics.ts +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/OnEachLayoutShift.ts +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/rollup.config.mjs +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +1 -1
- package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +1 -1
- package/front_end/models/logs/LogManager.ts +1 -1
- package/front_end/models/logs/NetworkLog.ts +3 -29
- package/front_end/models/logs/RequestResolver.ts +1 -1
- package/front_end/models/logs/logs-meta.ts +1 -1
- package/front_end/models/logs/logs.ts +1 -1
- package/front_end/models/network_time_calculator/Calculator.ts +1 -1
- package/front_end/models/network_time_calculator/NetworkTimeCalculator.ts +1 -1
- package/front_end/models/network_time_calculator/RequestTimeRanges.ts +1 -1
- package/front_end/models/network_time_calculator/network_time_calculator.ts +1 -1
- package/front_end/models/persistence/Automapping.ts +1 -1
- package/front_end/models/persistence/AutomaticFileSystemManager.ts +1 -1
- package/front_end/models/persistence/AutomaticFileSystemWorkspaceBinding.ts +1 -1
- package/front_end/models/persistence/EditFileSystemView.ts +3 -29
- package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +3 -29
- package/front_end/models/persistence/IsolatedFileSystem.ts +3 -29
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +3 -29
- package/front_end/models/persistence/NetworkPersistenceManager.ts +1 -1
- package/front_end/models/persistence/PersistenceActions.ts +1 -1
- package/front_end/models/persistence/PersistenceImpl.ts +1 -1
- package/front_end/models/persistence/PersistenceUtils.ts +1 -1
- package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
- package/front_end/models/persistence/editFileSystemView.css +1 -1
- package/front_end/models/persistence/persistence-meta.ts +1 -22
- package/front_end/models/persistence/persistence.ts +1 -3
- package/front_end/models/project_settings/ProjectSettingsModel.ts +1 -1
- package/front_end/models/project_settings/project_settings.ts +1 -1
- package/front_end/models/source_map_scopes/NamesResolver.ts +1 -1
- package/front_end/models/source_map_scopes/ScopeChainModel.ts +1 -1
- package/front_end/models/source_map_scopes/ScopeTreeCache.ts +1 -1
- package/front_end/models/source_map_scopes/source_map_scopes.ts +1 -1
- package/front_end/models/stack_trace/StackTrace.ts +1 -1
- package/front_end/models/stack_trace/StackTraceImpl.ts +1 -1
- package/front_end/models/stack_trace/Trie.ts +1 -1
- package/front_end/models/stack_trace/stack_trace.ts +1 -1
- package/front_end/models/stack_trace/stack_trace_impl.ts +1 -1
- package/front_end/models/text_utils/CodeMirrorUtils.ts +3 -29
- package/front_end/models/text_utils/ContentData.ts +7 -2
- package/front_end/models/text_utils/ContentProvider.ts +3 -29
- package/front_end/models/text_utils/StaticContentProvider.ts +1 -1
- package/front_end/models/text_utils/StreamingContentData.ts +1 -1
- package/front_end/models/text_utils/Text.ts +1 -1
- package/front_end/models/text_utils/TextCursor.ts +1 -1
- package/front_end/models/text_utils/TextRange.ts +3 -29
- package/front_end/models/text_utils/TextUtils.ts +3 -29
- package/front_end/models/text_utils/WasmDisassembly.ts +1 -1
- package/front_end/models/text_utils/text_utils.ts +1 -1
- package/front_end/{panels/timeline/utils → models/trace}/EntityMapper.ts +27 -24
- package/front_end/models/trace/EventsSerializer.ts +1 -1
- package/front_end/models/trace/LanternComputationData.ts +1 -1
- package/front_end/models/trace/ModelImpl.ts +1 -1
- package/front_end/{panels/timeline/utils/EntryName.ts → models/trace/Name.ts} +24 -22
- package/front_end/models/trace/Processor.ts +1 -1
- package/front_end/{panels/timeline/utils/EntryStyles.ts → models/trace/Styles.ts} +160 -185
- package/front_end/models/trace/extras/FilmStrip.ts +1 -1
- package/front_end/models/trace/extras/MainThreadActivity.ts +1 -1
- package/front_end/models/trace/extras/ScriptDuplication.ts +1 -1
- package/front_end/models/trace/extras/StackTraceForEvent.ts +1 -1
- package/front_end/models/trace/extras/ThirdParties.ts +1 -1
- package/front_end/models/trace/extras/TraceFilter.ts +1 -1
- package/front_end/models/trace/extras/TraceTree.ts +1 -1
- package/front_end/models/trace/extras/extras.ts +1 -1
- package/front_end/models/trace/handlers/AnimationFramesHandler.ts +1 -1
- package/front_end/models/trace/handlers/AnimationHandler.ts +1 -1
- package/front_end/models/trace/handlers/AsyncJSCallsHandler.ts +1 -1
- package/front_end/models/trace/handlers/AuctionWorkletsHandler.ts +1 -1
- package/front_end/models/trace/handlers/DOMStatsHandler.ts +1 -1
- package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +1 -1
- package/front_end/models/trace/handlers/FlowsHandler.ts +1 -1
- package/front_end/models/trace/handlers/FramesHandler.ts +1 -1
- package/front_end/models/trace/handlers/GPUHandler.ts +1 -1
- package/front_end/models/trace/handlers/ImagePaintingHandler.ts +1 -1
- package/front_end/models/trace/handlers/InitiatorsHandler.ts +17 -24
- package/front_end/models/trace/handlers/InvalidationsHandler.ts +81 -48
- package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +1 -1
- package/front_end/models/trace/handlers/LargestTextPaintHandler.ts +1 -1
- package/front_end/models/trace/handlers/LayerTreeHandler.ts +1 -1
- package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +1 -1
- package/front_end/models/trace/handlers/MemoryHandler.ts +1 -1
- package/front_end/models/trace/handlers/MetaHandler.ts +1 -1
- package/front_end/models/trace/handlers/ModelHandlers.ts +1 -1
- package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +2 -2
- package/front_end/models/trace/handlers/PageFramesHandler.ts +1 -1
- package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +1 -1
- package/front_end/models/trace/handlers/RendererHandler.ts +5 -5
- package/front_end/models/trace/handlers/SamplesHandler.ts +1 -1
- package/front_end/models/trace/handlers/ScreenshotsHandler.ts +1 -1
- package/front_end/models/trace/handlers/ScriptsHandler.ts +1 -1
- package/front_end/models/trace/handlers/SelectorStatsHandler.ts +13 -13
- package/front_end/models/trace/handlers/Threads.ts +1 -1
- package/front_end/models/trace/handlers/UserInteractionsHandler.ts +1 -1
- package/front_end/models/trace/handlers/UserTimingsHandler.ts +1 -1
- package/front_end/models/trace/handlers/WarningsHandler.ts +2 -2
- package/front_end/models/trace/handlers/WorkersHandler.ts +1 -1
- package/front_end/models/trace/handlers/handlers.ts +1 -1
- package/front_end/models/trace/handlers/helpers.ts +1 -1
- package/front_end/models/trace/handlers/types.ts +1 -1
- package/front_end/models/trace/helpers/Extensions.ts +1 -1
- package/front_end/models/trace/helpers/Network.ts +1 -1
- package/front_end/models/trace/helpers/SamplesIntegrator.ts +1 -1
- package/front_end/models/trace/helpers/SyntheticEvents.ts +1 -1
- package/front_end/models/trace/helpers/Timing.ts +1 -1
- package/front_end/models/trace/helpers/Trace.ts +52 -23
- package/front_end/models/trace/helpers/TreeHelpers.ts +1 -1
- package/front_end/models/trace/helpers/helpers.ts +1 -1
- package/front_end/models/trace/insights/CLSCulprits.ts +1 -1
- package/front_end/models/trace/insights/Cache.ts +1 -1
- package/front_end/models/trace/insights/Common.ts +1 -1
- package/front_end/models/trace/insights/DOMSize.ts +5 -5
- package/front_end/models/trace/insights/DocumentLatency.ts +1 -1
- package/front_end/models/trace/insights/DuplicatedJavaScript.ts +1 -1
- package/front_end/models/trace/insights/FontDisplay.ts +1 -1
- package/front_end/models/trace/insights/ForcedReflow.ts +3 -3
- package/front_end/models/trace/insights/INPBreakdown.ts +1 -1
- package/front_end/models/trace/insights/ImageDelivery.ts +1 -1
- package/front_end/models/trace/insights/LCPBreakdown.ts +1 -1
- package/front_end/models/trace/insights/LCPDiscovery.ts +1 -1
- package/front_end/models/trace/insights/LegacyJavaScript.ts +1 -1
- package/front_end/models/trace/insights/Models.ts +1 -1
- package/front_end/models/trace/insights/ModernHTTP.ts +1 -1
- package/front_end/models/trace/insights/NetworkDependencyTree.ts +2 -2
- package/front_end/models/trace/insights/RenderBlocking.ts +1 -1
- package/front_end/models/trace/insights/SlowCSSSelector.ts +3 -3
- package/front_end/models/trace/insights/Statistics.ts +1 -1
- package/front_end/models/trace/insights/ThirdParties.ts +1 -1
- package/front_end/models/trace/insights/Viewport.ts +1 -1
- package/front_end/models/trace/insights/insights.ts +3 -1
- package/front_end/models/trace/insights/types.ts +1 -1
- package/front_end/models/trace/lantern/core/LanternError.ts +1 -1
- package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +1 -1
- package/front_end/models/trace/lantern/core/core.ts +1 -1
- package/front_end/models/trace/lantern/graph/BaseNode.ts +1 -1
- package/front_end/models/trace/lantern/graph/CPUNode.ts +1 -1
- package/front_end/models/trace/lantern/graph/NetworkNode.ts +1 -1
- package/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +1 -1
- package/front_end/models/trace/lantern/graph/graph.ts +1 -1
- package/front_end/models/trace/lantern/lantern.ts +1 -1
- package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.ts +1 -1
- package/front_end/models/trace/lantern/metrics/Interactive.ts +1 -1
- package/front_end/models/trace/lantern/metrics/LargestContentfulPaint.ts +1 -1
- package/front_end/models/trace/lantern/metrics/MaxPotentialFID.ts +1 -1
- package/front_end/models/trace/lantern/metrics/Metric.ts +1 -1
- package/front_end/models/trace/lantern/metrics/SpeedIndex.ts +1 -1
- package/front_end/models/trace/lantern/metrics/TBTUtils.ts +1 -1
- package/front_end/models/trace/lantern/metrics/TotalBlockingTime.ts +1 -1
- package/front_end/models/trace/lantern/metrics/metrics.ts +1 -1
- package/front_end/models/trace/lantern/simulation/ConnectionPool.ts +1 -1
- package/front_end/models/trace/lantern/simulation/Constants.ts +1 -1
- package/front_end/models/trace/lantern/simulation/DNSCache.ts +1 -1
- package/front_end/models/trace/lantern/simulation/SimulationTimingMap.ts +1 -1
- package/front_end/models/trace/lantern/simulation/Simulator.ts +1 -1
- package/front_end/models/trace/lantern/simulation/TCPConnection.ts +1 -1
- package/front_end/models/trace/lantern/simulation/simulation.ts +1 -1
- package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +1 -1
- package/front_end/models/trace/lantern/testing/testing.ts +1 -1
- package/front_end/models/trace/lantern/types/Lantern.ts +1 -1
- package/front_end/models/trace/lantern/types/types.ts +1 -1
- package/front_end/models/trace/trace.ts +7 -1
- package/front_end/models/trace/types/Configuration.ts +1 -1
- package/front_end/models/trace/types/Extensions.ts +1 -1
- package/front_end/models/trace/types/File.ts +1 -1
- package/front_end/models/trace/types/Overlays.ts +1 -1
- package/front_end/models/trace/types/Timing.ts +1 -1
- package/front_end/models/trace/types/TraceEvents.ts +9 -6
- package/front_end/models/trace/types/types.ts +1 -1
- package/front_end/{panels/timeline/utils → models/trace_source_maps_resolver}/SourceMapsResolver.ts +13 -15
- package/front_end/models/trace_source_maps_resolver/trace_source_maps_resolver.ts +5 -0
- package/front_end/models/visibility.gni +1 -1
- package/front_end/models/workspace/FileManager.ts +3 -29
- package/front_end/models/workspace/IgnoreListManager.ts +1 -1
- package/front_end/models/workspace/SearchConfig.ts +1 -1
- package/front_end/models/workspace/UISourceCode.ts +3 -29
- package/front_end/models/workspace/WorkspaceImpl.ts +3 -29
- package/front_end/models/workspace/workspace.ts +1 -1
- package/front_end/models/workspace_diff/WorkspaceDiff.ts +1 -1
- package/front_end/models/workspace_diff/workspace_diff.ts +1 -1
- package/front_end/panels/accessibility/ARIAAttributesView.ts +1 -1
- package/front_end/panels/accessibility/ARIAMetadata.ts +1 -1
- package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +1 -1
- package/front_end/panels/accessibility/AccessibilityNodeView.ts +1 -1
- package/front_end/panels/accessibility/AccessibilitySidebarView.ts +1 -1
- package/front_end/panels/accessibility/AccessibilityStrings.ts +1 -1
- package/front_end/panels/accessibility/AccessibilitySubPane.ts +1 -1
- package/front_end/panels/accessibility/SourceOrderView.ts +1 -1
- package/front_end/panels/accessibility/accessibility-meta.ts +1 -1
- package/front_end/panels/accessibility/accessibility.ts +1 -1
- package/front_end/panels/accessibility/accessibilityNode.css +1 -1
- package/front_end/panels/accessibility/accessibilityProperties.css +1 -1
- package/front_end/panels/accessibility/axBreadcrumbs.css +1 -1
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +7 -8
- package/front_end/panels/ai_assistance/PatchWidget.ts +1 -1
- package/front_end/panels/ai_assistance/SelectWorkspaceDialog.ts +1 -1
- package/front_end/panels/ai_assistance/aiAssistancePanel.css +1 -1
- package/front_end/panels/ai_assistance/ai_assistance-meta.ts +1 -1
- package/front_end/panels/ai_assistance/ai_assistance.ts +1 -1
- package/front_end/panels/ai_assistance/components/ChatView.ts +2 -3
- package/front_end/panels/ai_assistance/components/ExploreWidget.ts +1 -1
- package/front_end/panels/ai_assistance/components/MarkdownRendererWithCodeBlock.ts +1 -1
- package/front_end/panels/ai_assistance/components/UserActionRow.ts +1 -1
- package/front_end/panels/ai_assistance/components/chatView.css +1 -1
- package/front_end/panels/ai_assistance/components/exploreWidget.css +1 -1
- package/front_end/panels/ai_assistance/components/userActionRow.css +1 -1
- package/front_end/panels/ai_assistance/selectWorkspaceDialog.css +1 -1
- package/front_end/panels/animation/AnimationGroupPreviewUI.ts +1 -1
- package/front_end/panels/animation/AnimationTimeline.ts +1 -1
- package/front_end/panels/animation/AnimationUI.ts +1 -1
- package/front_end/panels/animation/animation-meta.ts +1 -1
- package/front_end/panels/animation/animation.ts +1 -1
- package/front_end/panels/animation/animationTimeline.css +1 -1
- package/front_end/panels/application/AppManifestView.ts +1 -1
- package/front_end/panels/application/ApplicationPanelSidebar.ts +1 -1
- package/front_end/panels/application/ApplicationPanelTreeElement.ts +1 -1
- package/front_end/panels/application/BackForwardCacheTreeElement.ts +1 -1
- package/front_end/panels/application/BackgroundServiceModel.ts +1 -1
- package/front_end/panels/application/BackgroundServiceView.ts +1 -1
- package/front_end/panels/application/BounceTrackingMitigationsTreeElement.ts +1 -1
- package/front_end/panels/application/CookieItemsView.ts +1 -1
- package/front_end/panels/application/DOMStorageItemsView.ts +1 -1
- package/front_end/panels/application/DOMStorageModel.ts +1 -1
- package/front_end/panels/application/ExtensionStorageItemsView.ts +1 -1
- package/front_end/panels/application/ExtensionStorageModel.ts +1 -1
- package/front_end/panels/application/IndexedDBModel.ts +7 -31
- package/front_end/panels/application/IndexedDBViews.ts +3 -29
- package/front_end/panels/application/InterestGroupStorageModel.ts +3 -29
- package/front_end/panels/application/InterestGroupStorageView.ts +1 -1
- package/front_end/panels/application/InterestGroupTreeElement.ts +1 -1
- package/front_end/panels/application/KeyValueStorageItemsView.ts +1 -1
- package/front_end/panels/application/OpenedWindowDetailsView.ts +1 -1
- package/front_end/panels/application/PreloadingTreeElement.ts +1 -1
- package/front_end/panels/application/ReportingApiTreeElement.ts +1 -1
- package/front_end/panels/application/ReportingApiView.ts +1 -1
- package/front_end/panels/application/ResourcesPanel.ts +1 -1
- package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +1 -1
- package/front_end/panels/application/ServiceWorkerCacheViews.ts +1 -1
- package/front_end/panels/application/ServiceWorkerUpdateCycleView.ts +1 -1
- package/front_end/panels/application/ServiceWorkersView.ts +1 -1
- package/front_end/panels/application/SharedStorageEventsView.ts +1 -1
- package/front_end/panels/application/SharedStorageItemsView.ts +1 -1
- package/front_end/panels/application/SharedStorageListTreeElement.ts +1 -1
- package/front_end/panels/application/SharedStorageModel.ts +1 -1
- package/front_end/panels/application/SharedStorageTreeElement.ts +1 -1
- package/front_end/panels/application/StorageBucketsTreeElement.ts +1 -1
- package/front_end/panels/application/StorageItemsToolbar.ts +1 -1
- package/front_end/panels/application/StorageView.ts +1 -1
- package/front_end/panels/application/TrustTokensTreeElement.ts +1 -1
- package/front_end/panels/application/appManifestView.css +1 -1
- package/front_end/panels/application/application-meta.ts +1 -1
- package/front_end/panels/application/application.ts +1 -1
- package/front_end/panels/application/backgroundServiceView.css +1 -1
- package/front_end/panels/application/components/BackForwardCacheStrings.ts +1 -1
- package/front_end/panels/application/components/BackForwardCacheView.ts +1 -1
- package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +1 -1
- package/front_end/panels/application/components/EndpointsGrid.ts +1 -1
- package/front_end/panels/application/components/FrameDetailsView.ts +1 -1
- package/front_end/panels/application/components/InterestGroupAccessGrid.ts +1 -1
- package/front_end/panels/application/components/OriginTrialTreeView.ts +1 -1
- package/front_end/panels/application/components/PermissionsPolicySection.ts +1 -1
- package/front_end/panels/application/components/ProtocolHandlersView.ts +1 -1
- package/front_end/panels/application/components/ReportsGrid.ts +1 -1
- package/front_end/panels/application/components/ServiceWorkerRouterView.ts +1 -1
- package/front_end/panels/application/components/SharedStorageAccessGrid.ts +1 -1
- package/front_end/panels/application/components/SharedStorageMetadataView.ts +1 -1
- package/front_end/panels/application/components/StackTrace.ts +1 -1
- package/front_end/panels/application/components/StorageMetadataView.ts +1 -1
- package/front_end/panels/application/components/TrustTokensView.ts +1 -1
- package/front_end/panels/application/components/backForwardCacheView.css +1 -1
- package/front_end/panels/application/components/badge.css +1 -1
- package/front_end/panels/application/components/bounceTrackingMitigationsView.css +1 -1
- package/front_end/panels/application/components/components.ts +1 -1
- package/front_end/panels/application/components/frameDetailsReportView.css +1 -1
- package/front_end/panels/application/components/interestGroupAccessGrid.css +1 -1
- package/front_end/panels/application/components/originTrialTokenRows.css +1 -1
- package/front_end/panels/application/components/originTrialTreeView.css +1 -1
- package/front_end/panels/application/components/permissionsPolicySection.css +1 -1
- package/front_end/panels/application/components/protocolHandlersView.css +1 -1
- package/front_end/panels/application/components/reportingApiGrid.css +1 -1
- package/front_end/panels/application/components/serviceWorkerRouterView.css +1 -1
- package/front_end/panels/application/components/sharedStorageAccessGrid.css +1 -1
- package/front_end/panels/application/components/sharedStorageMetadataView.css +1 -1
- package/front_end/panels/application/components/stackTraceLinkButton.css +1 -1
- package/front_end/panels/application/components/stackTraceRow.css +1 -1
- package/front_end/panels/application/components/trustTokensView.css +1 -1
- package/front_end/panels/application/cookieItemsView.css +1 -1
- package/front_end/panels/application/indexedDBViews.css +3 -27
- package/front_end/panels/application/interestGroupStorageView.css +1 -1
- package/front_end/panels/application/openedWindowDetailsView.css +1 -1
- package/front_end/panels/application/preloading/PreloadingView.ts +1 -1
- package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +1 -1
- package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +1 -1
- package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +1 -1
- package/front_end/panels/application/preloading/components/PreloadingGrid.ts +1 -1
- package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +1 -1
- package/front_end/panels/application/preloading/components/PreloadingString.ts +1 -1
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.css +1 -1
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +1 -1
- package/front_end/panels/application/preloading/components/RuleSetGrid.ts +1 -1
- package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +1 -1
- package/front_end/panels/application/preloading/components/components.ts +1 -1
- package/front_end/panels/application/preloading/components/preloadingDetailsReportView.css +1 -1
- package/front_end/panels/application/preloading/components/preloadingDisabledInfobar.css +1 -1
- package/front_end/panels/application/preloading/components/preloadingGrid.css +1 -1
- package/front_end/panels/application/preloading/components/ruleSetGrid.css +1 -1
- package/front_end/panels/application/preloading/components/usedPreloadingView.css +1 -1
- package/front_end/panels/application/preloading/helper/PreloadingForward.ts +1 -1
- package/front_end/panels/application/preloading/helper/helper.ts +1 -1
- package/front_end/panels/application/preloading/preloadingView.css +1 -1
- package/front_end/panels/application/preloading/preloadingViewDropDown.css +1 -1
- package/front_end/panels/application/resourcesSidebar.css +1 -1
- package/front_end/panels/application/serviceWorkerCacheViews.css +1 -1
- package/front_end/panels/application/serviceWorkerUpdateCycleView.css +1 -1
- package/front_end/panels/application/serviceWorkersView.css +1 -1
- package/front_end/panels/application/sharedStorageEventsView.css +1 -1
- package/front_end/panels/application/storageView.css +1 -1
- package/front_end/panels/autofill/AutofillView.ts +1 -1
- package/front_end/panels/autofill/autofill-meta.ts +1 -1
- package/front_end/panels/autofill/autofill.ts +1 -1
- package/front_end/panels/autofill/autofillView.css +1 -1
- package/front_end/panels/browser_debugger/CSPViolationBreakpointsSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +3 -29
- package/front_end/panels/browser_debugger/EventListenerBreakpointsSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/ObjectEventListenersSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/browser_debugger-meta.ts +1 -1
- package/front_end/panels/browser_debugger/browser_debugger.ts +1 -1
- package/front_end/panels/browser_debugger/categorizedBreakpointsSidebarPane.css +1 -1
- package/front_end/panels/browser_debugger/domBreakpointsSidebarPane.css +1 -1
- package/front_end/panels/browser_debugger/xhrBreakpointsSidebarPane.css +1 -1
- package/front_end/panels/changes/ChangesSidebar.ts +1 -1
- package/front_end/panels/changes/ChangesView.ts +1 -1
- package/front_end/panels/changes/CombinedDiffView.ts +1 -1
- package/front_end/panels/changes/changes-meta.ts +1 -1
- package/front_end/panels/changes/changes.ts +1 -1
- package/front_end/panels/changes/changesSidebar.css +1 -1
- package/front_end/panels/changes/changesView.css +1 -1
- package/front_end/panels/changes/combinedDiffView.css +1 -1
- package/front_end/panels/common/AiCodeCompletionDisclaimer.ts +1 -1
- package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +1 -1
- package/front_end/panels/common/AiCodeCompletionTeaser.ts +1 -1
- package/front_end/panels/common/BadgeNotification.ts +31 -4
- package/front_end/panels/common/FreDialog.ts +1 -1
- package/front_end/panels/common/GdpSignUpDialog.ts +5 -8
- package/front_end/panels/common/aiCodeCompletionDisclaimer.css +1 -1
- package/front_end/panels/common/aiCodeCompletionSummaryToolbar.css +1 -1
- package/front_end/panels/common/aiCodeCompletionTeaser.css +1 -1
- package/front_end/panels/common/badgeNotification.css +1 -3
- package/front_end/panels/common/common.css +1 -1
- package/front_end/panels/common/common.ts +2 -2
- package/front_end/panels/common/freDialog.css +1 -1
- package/front_end/panels/common/gdpSignUpDialog.css +7 -15
- package/front_end/panels/console/ConsoleContextSelector.ts +1 -1
- package/front_end/panels/console/ConsoleFilter.ts +1 -1
- package/front_end/panels/console/ConsoleFormat.ts +5 -2
- package/front_end/panels/console/ConsolePanel.ts +1 -1
- package/front_end/panels/console/ConsolePinPane.ts +1 -1
- package/front_end/panels/console/ConsolePrompt.ts +3 -2
- package/front_end/panels/console/ConsoleSidebar.ts +1 -1
- package/front_end/panels/console/ConsoleView.ts +5 -1
- package/front_end/panels/console/ConsoleViewMessage.ts +1 -1
- package/front_end/panels/console/ConsoleViewport.ts +3 -29
- package/front_end/panels/console/ErrorStackParser.ts +1 -1
- package/front_end/panels/console/console-meta.ts +1 -1
- package/front_end/panels/console/console.ts +1 -1
- package/front_end/panels/console/consoleContextSelector.css +1 -1
- package/front_end/panels/console/consolePinPane.css +1 -1
- package/front_end/panels/console/consolePrompt.css +1 -1
- package/front_end/panels/console/consoleSidebar.css +1 -1
- package/front_end/panels/console_counters/WarningErrorCounter.ts +1 -1
- package/front_end/panels/console_counters/console_counters-meta.ts +1 -1
- package/front_end/panels/console_counters/console_counters.ts +1 -1
- package/front_end/panels/coverage/CoverageDecorationManager.ts +1 -1
- package/front_end/panels/coverage/CoverageListView.ts +1 -1
- package/front_end/panels/coverage/CoverageModel.ts +1 -1
- package/front_end/panels/coverage/CoverageView.ts +1 -1
- package/front_end/panels/coverage/coverage-meta.ts +1 -1
- package/front_end/panels/coverage/coverage.ts +1 -1
- package/front_end/panels/coverage/coverageListView.css +1 -1
- package/front_end/panels/coverage/coverageView.css +1 -1
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewModel.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewPanel.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewStartView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewUnusedDeclarations.ts +1 -1
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +1 -1
- package/front_end/panels/css_overview/cssOverviewProcessingView.css +1 -1
- package/front_end/panels/css_overview/cssOverviewSidebarPanel.css +1 -1
- package/front_end/panels/css_overview/cssOverviewStartView.css +1 -1
- package/front_end/panels/css_overview/css_overview-meta.ts +1 -1
- package/front_end/panels/css_overview/css_overview.ts +1 -1
- package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +1 -1
- package/front_end/panels/developer_resources/DeveloperResourcesView.ts +1 -1
- package/front_end/panels/developer_resources/developerResourcesListView.css +1 -1
- package/front_end/panels/developer_resources/developerResourcesView.css +1 -1
- package/front_end/panels/developer_resources/developer_resources-meta.ts +1 -1
- package/front_end/panels/developer_resources/developer_resources.ts +1 -1
- package/front_end/panels/elements/AccessibilityTreeUtils.ts +1 -1
- package/front_end/panels/elements/AccessibilityTreeView.ts +1 -1
- package/front_end/panels/elements/CSSRuleValidator.ts +1 -1
- package/front_end/panels/elements/CSSRuleValidatorHelper.ts +1 -1
- package/front_end/panels/elements/CSSValueTraceView.ts +1 -1
- package/front_end/panels/elements/ClassesPaneWidget.ts +1 -1
- package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +1 -1
- package/front_end/panels/elements/ComputedStyleModel.ts +1 -1
- package/front_end/panels/elements/ComputedStyleWidget.ts +1 -1
- package/front_end/panels/elements/DOMLinkifier.ts +1 -1
- package/front_end/panels/elements/DOMPath.ts +1 -1
- package/front_end/panels/elements/ElementIssueUtils.ts +1 -1
- package/front_end/panels/elements/ElementStatePaneWidget.ts +1 -1
- package/front_end/panels/elements/ElementsPanel.ts +5 -1
- package/front_end/panels/elements/ElementsSidebarPane.ts +1 -1
- package/front_end/panels/elements/ElementsTreeElement.ts +1 -1
- package/front_end/panels/elements/ElementsTreeOutline.ts +1 -1
- package/front_end/panels/elements/ElementsTreeOutlineRenderer.ts +1 -1
- package/front_end/panels/elements/EventListenersWidget.ts +1 -1
- package/front_end/panels/elements/ImagePreviewPopover.ts +1 -1
- package/front_end/panels/elements/InspectElementModeController.ts +3 -29
- package/front_end/panels/elements/LayersWidget.ts +1 -1
- package/front_end/panels/elements/LayoutPane.ts +1 -1
- package/front_end/panels/elements/MarkerDecorator.ts +1 -1
- package/front_end/panels/elements/MetricsSidebarPane.ts +1 -1
- package/front_end/panels/elements/NodeStackTraceWidget.ts +1 -1
- package/front_end/panels/elements/PlatformFontsWidget.ts +3 -29
- package/front_end/panels/elements/PropertiesWidget.ts +1 -1
- package/front_end/panels/elements/PropertyNameCategories.ts +1 -1
- package/front_end/panels/elements/PropertyRenderer.ts +1 -1
- package/front_end/panels/elements/ShortcutTreeElement.ts +1 -1
- package/front_end/panels/elements/StyleEditorWidget.ts +1 -1
- package/front_end/panels/elements/StylePropertiesSection.ts +5 -5
- package/front_end/panels/elements/StylePropertyHighlighter.ts +1 -1
- package/front_end/panels/elements/StylePropertyTreeElement.ts +1 -1
- package/front_end/panels/elements/StylePropertyUtils.ts +1 -1
- package/front_end/panels/elements/StylesSidebarPane.ts +1 -1
- package/front_end/panels/elements/TopLayerContainer.ts +1 -1
- package/front_end/panels/elements/WebCustomData.ts +1 -1
- package/front_end/panels/elements/accessibilityTreeView.css +1 -1
- package/front_end/panels/elements/classesPaneWidget.css +1 -1
- package/front_end/panels/elements/components/AccessibilityTreeNode.ts +1 -1
- package/front_end/panels/elements/components/AdornerManager.ts +1 -1
- package/front_end/panels/elements/components/CSSHintDetailsView.ts +1 -1
- package/front_end/panels/elements/components/CSSPropertyDocsView.ts +1 -1
- package/front_end/panels/elements/components/CSSPropertyIconResolver.ts +1 -1
- package/front_end/panels/elements/components/CSSQuery.ts +1 -1
- package/front_end/panels/elements/components/CSSVariableValueView.ts +1 -1
- package/front_end/panels/elements/components/ComputedStyleProperty.ts +1 -1
- package/front_end/panels/elements/components/ComputedStyleTrace.ts +1 -1
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +1 -1
- package/front_end/panels/elements/components/ElementsBreadcrumbsUtils.ts +1 -1
- package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +1 -1
- package/front_end/panels/elements/components/Helper.ts +1 -1
- package/front_end/panels/elements/components/QueryContainer.ts +1 -1
- package/front_end/panels/elements/components/StylePropertyEditor.ts +1 -1
- package/front_end/panels/elements/components/accessibilityTreeNode.css +1 -1
- package/front_end/panels/elements/components/components.ts +1 -1
- package/front_end/panels/elements/components/computedStyleProperty.css +1 -1
- package/front_end/panels/elements/components/computedStyleTrace.css +1 -1
- package/front_end/panels/elements/components/cssHintDetailsView.css +1 -1
- package/front_end/panels/elements/components/cssPropertyDocsView.css +1 -1
- package/front_end/panels/elements/components/cssQuery.css +1 -1
- package/front_end/panels/elements/components/cssVariableValueView.css +1 -1
- package/front_end/panels/elements/components/elementsBreadcrumbs.css +1 -1
- package/front_end/panels/elements/components/elementsTreeExpandButton.css +1 -1
- package/front_end/panels/elements/components/queryContainer.css +1 -1
- package/front_end/panels/elements/components/stylePropertyEditor.css +1 -1
- package/front_end/panels/elements/computedStyleSidebarPane.css +1 -1
- package/front_end/panels/elements/cssValueTraceView.css +1 -1
- package/front_end/panels/elements/domLinkifier.css +1 -1
- package/front_end/panels/elements/elementStatePaneWidget.css +1 -1
- package/front_end/panels/elements/elements-meta.ts +1 -1
- package/front_end/panels/elements/elements.ts +1 -1
- package/front_end/panels/elements/elementsTreeOutline.css +1 -1
- package/front_end/panels/elements/layersWidget.css +1 -1
- package/front_end/panels/elements/layoutPane.css +1 -1
- package/front_end/panels/elements/metricsSidebarPane.css +1 -1
- package/front_end/panels/elements/nodeStackTraceWidget.css +1 -1
- package/front_end/panels/elements/platformFontsWidget.css +1 -1
- package/front_end/panels/elements/propertiesWidget.css +1 -1
- package/front_end/panels/elements/stylePropertiesTreeOutline.css +1 -1
- package/front_end/panels/elements/stylesSidebarPane.css +1 -1
- package/front_end/panels/emulation/AdvancedApp.ts +1 -1
- package/front_end/panels/emulation/DeviceModeToolbar.ts +1 -1
- package/front_end/panels/emulation/DeviceModeView.ts +1 -1
- package/front_end/panels/emulation/DeviceModeWrapper.ts +1 -1
- package/front_end/panels/emulation/InspectedPagePlaceholder.ts +1 -1
- package/front_end/panels/emulation/MediaQueryInspector.ts +1 -1
- package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +1 -1
- package/front_end/panels/emulation/components/components.ts +1 -1
- package/front_end/panels/emulation/deviceModeView.css +1 -1
- package/front_end/panels/emulation/emulation-meta.ts +1 -1
- package/front_end/panels/emulation/emulation.ts +1 -1
- package/front_end/panels/emulation/inspectedPagePlaceholder.css +1 -1
- package/front_end/panels/emulation/mediaQueryInspector.css +1 -1
- package/front_end/panels/event_listeners/EventListenersUtils.ts +1 -1
- package/front_end/panels/event_listeners/EventListenersView.ts +1 -1
- package/front_end/panels/event_listeners/eventListenersView.css +1 -1
- package/front_end/panels/event_listeners/event_listeners.ts +1 -1
- package/front_end/panels/explain/ActionDelegate.ts +1 -1
- package/front_end/panels/explain/PromptBuilder.ts +1 -1
- package/front_end/panels/explain/components/ConsoleInsight.ts +1 -1
- package/front_end/panels/explain/components/consoleInsight.css +1 -1
- package/front_end/panels/explain/components/consoleInsightSourcesList.css +1 -1
- package/front_end/panels/explain/explain-meta.ts +1 -1
- package/front_end/panels/explain/explain.ts +1 -1
- package/front_end/panels/issues/AffectedBlockedByResponseView.ts +1 -1
- package/front_end/panels/issues/AffectedCookiesView.ts +1 -1
- package/front_end/panels/issues/AffectedDescendantsWithinSelectElementView.ts +1 -1
- package/front_end/panels/issues/AffectedDirectivesView.ts +1 -1
- package/front_end/panels/issues/AffectedDocumentsInQuirksModeView.ts +1 -1
- package/front_end/panels/issues/AffectedElementsView.ts +1 -1
- package/front_end/panels/issues/AffectedElementsWithLowContrastView.ts +1 -1
- package/front_end/panels/issues/AffectedHeavyAdView.ts +1 -1
- package/front_end/panels/issues/AffectedMetadataAllowedSitesView.ts +1 -1
- package/front_end/panels/issues/AffectedPartitioningBlobURLView.ts +1 -1
- package/front_end/panels/issues/AffectedResourcesView.ts +1 -1
- package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +1 -1
- package/front_end/panels/issues/AffectedSourcesView.ts +1 -1
- package/front_end/panels/issues/AffectedTrackingSitesView.ts +1 -1
- package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +1 -1
- package/front_end/panels/issues/CorsIssueDetailsView.ts +1 -1
- package/front_end/panels/issues/GenericIssueDetailsView.ts +1 -1
- package/front_end/panels/issues/HiddenIssuesRow.ts +1 -1
- package/front_end/panels/issues/IssueAggregator.ts +1 -1
- package/front_end/panels/issues/IssueKindView.ts +1 -1
- package/front_end/panels/issues/IssueRevealer.ts +1 -1
- package/front_end/panels/issues/IssueView.ts +1 -1
- package/front_end/panels/issues/IssuesPane.ts +1 -1
- package/front_end/panels/issues/components/ElementsPanelLink.ts +1 -1
- package/front_end/panels/issues/components/HideIssuesMenu.ts +1 -1
- package/front_end/panels/issues/components/components.ts +1 -1
- package/front_end/panels/issues/components/elementsPanelLink.css +1 -1
- package/front_end/panels/issues/components/hideIssuesMenu.css +1 -1
- package/front_end/panels/issues/issues-meta.ts +1 -1
- package/front_end/panels/issues/issues.ts +1 -1
- package/front_end/panels/issues/issuesPane.css +1 -1
- package/front_end/panels/issues/issuesTree.css +1 -1
- package/front_end/panels/js_timeline/js_timeline-meta.ts +1 -1
- package/front_end/panels/layer_viewer/LayerDetailsView.ts +3 -29
- package/front_end/panels/layer_viewer/LayerTreeOutline.ts +3 -29
- package/front_end/panels/layer_viewer/LayerViewHost.ts +1 -1
- package/front_end/panels/layer_viewer/Layers3DView.ts +3 -29
- package/front_end/panels/layer_viewer/PaintProfilerView.ts +3 -29
- package/front_end/panels/layer_viewer/TransformController.ts +1 -1
- package/front_end/panels/layer_viewer/layerDetailsView.css +1 -1
- package/front_end/panels/layer_viewer/layerTreeOutline.css +1 -1
- package/front_end/panels/layer_viewer/layer_viewer-meta.ts +1 -1
- package/front_end/panels/layer_viewer/layer_viewer.ts +1 -1
- package/front_end/panels/layer_viewer/layers3DView.css +1 -1
- package/front_end/panels/layer_viewer/paintProfiler.css +1 -1
- package/front_end/panels/layers/LayerPaintProfilerView.ts +1 -1
- package/front_end/panels/layers/LayerTreeModel.ts +3 -29
- package/front_end/panels/layers/LayersPanel.ts +3 -29
- package/front_end/panels/layers/layers-meta.ts +1 -1
- package/front_end/panels/layers/layers.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseController.ts +1 -1
- package/front_end/panels/lighthouse/LighthousePanel.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseProtocolService.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseReportSelector.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseReporterTypes.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseStartView.ts +3 -2
- package/front_end/panels/lighthouse/LighthouseStatusView.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseTimespanView.ts +1 -1
- package/front_end/panels/lighthouse/RadioSetting.ts +1 -1
- package/front_end/panels/lighthouse/lighthouse-meta.ts +1 -1
- package/front_end/panels/lighthouse/lighthouse.ts +1 -1
- package/front_end/panels/lighthouse/lighthouseDialog.css +1 -1
- package/front_end/panels/lighthouse/lighthousePanel.css +1 -1
- package/front_end/panels/lighthouse/lighthouseStartView.css +1 -1
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +1 -1
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspectorUtils.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewerUtils.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +1 -1
- 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/components/components.ts +1 -1
- package/front_end/panels/linear_memory_inspector/components/linearMemoryHighlightChipList.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/linearMemoryInspector.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/linearMemoryNavigator.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/linearMemoryValueInterpreter.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/linearMemoryViewer.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/valueInterpreterDisplay.css +1 -1
- package/front_end/panels/linear_memory_inspector/components/valueInterpreterSettings.css +1 -1
- package/front_end/panels/linear_memory_inspector/linear_memory_inspector-meta.ts +1 -1
- package/front_end/panels/linear_memory_inspector/linear_memory_inspector.ts +1 -1
- package/front_end/panels/media/EventDisplayTable.ts +1 -1
- package/front_end/panels/media/EventTimelineView.ts +1 -1
- package/front_end/panels/media/MainView.ts +1 -1
- package/front_end/panels/media/MediaModel.ts +1 -1
- package/front_end/panels/media/PlayerDetailView.ts +1 -1
- package/front_end/panels/media/PlayerListView.ts +1 -1
- package/front_end/panels/media/PlayerMessagesView.ts +1 -1
- package/front_end/panels/media/PlayerPropertiesView.ts +1 -1
- package/front_end/panels/media/TickingFlameChart.ts +1 -1
- package/front_end/panels/media/TickingFlameChartHelpers.ts +1 -1
- package/front_end/panels/media/eventDisplayTable.css +1 -1
- package/front_end/panels/media/media-meta.ts +1 -1
- package/front_end/panels/media/media.ts +1 -1
- package/front_end/panels/media/playerListView.css +1 -1
- package/front_end/panels/media/playerMessagesView.css +1 -1
- package/front_end/panels/media/playerPropertiesView.css +1 -1
- package/front_end/panels/mobile_throttling/CalibrationController.ts +1 -1
- package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +1 -1
- package/front_end/panels/mobile_throttling/NetworkPanelIndicator.ts +1 -1
- package/front_end/panels/mobile_throttling/NetworkThrottlingSelector.ts +1 -1
- package/front_end/panels/mobile_throttling/ThrottlingManager.ts +1 -1
- package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +1 -37
- package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +1 -1
- package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +1 -1
- package/front_end/panels/mobile_throttling/mobile_throttling.ts +1 -1
- package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +1 -1
- package/front_end/panels/network/BinaryResourceView.ts +1 -1
- package/front_end/panels/network/BlockedURLsPane.ts +1 -1
- package/front_end/panels/network/EventSourceMessagesView.ts +1 -1
- package/front_end/panels/network/NetworkConfigView.ts +2 -2
- package/front_end/panels/network/NetworkDataGridNode.ts +1 -1
- package/front_end/panels/network/NetworkFrameGrouper.ts +1 -1
- package/front_end/panels/network/NetworkItemView.ts +3 -29
- package/front_end/panels/network/NetworkLogView.ts +3 -3
- package/front_end/panels/network/NetworkLogViewColumns.ts +1 -1
- package/front_end/panels/network/NetworkManageCustomHeadersView.ts +1 -1
- package/front_end/panels/network/NetworkOverview.ts +1 -1
- package/front_end/panels/network/NetworkPanel.ts +1 -1
- package/front_end/panels/network/NetworkSearchScope.ts +1 -1
- package/front_end/panels/network/NetworkWaterfallColumn.ts +1 -1
- package/front_end/panels/network/RequestCookiesView.ts +3 -29
- package/front_end/panels/network/RequestHTMLView.ts +3 -29
- package/front_end/panels/network/RequestInitiatorView.ts +1 -1
- package/front_end/panels/network/RequestPayloadView.ts +1 -1
- package/front_end/panels/network/RequestPreviewView.ts +3 -29
- package/front_end/panels/network/RequestResponseView.ts +3 -29
- package/front_end/panels/network/RequestTimingView.ts +3 -29
- package/front_end/panels/network/ResourceChunkView.ts +1 -1
- package/front_end/panels/network/ResourceDirectSocketChunkView.ts +1 -1
- package/front_end/panels/network/ResourceWebSocketFrameView.ts +1 -1
- package/front_end/panels/network/SignedExchangeInfoView.ts +1 -1
- package/front_end/panels/network/binaryResourceView.css +1 -1
- package/front_end/panels/network/blockedURLsPane.css +1 -1
- package/front_end/panels/network/components/DirectSocketConnectionView.ts +1 -1
- package/front_end/panels/network/components/EditableSpan.css +1 -1
- package/front_end/panels/network/components/EditableSpan.ts +1 -1
- package/front_end/panels/network/components/HeaderSectionRow.css +1 -1
- package/front_end/panels/network/components/HeaderSectionRow.ts +3 -4
- package/front_end/panels/network/components/RequestHeaderSection.css +1 -1
- package/front_end/panels/network/components/RequestHeaderSection.ts +1 -1
- package/front_end/panels/network/components/RequestHeadersView.css +1 -1
- package/front_end/panels/network/components/RequestHeadersView.ts +1 -1
- package/front_end/panels/network/components/RequestTrustTokensView.css +1 -1
- package/front_end/panels/network/components/RequestTrustTokensView.ts +1 -1
- package/front_end/panels/network/components/ResponseHeaderSection.css +1 -1
- package/front_end/panels/network/components/ResponseHeaderSection.ts +1 -1
- package/front_end/panels/network/components/WebBundleInfoView.css +1 -1
- package/front_end/panels/network/components/WebBundleInfoView.ts +1 -1
- package/front_end/panels/network/components/components.ts +1 -1
- package/front_end/panels/network/eventSourceMessagesView.css +1 -1
- package/front_end/panels/network/forward/NetworkRequestId.ts +1 -1
- package/front_end/panels/network/forward/UIFilter.ts +1 -1
- package/front_end/panels/network/forward/UIRequestLocation.ts +1 -1
- package/front_end/panels/network/forward/forward.ts +1 -1
- package/front_end/panels/network/network-meta.ts +1 -1
- package/front_end/panels/network/network.ts +1 -1
- package/front_end/panels/network/networkConfigView.css +1 -1
- package/front_end/panels/network/networkLogView.css +3 -27
- package/front_end/panels/network/networkManageCustomHeadersView.css +1 -1
- package/front_end/panels/network/networkTimingTable.css +1 -1
- package/front_end/panels/network/networkWaterfallColumn.css +1 -1
- package/front_end/panels/network/requestCookiesView.css +2 -2
- package/front_end/panels/network/requestHTMLView.css +1 -1
- package/front_end/panels/network/requestHeadersTree.css +1 -1
- package/front_end/panels/network/requestInitiatorView.css +1 -1
- package/front_end/panels/network/requestInitiatorViewTree.css +1 -1
- package/front_end/panels/network/requestPayloadTree.css +1 -1
- package/front_end/panels/network/requestPayloadView.css +1 -1
- package/front_end/panels/network/resourceChunkView.css +1 -1
- package/front_end/panels/network/signedExchangeInfoTree.css +1 -1
- package/front_end/panels/network/signedExchangeInfoView.css +1 -1
- package/front_end/panels/performance_monitor/PerformanceMonitor.ts +1 -1
- package/front_end/panels/performance_monitor/performanceMonitor.css +1 -1
- package/front_end/panels/performance_monitor/performance_monitor-meta.ts +1 -1
- package/front_end/panels/performance_monitor/performance_monitor.ts +1 -1
- package/front_end/panels/profiler/BottomUpProfileDataGrid.ts +1 -1
- package/front_end/panels/profiler/ChildrenProvider.ts +1 -1
- package/front_end/panels/profiler/HeapDetachedElementsDataGrid.ts +1 -1
- package/front_end/panels/profiler/HeapDetachedElementsView.ts +1 -1
- package/front_end/panels/profiler/HeapProfileView.ts +2 -4
- package/front_end/panels/profiler/HeapProfilerPanel.ts +1 -1
- package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +3 -29
- package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +3 -29
- package/front_end/panels/profiler/HeapSnapshotProxy.ts +3 -29
- package/front_end/panels/profiler/HeapSnapshotView.ts +8 -30
- package/front_end/panels/profiler/HeapTimelineOverview.ts +1 -1
- package/front_end/panels/profiler/IsolateSelector.ts +1 -1
- package/front_end/panels/profiler/LiveHeapProfileView.ts +1 -1
- package/front_end/panels/profiler/ModuleUIStrings.ts +1 -1
- package/front_end/panels/profiler/ProfileDataGrid.ts +5 -1
- package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +7 -29
- package/front_end/panels/profiler/ProfileHeader.ts +1 -1
- package/front_end/panels/profiler/ProfileLauncherView.ts +3 -29
- package/front_end/panels/profiler/ProfileSidebarTreeElement.ts +1 -1
- package/front_end/panels/profiler/ProfileTypeRegistry.ts +1 -1
- package/front_end/panels/profiler/ProfileView.ts +5 -1
- package/front_end/panels/profiler/ProfilesPanel.ts +1 -1
- package/front_end/panels/profiler/TopDownProfileDataGrid.ts +1 -1
- package/front_end/panels/profiler/liveHeapProfile.css +1 -1
- package/front_end/panels/profiler/profileLauncherView.css +1 -1
- package/front_end/panels/profiler/profiler-meta.ts +1 -1
- package/front_end/panels/profiler/profiler.ts +1 -1
- package/front_end/panels/profiler/profilesSidebarTree.css +1 -1
- package/front_end/panels/protocol_monitor/JSONEditor.css +1 -1
- package/front_end/panels/protocol_monitor/JSONEditor.ts +1 -1
- package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +1 -1
- package/front_end/panels/protocol_monitor/protocolMonitor.css +1 -1
- package/front_end/panels/protocol_monitor/protocol_monitor-meta.ts +1 -1
- package/front_end/panels/protocol_monitor/protocol_monitor.ts +1 -1
- package/front_end/panels/recorder/RecorderController.ts +1 -1
- package/front_end/panels/recorder/RecorderEvents.ts +1 -1
- package/front_end/panels/recorder/RecorderPanel.ts +1 -1
- package/front_end/panels/recorder/components/ControlButton.ts +1 -1
- package/front_end/panels/recorder/components/CreateRecordingView.ts +3 -3
- package/front_end/panels/recorder/components/ExtensionView.ts +1 -1
- package/front_end/panels/recorder/components/RecordingListView.ts +1 -1
- package/front_end/panels/recorder/components/RecordingView.ts +1 -1
- package/front_end/panels/recorder/components/ReplaySection.ts +1 -1
- package/front_end/panels/recorder/components/SelectButton.ts +50 -33
- package/front_end/panels/recorder/components/StepEditor.ts +1 -1
- package/front_end/panels/recorder/components/StepView.ts +1 -1
- package/front_end/panels/recorder/components/TimelineSection.ts +2 -1
- package/front_end/panels/recorder/components/components.ts +1 -1
- package/front_end/panels/recorder/components/controlButton.css +1 -1
- package/front_end/panels/recorder/components/createRecordingView.css +1 -1
- package/front_end/panels/recorder/components/extensionView.css +1 -1
- package/front_end/panels/recorder/components/recordingListView.css +1 -1
- package/front_end/panels/recorder/components/recordingView.css +1 -1
- package/front_end/panels/recorder/components/selectButton.css +7 -13
- package/front_end/panels/recorder/components/startView.css +1 -1
- package/front_end/panels/recorder/components/stepEditor.css +1 -1
- package/front_end/panels/recorder/components/stepView.css +1 -1
- package/front_end/panels/recorder/components/timelineSection.css +1 -1
- package/front_end/panels/recorder/components/util.ts +1 -1
- package/front_end/panels/recorder/controllers/SelectorPicker.ts +1 -1
- package/front_end/panels/recorder/controllers/controllers.ts +1 -1
- package/front_end/panels/recorder/converters/Converter.ts +1 -1
- package/front_end/panels/recorder/converters/ExtensionConverter.ts +1 -1
- package/front_end/panels/recorder/converters/JSONConverter.ts +1 -1
- package/front_end/panels/recorder/converters/LighthouseConverter.ts +1 -1
- package/front_end/panels/recorder/converters/PuppeteerConverter.ts +1 -1
- package/front_end/panels/recorder/converters/PuppeteerFirefoxConverter.ts +1 -1
- package/front_end/panels/recorder/converters/PuppeteerReplayConverter.ts +1 -1
- package/front_end/panels/recorder/converters/converters.ts +1 -1
- package/front_end/panels/recorder/extensions/ExtensionManager.ts +1 -1
- package/front_end/panels/recorder/extensions/extensions.ts +1 -1
- package/front_end/panels/recorder/injected/Logger.ts +1 -1
- package/front_end/panels/recorder/injected/MonotonicArray.ts +1 -1
- package/front_end/panels/recorder/injected/RecordingClient.ts +1 -1
- package/front_end/panels/recorder/injected/SelectorComputer.ts +1 -1
- package/front_end/panels/recorder/injected/SelectorPicker.ts +1 -1
- package/front_end/panels/recorder/injected/Step.ts +1 -1
- package/front_end/panels/recorder/injected/injected.ts +1 -1
- package/front_end/panels/recorder/injected/rollup.config.mjs +1 -1
- package/front_end/panels/recorder/injected/selectors/ARIASelector.ts +1 -1
- package/front_end/panels/recorder/injected/selectors/CSSSelector.ts +1 -1
- package/front_end/panels/recorder/injected/selectors/PierceSelector.ts +1 -1
- package/front_end/panels/recorder/injected/selectors/Selector.ts +1 -1
- package/front_end/panels/recorder/injected/selectors/TextSelector.ts +1 -1
- package/front_end/panels/recorder/injected/selectors/XPath.ts +1 -1
- package/front_end/panels/recorder/injected/util.ts +1 -1
- package/front_end/panels/recorder/models/ConverterIds.ts +1 -1
- package/front_end/panels/recorder/models/RecorderSettings.ts +1 -1
- package/front_end/panels/recorder/models/RecorderShortcutHelper.ts +1 -1
- package/front_end/panels/recorder/models/RecordingPlayer.ts +1 -1
- package/front_end/panels/recorder/models/RecordingSession.ts +1 -1
- package/front_end/panels/recorder/models/RecordingSettings.ts +1 -1
- package/front_end/panels/recorder/models/RecordingStorage.ts +1 -1
- package/front_end/panels/recorder/models/SDKUtils.ts +1 -1
- package/front_end/panels/recorder/models/Schema.ts +1 -1
- package/front_end/panels/recorder/models/SchemaUtils.ts +1 -1
- package/front_end/panels/recorder/models/ScreenshotStorage.ts +1 -1
- package/front_end/panels/recorder/models/ScreenshotUtils.ts +1 -1
- package/front_end/panels/recorder/models/Section.ts +1 -1
- package/front_end/panels/recorder/models/Tooltip.ts +1 -1
- package/front_end/panels/recorder/models/models.ts +1 -1
- package/front_end/panels/recorder/recorder-actions/recorder-actions.ts +1 -1
- package/front_end/panels/recorder/recorder-meta.ts +1 -1
- package/front_end/panels/recorder/recorder.ts +1 -1
- package/front_end/panels/recorder/recorderController.css +1 -1
- package/front_end/panels/recorder/testing/RecorderHelpers.ts +1 -1
- package/front_end/panels/recorder/util/SharedObject.ts +1 -1
- package/front_end/panels/recorder/util/util.ts +1 -1
- package/front_end/panels/screencast/InputModel.ts +1 -1
- package/front_end/panels/screencast/ScreencastApp.ts +1 -1
- package/front_end/panels/screencast/ScreencastView.ts +3 -29
- package/front_end/panels/screencast/screencast-meta.ts +1 -1
- package/front_end/panels/screencast/screencast.ts +1 -1
- package/front_end/panels/screencast/screencastView.css +3 -27
- package/front_end/panels/search/SearchResultsPane.ts +1 -1
- package/front_end/panels/search/SearchScope.ts +1 -1
- package/front_end/panels/search/SearchView.ts +220 -206
- package/front_end/panels/search/search.ts +1 -1
- package/front_end/panels/search/searchResultsPane.css +1 -1
- package/front_end/panels/search/searchView.css +1 -1
- package/front_end/panels/security/CookieControlsTreeElement.ts +1 -1
- package/front_end/panels/security/CookieControlsView.ts +1 -1
- package/front_end/panels/security/CookieReportTreeElement.ts +1 -1
- package/front_end/panels/security/CookieReportView.ts +1 -1
- package/front_end/panels/security/IPProtectionTreeElement.ts +1 -1
- package/front_end/panels/security/IPProtectionView.ts +1 -1
- package/front_end/panels/security/OriginTreeElement.ts +1 -1
- package/front_end/panels/security/SecurityModel.ts +1 -1
- package/front_end/panels/security/SecurityPanel.ts +1 -1
- package/front_end/panels/security/SecurityPanelSidebar.ts +1 -1
- package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +1 -1
- package/front_end/panels/security/cookieControlsView.css +1 -1
- package/front_end/panels/security/cookieReportView.css +1 -1
- package/front_end/panels/security/ipProtectionView.css +1 -1
- package/front_end/panels/security/lockIcon.css +1 -1
- package/front_end/panels/security/mainView.css +1 -1
- package/front_end/panels/security/originView.css +1 -1
- package/front_end/panels/security/security-meta.ts +1 -1
- package/front_end/panels/security/security.ts +1 -1
- package/front_end/panels/security/sidebar.css +1 -1
- package/front_end/panels/sensors/LocationsSettingsTab.ts +1 -1
- package/front_end/panels/sensors/SensorsView.ts +1 -1
- package/front_end/panels/sensors/locationsSettingsTab.css +1 -1
- package/front_end/panels/sensors/sensors-meta.ts +1 -1
- package/front_end/panels/sensors/sensors.css +1 -1
- package/front_end/panels/sensors/sensors.ts +1 -1
- package/front_end/panels/settings/AISettingsTab.ts +1 -1
- package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +1 -1
- package/front_end/panels/settings/KeybindsSettingsTab.ts +2 -2
- package/front_end/panels/settings/SettingsScreen.ts +4 -30
- package/front_end/{models/persistence → panels/settings}/WorkspaceSettingsTab.ts +34 -31
- package/front_end/panels/settings/aiSettingsTab.css +1 -1
- package/front_end/panels/settings/components/SyncSection.ts +15 -8
- package/front_end/panels/settings/components/components.ts +1 -1
- package/front_end/panels/settings/components/syncSection.css +12 -5
- package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +1 -1
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +1 -1
- package/front_end/panels/settings/emulation/components/components.ts +1 -1
- package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +1 -1
- package/front_end/panels/settings/emulation/devicesSettingsTab.css +1 -1
- package/front_end/panels/settings/emulation/emulation-meta.ts +1 -1
- package/front_end/panels/settings/emulation/emulation.ts +1 -1
- package/front_end/panels/settings/emulation/utils/StructuredHeaders.ts +1 -1
- package/front_end/panels/settings/emulation/utils/UserAgentMetadata.ts +1 -1
- package/front_end/panels/settings/emulation/utils/utils.ts +1 -1
- package/front_end/panels/settings/frameworkIgnoreListSettingsTab.css +1 -1
- package/front_end/panels/settings/keybindsSettingsTab.css +1 -1
- package/front_end/panels/settings/settings-meta.ts +22 -1
- package/front_end/panels/settings/settings.ts +3 -2
- package/front_end/panels/settings/settingsScreen.css +1 -1
- package/front_end/{models/persistence → panels/settings}/workspaceSettingsTab.css +1 -1
- package/front_end/panels/snippets/ScriptSnippetFileSystem.ts +1 -1
- package/front_end/panels/snippets/SnippetsQuickOpen.ts +1 -1
- package/front_end/panels/snippets/snippets.ts +1 -1
- package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -1
- package/front_end/panels/sources/AiCodeCompletionPlugin.ts +4 -4
- package/front_end/panels/sources/AiWarningInfobarPlugin.ts +1 -1
- package/front_end/panels/sources/BreakpointEditDialog.ts +1 -1
- package/front_end/panels/sources/BreakpointsView.ts +1 -1
- package/front_end/panels/sources/BreakpointsViewUtils.ts +1 -1
- package/front_end/panels/sources/CSSPlugin.ts +1 -1
- package/front_end/panels/sources/CallStackSidebarPane.ts +1 -1
- package/front_end/panels/sources/CategorizedBreakpointL10n.ts +1 -1
- package/front_end/panels/sources/CoveragePlugin.ts +1 -1
- package/front_end/panels/sources/DebuggerPausedMessage.ts +1 -1
- package/front_end/panels/sources/DebuggerPlugin.ts +3 -29
- package/front_end/panels/sources/EditingLocationHistoryManager.ts +3 -29
- package/front_end/panels/sources/FilePathScoreFunction.ts +3 -29
- package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +1 -1
- package/front_end/panels/sources/GoToLineQuickOpen.ts +1 -1
- package/front_end/panels/sources/InplaceFormatterEditorAction.ts +1 -1
- package/front_end/panels/sources/NavigatorView.ts +3 -29
- package/front_end/panels/sources/OpenFileQuickOpen.ts +1 -1
- package/front_end/panels/sources/OutlineQuickOpen.ts +1 -1
- package/front_end/panels/sources/Plugin.ts +1 -1
- package/front_end/panels/sources/ProfilePlugin.ts +1 -1
- package/front_end/panels/sources/ResourceOriginPlugin.ts +1 -1
- package/front_end/panels/sources/ScopeChainSidebarPane.ts +1 -1
- package/front_end/panels/sources/SearchSourcesView.ts +1 -1
- package/front_end/panels/sources/SnippetsPlugin.ts +1 -1
- package/front_end/panels/sources/SourcesNavigator.ts +3 -29
- package/front_end/panels/sources/SourcesPanel.ts +1 -1
- package/front_end/panels/sources/SourcesSearchScope.ts +3 -29
- package/front_end/panels/sources/SourcesView.ts +5 -1
- package/front_end/panels/sources/TabbedEditorContainer.ts +3 -29
- package/front_end/panels/sources/ThreadsSidebarPane.ts +1 -1
- package/front_end/panels/sources/UISourceCodeFrame.ts +5 -30
- package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +3 -3
- package/front_end/panels/sources/breakpointEditDialog.css +1 -1
- package/front_end/panels/sources/breakpointsView.css +1 -1
- package/front_end/panels/sources/callStackSidebarPane.css +1 -1
- package/front_end/panels/sources/components/HeadersView.css +1 -1
- package/front_end/panels/sources/components/HeadersView.ts +1 -1
- package/front_end/panels/sources/components/components.ts +1 -1
- package/front_end/panels/sources/debuggerPausedMessage.css +1 -1
- package/front_end/panels/sources/dialog.css +1 -1
- package/front_end/panels/sources/navigatorView.css +1 -1
- package/front_end/panels/sources/scopeChainSidebarPane.css +1 -1
- package/front_end/panels/sources/sources-meta.ts +1 -1
- package/front_end/panels/sources/sources.ts +1 -1
- package/front_end/panels/sources/sourcesNavigator.css +1 -1
- package/front_end/panels/sources/sourcesView.css +3 -27
- package/front_end/panels/sources/threadsSidebarPane.css +1 -1
- package/front_end/panels/sources/watchExpressionsSidebarPane.css +1 -1
- package/front_end/panels/timeline/ActiveFilters.ts +1 -1
- package/front_end/panels/timeline/AnimationsTrackAppender.ts +1 -1
- package/front_end/panels/timeline/AnnotationHelpers.ts +3 -4
- package/front_end/panels/timeline/AppenderUtils.ts +1 -1
- package/front_end/panels/timeline/BenchmarkEvents.ts +1 -1
- package/front_end/panels/timeline/CLSLinkifier.ts +1 -1
- package/front_end/panels/timeline/CompatibilityTracksAppender.ts +13 -10
- package/front_end/panels/timeline/CountersGraph.ts +12 -38
- package/front_end/panels/timeline/EasterEgg.d.ts +1 -1
- package/front_end/panels/timeline/EntriesFilter.ts +1 -1
- package/front_end/panels/timeline/EventsTimelineTreeView.ts +7 -8
- package/front_end/panels/timeline/ExtensionTrackAppender.ts +1 -1
- package/front_end/panels/timeline/GPUTrackAppender.ts +1 -1
- package/front_end/panels/timeline/Initiators.ts +1 -1
- package/front_end/panels/timeline/InteractionsTrackAppender.ts +2 -3
- package/front_end/panels/timeline/IsolateSelector.ts +1 -1
- package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +1 -1
- package/front_end/panels/timeline/ModificationsManager.ts +1 -1
- package/front_end/panels/timeline/NetworkTrackAppender.ts +1 -1
- package/front_end/panels/timeline/RecordingMetadata.ts +1 -1
- package/front_end/panels/timeline/SaveFileFormatter.ts +1 -1
- package/front_end/panels/timeline/StatusDialog.ts +1 -1
- package/front_end/panels/timeline/TargetForEvent.ts +1 -1
- package/front_end/panels/timeline/ThirdPartyTreeView.ts +3 -4
- package/front_end/panels/timeline/ThreadAppender.ts +16 -8
- package/front_end/panels/timeline/TimelineController.ts +1 -1
- package/front_end/panels/timeline/TimelineDetailsView.ts +12 -12
- package/front_end/panels/timeline/TimelineEventOverview.ts +16 -42
- package/front_end/panels/timeline/TimelineFilters.ts +1 -1
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +11 -35
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +4 -5
- package/front_end/panels/timeline/TimelineFlameChartView.ts +12 -7
- package/front_end/panels/timeline/TimelineHistoryManager.ts +3 -3
- package/front_end/panels/timeline/TimelineLayersView.ts +1 -1
- package/front_end/panels/timeline/TimelineLoader.ts +1 -1
- package/front_end/panels/timeline/TimelineMiniMap.ts +1 -1
- package/front_end/panels/timeline/TimelinePaintProfilerView.ts +1 -1
- package/front_end/panels/timeline/TimelinePanel.ts +37 -22
- package/front_end/panels/timeline/TimelineSelection.ts +1 -1
- package/front_end/panels/timeline/TimelineSelectorStatsView.ts +9 -11
- package/front_end/panels/timeline/TimelineTreeView.ts +18 -9
- package/front_end/panels/timeline/TimelineUIUtils.ts +36 -33
- package/front_end/panels/timeline/TimingsTrackAppender.ts +2 -1
- package/front_end/panels/timeline/TracingLayerTree.ts +1 -1
- package/front_end/panels/timeline/TrackConfiguration.ts +1 -1
- package/front_end/panels/timeline/UIDevtoolsController.ts +8 -34
- package/front_end/panels/timeline/UIDevtoolsUtils.ts +26 -69
- package/front_end/panels/timeline/components/Breadcrumbs.ts +1 -1
- package/front_end/panels/timeline/components/BreadcrumbsUI.ts +1 -1
- package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +1 -1
- package/front_end/panels/timeline/components/DetailsView.ts +1 -1
- package/front_end/panels/timeline/components/ExportTraceOptions.ts +1 -1
- package/front_end/panels/timeline/components/FieldSettingsDialog.ts +1 -1
- package/front_end/panels/timeline/components/IgnoreListSetting.ts +1 -1
- package/front_end/panels/timeline/components/InteractionBreakdown.ts +1 -1
- package/front_end/panels/timeline/components/LayoutShiftDetails.ts +2 -3
- package/front_end/panels/timeline/components/LiveMetricsView.ts +6 -4
- package/front_end/panels/timeline/components/MetricCard.ts +1 -1
- package/front_end/panels/timeline/components/MetricCompareStrings.ts +1 -1
- package/front_end/panels/timeline/components/NetworkRequestDetails.ts +6 -7
- package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +2 -2
- package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +1 -1
- package/front_end/panels/timeline/components/OriginMap.ts +1 -1
- package/front_end/panels/timeline/components/RelatedInsightChips.ts +1 -1
- package/front_end/panels/timeline/components/Sidebar.ts +1 -1
- package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +7 -8
- package/front_end/panels/timeline/components/SidebarInsightsTab.ts +1 -1
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +3 -3
- package/front_end/panels/timeline/components/TimelineSummary.ts +1 -1
- package/front_end/panels/timeline/components/Utils.ts +1 -1
- package/front_end/panels/timeline/components/breadcrumbsUI.css +1 -1
- package/front_end/panels/timeline/components/components.ts +1 -1
- package/front_end/panels/timeline/components/cpuThrottlingSelector.css +1 -1
- package/front_end/panels/timeline/components/exportTraceOptions.css +1 -1
- package/front_end/panels/timeline/components/fieldSettingsDialog.css +1 -1
- package/front_end/panels/timeline/components/ignoreListSetting.css +1 -1
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +7 -7
- package/front_end/panels/timeline/components/insights/CLSCulprits.ts +1 -1
- package/front_end/panels/timeline/components/insights/Cache.ts +1 -1
- package/front_end/panels/timeline/components/insights/Checklist.ts +1 -1
- package/front_end/panels/timeline/components/insights/DOMSize.ts +1 -1
- package/front_end/panels/timeline/components/insights/DocumentLatency.ts +1 -1
- package/front_end/panels/timeline/components/insights/DuplicatedJavaScript.ts +1 -1
- package/front_end/panels/timeline/components/insights/EventRef.ts +1 -1
- package/front_end/panels/timeline/components/insights/FontDisplay.ts +1 -1
- package/front_end/panels/timeline/components/insights/ForcedReflow.ts +1 -1
- package/front_end/panels/timeline/components/insights/Helpers.ts +1 -1
- package/front_end/panels/timeline/components/insights/INPBreakdown.ts +1 -1
- package/front_end/panels/timeline/components/insights/ImageDelivery.ts +1 -1
- package/front_end/panels/timeline/components/insights/LCPBreakdown.ts +1 -1
- package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +1 -1
- package/front_end/panels/timeline/components/insights/LegacyJavaScript.ts +1 -1
- package/front_end/panels/timeline/components/insights/ModernHTTP.ts +1 -1
- package/front_end/panels/timeline/components/insights/NetworkDependencyTree.ts +1 -1
- package/front_end/panels/timeline/components/insights/NodeLink.ts +1 -1
- package/front_end/panels/timeline/components/insights/RenderBlocking.ts +1 -1
- package/front_end/panels/timeline/components/insights/ScriptRef.ts +1 -1
- package/front_end/panels/timeline/components/insights/SidebarInsight.ts +1 -1
- package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +1 -1
- package/front_end/panels/timeline/components/insights/Table.ts +1 -1
- package/front_end/panels/timeline/components/insights/ThirdParties.ts +1 -1
- package/front_end/panels/timeline/components/insights/Viewport.ts +1 -1
- package/front_end/panels/timeline/components/insights/baseInsightComponent.css +1 -1
- package/front_end/panels/timeline/components/insights/checklist.css +1 -1
- package/front_end/panels/timeline/components/insights/insights.ts +1 -1
- package/front_end/panels/timeline/components/insights/networkDependencyTreeInsight.css +1 -1
- package/front_end/panels/timeline/components/insights/table.css +1 -1
- package/front_end/panels/timeline/components/insights/types.ts +1 -1
- package/front_end/panels/timeline/components/interactionBreakdown.css +1 -1
- package/front_end/panels/timeline/components/layoutShiftDetails.css +1 -1
- package/front_end/panels/timeline/components/liveMetricsView.css +1 -1
- package/front_end/panels/timeline/components/metricCard.css +1 -1
- package/front_end/panels/timeline/components/metricValueStyles.css +1 -1
- package/front_end/panels/timeline/components/networkRequestDetails.css +1 -1
- package/front_end/panels/timeline/components/networkRequestTooltip.css +1 -1
- package/front_end/panels/timeline/components/networkThrottlingSelector.css +1 -1
- package/front_end/panels/timeline/components/originMap.css +1 -1
- package/front_end/panels/timeline/components/relatedInsightChips.css +1 -1
- package/front_end/panels/timeline/components/sidebarAnnotationsTab.css +1 -1
- package/front_end/panels/timeline/components/sidebarInsightsTab.css +1 -1
- package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +1 -1
- package/front_end/panels/timeline/components/timelineSummary.css +1 -1
- package/front_end/panels/timeline/enable-easter-egg.js +1 -1
- package/front_end/panels/timeline/extensions/ExtensionUI.ts +1 -1
- package/front_end/panels/timeline/extensions/extensions.ts +1 -1
- package/front_end/panels/timeline/overlays/OverlaysImpl.ts +5 -5
- package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +1 -1
- package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +3 -4
- package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +1 -1
- package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +1 -1
- package/front_end/panels/timeline/overlays/components/components.ts +1 -1
- package/front_end/panels/timeline/overlays/components/entriesLinkOverlay.css +1 -1
- package/front_end/panels/timeline/overlays/components/entryLabelOverlay.css +1 -1
- package/front_end/panels/timeline/overlays/components/timeRangeOverlay.css +1 -1
- package/front_end/panels/timeline/overlays/components/timespanBreakdownOverlay.css +1 -1
- package/front_end/panels/timeline/overlays/overlays.ts +1 -1
- package/front_end/panels/timeline/thirdPartyTreeView.css +1 -1
- package/front_end/panels/timeline/timeline-meta.ts +1 -1
- package/front_end/panels/timeline/timeline.ts +1 -1
- package/front_end/panels/timeline/timelineDetailsView.css +1 -1
- package/front_end/panels/timeline/timelineFlameChartView.css +1 -1
- package/front_end/panels/timeline/timelineFlamechartPopover.css +1 -1
- package/front_end/panels/timeline/timelineHistoryManager.css +1 -1
- package/front_end/panels/timeline/timelineMiniMap.css +1 -1
- package/front_end/panels/timeline/timelinePaintProfiler.css +1 -1
- package/front_end/panels/timeline/timelineSelectorStatsView.css +2 -2
- package/front_end/panels/timeline/timelineStatusDialog.css +1 -1
- package/front_end/panels/timeline/timelineTreeView.css +1 -1
- package/front_end/panels/timeline/utils/EntryNodes.ts +1 -1
- package/front_end/panels/timeline/utils/Helpers.ts +2 -3
- package/front_end/panels/timeline/utils/IgnoreList.ts +3 -4
- package/front_end/panels/timeline/utils/ImageCache.ts +1 -1
- package/front_end/panels/timeline/utils/Treemap.ts +1 -1
- package/front_end/panels/timeline/utils/utils.ts +1 -17
- package/front_end/panels/utils/utils.ts +1 -1
- package/front_end/panels/visibility.gni +1 -1
- package/front_end/panels/web_audio/WebAudioModel.ts +1 -1
- package/front_end/panels/web_audio/WebAudioView.ts +1 -1
- package/front_end/panels/web_audio/webAudio.css +1 -1
- package/front_end/panels/web_audio/web_audio-meta.ts +1 -1
- package/front_end/panels/web_audio/web_audio.ts +1 -1
- package/front_end/panels/webauthn/WebauthnPane.ts +1 -1
- package/front_end/panels/webauthn/webauthn-meta.ts +1 -1
- package/front_end/panels/webauthn/webauthn.ts +1 -1
- package/front_end/panels/webauthn/webauthnPane.css +1 -1
- package/front_end/panels/whats_new/ReleaseNoteText.ts +1 -1
- package/front_end/panels/whats_new/ReleaseNoteView.ts +1 -1
- package/front_end/panels/whats_new/WhatsNewImpl.ts +1 -1
- package/front_end/panels/whats_new/releaseNoteView.css +1 -1
- package/front_end/panels/whats_new/whats_new-meta.ts +1 -1
- package/front_end/panels/whats_new/whats_new.ts +1 -1
- package/front_end/services/puppeteer/PuppeteerConnection.ts +1 -1
- package/front_end/services/puppeteer/puppeteer.ts +1 -1
- package/front_end/services/trace_bounds/TraceBounds.ts +1 -1
- package/front_end/services/trace_bounds/trace_bounds.ts +1 -1
- package/front_end/{panels/timeline/utils → services/tracing}/FreshRecording.ts +2 -2
- package/front_end/services/tracing/PerformanceTracing.ts +1 -1
- package/front_end/services/tracing/TracingManager.ts +1 -1
- package/front_end/services/tracing/tracing.ts +3 -1
- package/front_end/services/window_bounds/WindowBoundsService.ts +1 -1
- package/front_end/services/window_bounds/window_bounds.ts +1 -1
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/puppeteer/README.chromium +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +12 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js +13 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts +10 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js +50 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +5 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts +2 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts +8 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Deserializer.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Deserializer.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +1 -35
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPResponse.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Input.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Input.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/JSHandle.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/JSHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +3 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Serializer.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Serializer.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js +3 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Connection.d.ts +4 -193
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts +14 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +2 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts +8 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js +3 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/{cdp → common}/AriaQueryHandler.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/{cdp → common}/AriaQueryHandler.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Cookie.d.ts +0 -39
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Cookie.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts +0 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js +0 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/index-browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/index-browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.d.ts +19 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.js +22 -13
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +33 -44
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +124 -58
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +12 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js +13 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts +10 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js +50 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +5 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BidiOverCdp.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BidiOverCdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts +2 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts +8 -7
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Deserializer.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Deserializer.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js +1 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPResponse.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Input.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Input.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/JSHandle.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/JSHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +3 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Serializer.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Serializer.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js +3 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Connection.d.ts +4 -193
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.d.ts +14 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/util.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +2 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts +8 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js +3 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/{cdp → common}/AriaQueryHandler.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/{cdp → common}/AriaQueryHandler.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Cookie.d.ts +0 -39
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Cookie.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/GetQueryHandler.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/GetQueryHandler.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/GetQueryHandler.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts +0 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js +0 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/index-browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/index-browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.d.ts +19 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.js +22 -10
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/types.d.ts +34 -45
- package/front_end/third_party/puppeteer/package/package.json +3 -2
- package/front_end/third_party/puppeteer/package/src/api/Browser.ts +21 -1
- package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +64 -3
- package/front_end/third_party/puppeteer/package/src/api/Page.ts +5 -3
- package/front_end/third_party/puppeteer/package/src/bidi/BidiOverCdp.ts +10 -12
- package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/bidi/BrowserContext.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +13 -13
- package/front_end/third_party/puppeteer/package/src/bidi/Deserializer.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +2 -5
- package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/HTTPResponse.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/Input.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/JSHandle.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +4 -2
- package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/bidi/Serializer.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/Browser.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/bidi/core/Connection.ts +4 -205
- package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/Session.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/UserContext.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/core/UserPrompt.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/bidi/util.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +3 -5
- package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/NetworkManager.ts +11 -2
- package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +0 -1
- package/front_end/third_party/puppeteer/package/src/{cdp → common}/AriaQueryHandler.ts +3 -2
- package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/common/Cookie.ts +0 -39
- package/front_end/third_party/puppeteer/package/src/common/GetQueryHandler.ts +1 -2
- package/front_end/third_party/puppeteer/package/src/common/common.ts +1 -0
- package/front_end/third_party/puppeteer/package/src/common/util.ts +0 -4
- package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/index-browser.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/revisions.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/util/disposable.ts +30 -12
- package/front_end/third_party/puppeteer/puppeteer-tsconfig.json +1 -1
- package/front_end/third_party/puppeteer-replay/README.chromium +2 -2
- package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.cjs +7 -1
- package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.cjs.map +1 -1
- package/front_end/third_party/puppeteer-replay/package/lib/main.js +7 -1
- package/front_end/third_party/puppeteer-replay/package/lib/main.js.map +1 -1
- package/front_end/third_party/puppeteer-replay/package/package.json +3 -3
- package/front_end/ui/components/adorners/Adorner.ts +1 -1
- package/front_end/ui/components/adorners/adorner.css +1 -1
- package/front_end/ui/components/adorners/adorners.ts +1 -1
- package/front_end/ui/components/buttons/Button.ts +1 -1
- package/front_end/ui/components/buttons/FloatingButton.ts +1 -1
- package/front_end/ui/components/buttons/button.css +1 -1
- package/front_end/ui/components/buttons/buttons.ts +1 -1
- package/front_end/ui/components/buttons/floatingButton.css +1 -1
- package/front_end/ui/components/buttons/textButton.css +1 -1
- package/front_end/ui/components/cards/Card.ts +1 -1
- package/front_end/ui/components/cards/card.css +1 -1
- package/front_end/ui/components/cards/cards.ts +1 -1
- package/front_end/ui/components/chrome_link/ChromeLink.ts +1 -1
- package/front_end/ui/components/chrome_link/chromeLink.css +1 -1
- package/front_end/ui/components/chrome_link/chrome_link.ts +1 -1
- package/front_end/ui/components/code_highlighter/CodeHighlighter.ts +1 -1
- package/front_end/ui/components/code_highlighter/codeHighlighter.css +1 -1
- package/front_end/ui/components/code_highlighter/code_highlighter.ts +1 -1
- package/front_end/ui/components/copy_to_clipboard/copyToClipboard.ts +1 -1
- package/front_end/ui/components/copy_to_clipboard/copy_to_clipboard.ts +1 -1
- package/front_end/ui/components/dialogs/ButtonDialog.ts +1 -1
- package/front_end/ui/components/dialogs/Dialog.ts +1 -1
- package/front_end/ui/components/dialogs/ShortcutDialog.ts +1 -1
- package/front_end/ui/components/dialogs/buttonDialog.css +1 -1
- package/front_end/ui/components/dialogs/dialog.css +1 -1
- package/front_end/ui/components/dialogs/dialogs.ts +1 -1
- package/front_end/ui/components/dialogs/shortcutDialog.css +1 -1
- package/front_end/ui/components/diff_view/DiffView.ts +1 -1
- package/front_end/ui/components/diff_view/diffView.css +1 -1
- package/front_end/ui/components/diff_view/diff_view.ts +1 -1
- package/front_end/ui/components/docs/breadcrumbs_perf/initial-breadcrumb-perf.html +1 -1
- package/front_end/ui/components/docs/breadcrumbs_perf/initial-breadcrumb-perf.ts +1 -1
- package/front_end/ui/components/docs/breadcrumbs_perf/nested-breadcrumbs-perf.html +1 -1
- package/front_end/ui/components/docs/breadcrumbs_perf/nested-breadcrumbs-perf.ts +1 -1
- package/front_end/ui/components/docs/button/basic.html +1 -1
- package/front_end/ui/components/docs/button/basic.ts +1 -1
- package/front_end/ui/components/docs/color_swatch/basic.html +1 -1
- package/front_end/ui/components/docs/color_swatch/basic.ts +1 -1
- package/front_end/ui/components/docs/color_swatch/change-color.html +1 -1
- package/front_end/ui/components/docs/color_swatch/change-color.ts +1 -1
- package/front_end/ui/components/docs/combo_box/basic.html +1 -1
- package/front_end/ui/components/docs/combo_box/basic.ts +1 -1
- package/front_end/ui/components/docs/component_docs.ts +1 -1
- package/front_end/ui/components/docs/component_docs_styles.css +1 -1
- package/front_end/ui/components/docs/computed_style_property/basic.html +1 -1
- package/front_end/ui/components/docs/computed_style_property/basic.ts +1 -1
- package/front_end/ui/components/docs/computed_style_property/traceable.html +1 -1
- package/front_end/ui/components/docs/computed_style_property/traceable.ts +1 -1
- package/front_end/ui/components/docs/computed_style_trace/basic.html +1 -1
- package/front_end/ui/components/docs/computed_style_trace/basic.ts +1 -1
- package/front_end/ui/components/docs/console_insight/basic.html +1 -1
- package/front_end/ui/components/docs/console_insight/basic.ts +1 -1
- package/front_end/ui/components/docs/console_insight/error.html +1 -1
- package/front_end/ui/components/docs/console_insight/error.ts +1 -1
- package/front_end/ui/components/docs/console_insight/loading.html +1 -1
- package/front_end/ui/components/docs/console_insight/loading.ts +1 -1
- package/front_end/ui/components/docs/context_menu/basic.html +1 -1
- package/front_end/ui/components/docs/context_menu/basic.ts +1 -1
- package/front_end/ui/components/docs/create_breadcrumbs.ts +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/basic.html +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/basic.ts +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/helpers.ts +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/scroll-to-active-element.html +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/scroll-to-active-element.ts +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/scroll.html +1 -1
- package/front_end/ui/components/docs/elements_breadcrumbs/scroll.ts +1 -1
- package/front_end/ui/components/docs/expandable_list/basic.html +1 -1
- package/front_end/ui/components/docs/expandable_list/basic.ts +1 -1
- package/front_end/ui/components/docs/icon_button/basic.html +1 -1
- package/front_end/ui/components/docs/icon_button/basic.ts +1 -1
- package/front_end/ui/components/docs/icon_component/basic.html +1 -1
- package/front_end/ui/components/docs/icon_component/basic.ts +1 -1
- package/front_end/ui/components/docs/input/basic.html +1 -1
- package/front_end/ui/components/docs/input/basic.ts +1 -1
- package/front_end/ui/components/docs/issue_counter/basic.html +1 -1
- package/front_end/ui/components/docs/issue_counter/basic.ts +1 -1
- package/front_end/ui/components/docs/issue_link_icon/basic.html +1 -1
- package/front_end/ui/components/docs/issue_link_icon/basic.ts +1 -1
- package/front_end/ui/components/docs/legacy_color_invert/basic.html +1 -1
- package/front_end/ui/components/docs/legacy_color_invert/basic.ts +1 -1
- package/front_end/ui/components/docs/linear_memory_inspector/basic.html +1 -1
- package/front_end/ui/components/docs/linear_memory_inspector/basic.ts +1 -1
- package/front_end/ui/components/docs/linkifier/simple-url.html +1 -1
- package/front_end/ui/components/docs/linkifier/simple-url.ts +1 -1
- package/front_end/ui/components/docs/markdown_image/basic.html +1 -1
- package/front_end/ui/components/docs/markdown_image/basic.ts +1 -1
- package/front_end/ui/components/docs/markdown_link/basic.html +1 -1
- package/front_end/ui/components/docs/markdown_link/basic.ts +1 -1
- package/front_end/ui/components/docs/markdown_view/basic.html +1 -1
- package/front_end/ui/components/docs/markdown_view/basic.ts +1 -1
- package/front_end/ui/components/docs/markdown_view/code-block.html +1 -1
- package/front_end/ui/components/docs/markdown_view/code-block.ts +1 -1
- package/front_end/ui/components/docs/menu/basic.html +2 -2
- package/front_end/ui/components/docs/menu/basic.ts +1 -1
- package/front_end/ui/components/docs/panel_feedback/basic.html +1 -1
- package/front_end/ui/components/docs/panel_feedback/basic.ts +1 -1
- package/front_end/ui/components/docs/panel_feedback/button.html +1 -1
- package/front_end/ui/components/docs/panel_feedback/button.ts +1 -1
- package/front_end/ui/components/docs/panel_introduction_steps/basic.html +1 -1
- package/front_end/ui/components/docs/panel_introduction_steps/basic.ts +1 -1
- package/front_end/ui/components/docs/perf_piechart/basic-with-legend.html +1 -1
- package/front_end/ui/components/docs/perf_piechart/basic-with-legend.ts +1 -1
- package/front_end/ui/components/docs/perf_piechart/basic-without-legend.html +1 -1
- package/front_end/ui/components/docs/perf_piechart/basic-without-legend.ts +1 -1
- package/front_end/ui/components/docs/radio_button/basic.html +1 -1
- package/front_end/ui/components/docs/radio_button/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_control_button/basic.html +1 -1
- package/front_end/ui/components/docs/recorder_control_button/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_create_recording_view/basic.html +1 -1
- package/front_end/ui/components/docs/recorder_create_recording_view/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_recording_list_view/basic.html +1 -1
- package/front_end/ui/components/docs/recorder_recording_list_view/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_select_button/basic.html +1 -1
- package/front_end/ui/components/docs/recorder_select_button/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_split_view/basic.html +1 -1
- package/front_end/ui/components/docs/recorder_split_view/basic.ts +1 -1
- package/front_end/ui/components/docs/report/basic.html +1 -1
- package/front_end/ui/components/docs/report/basic.ts +1 -1
- package/front_end/ui/components/docs/request_link_icon/basic.html +1 -1
- package/front_end/ui/components/docs/request_link_icon/basic.ts +1 -1
- package/front_end/ui/components/docs/select_menu/basic.html +1 -1
- package/front_end/ui/components/docs/select_menu/basic.ts +1 -1
- package/front_end/ui/components/docs/select_menu/wide-option.html +1 -1
- package/front_end/ui/components/docs/select_menu/wide-option.ts +1 -1
- package/front_end/ui/components/docs/slider/basic.html +1 -1
- package/front_end/ui/components/docs/slider/basic.ts +1 -1
- package/front_end/ui/components/docs/snackbars/basic.html +1 -1
- package/front_end/ui/components/docs/snackbars/basic.ts +1 -1
- package/front_end/ui/components/docs/spinners/basic.html +1 -1
- package/front_end/ui/components/docs/spinners/basic.ts +1 -1
- package/front_end/ui/components/docs/style_property_editor/flex.html +1 -2
- package/front_end/ui/components/docs/style_property_editor/flex.ts +1 -1
- package/front_end/ui/components/docs/style_property_editor/grid.html +1 -1
- package/front_end/ui/components/docs/style_property_editor/grid.ts +1 -1
- package/front_end/ui/components/docs/survey_link/basic.html +1 -1
- package/front_end/ui/components/docs/survey_link/basic.ts +1 -1
- package/front_end/ui/components/docs/switch/basic.html +1 -1
- package/front_end/ui/components/docs/switch/basic.ts +1 -1
- package/front_end/ui/components/docs/text_prompt/basic.html +2 -2
- package/front_end/ui/components/docs/text_prompt/basic.ts +1 -1
- package/front_end/ui/components/docs/theme_colors/basic.html +1 -1
- package/front_end/ui/components/docs/theme_colors/basic.ts +1 -1
- package/front_end/ui/components/docs/toggle_dark_mode.ts +1 -1
- package/front_end/ui/components/docs/toggle_fonts.ts +1 -1
- package/front_end/ui/components/docs/tooltip/basic.html +1 -1
- package/front_end/ui/components/docs/tooltip/basic.ts +1 -1
- package/front_end/ui/components/docs/tree_outline/basic.html +1 -1
- package/front_end/ui/components/docs/tree_outline/basic.ts +1 -1
- package/front_end/ui/components/docs/tree_outline/custom-renderers.html +1 -1
- package/front_end/ui/components/docs/tree_outline/custom-renderers.ts +1 -1
- package/front_end/ui/components/docs/tree_outline/lazy-children.html +1 -1
- package/front_end/ui/components/docs/tree_outline/lazy-children.ts +1 -1
- package/front_end/ui/components/docs/tree_outline/sample-data.ts +1 -1
- package/front_end/ui/components/docs/user_agent_client_hints/basic.html +1 -1
- package/front_end/ui/components/docs/user_agent_client_hints/basic.ts +1 -1
- package/front_end/ui/components/expandable_list/ExpandableList.ts +1 -1
- package/front_end/ui/components/expandable_list/expandableList.css +1 -1
- package/front_end/ui/components/expandable_list/expandable_list.ts +1 -1
- package/front_end/ui/components/helpers/component-server-setup.ts +1 -1
- package/front_end/ui/components/helpers/directives.ts +1 -1
- package/front_end/ui/components/helpers/get-root-node.ts +1 -1
- package/front_end/ui/components/helpers/helpers.ts +1 -1
- package/front_end/ui/components/helpers/scheduled-render.ts +1 -1
- package/front_end/ui/components/highlighting/HighlightManager.ts +1 -1
- package/front_end/ui/components/highlighting/highlighting.ts +1 -1
- package/front_end/ui/components/icon_button/FileSourceIcon.ts +1 -1
- package/front_end/ui/components/icon_button/Icon.ts +1 -1
- package/front_end/ui/components/icon_button/IconButton.ts +1 -1
- package/front_end/ui/components/icon_button/fileSourceIcon.css +1 -1
- package/front_end/ui/components/icon_button/icon.css +1 -1
- package/front_end/ui/components/icon_button/iconButton.css +1 -1
- package/front_end/ui/components/icon_button/icon_button.ts +1 -1
- package/front_end/ui/components/input/checkbox.css +1 -1
- package/front_end/ui/components/input/input.ts +1 -1
- package/front_end/ui/components/input/textInput.css +1 -1
- package/front_end/ui/components/issue_counter/IssueCounter.ts +1 -1
- package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +1 -1
- package/front_end/ui/components/issue_counter/issueCounter.css +1 -1
- package/front_end/ui/components/issue_counter/issueLinkIcon.css +1 -1
- package/front_end/ui/components/issue_counter/issue_counter.ts +1 -1
- package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -1
- package/front_end/ui/components/legacy_wrapper/legacy_wrapper.ts +1 -1
- package/front_end/ui/components/linkifier/LinkifierImpl.ts +1 -1
- package/front_end/ui/components/linkifier/LinkifierUtils.ts +1 -1
- package/front_end/ui/components/linkifier/linkifier.ts +1 -1
- package/front_end/ui/components/linkifier/linkifierImpl.css +1 -1
- package/front_end/ui/components/markdown_view/CodeBlock.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownImage.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownImagesMap.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownLink.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownLinksMap.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownView.ts +1 -1
- package/front_end/ui/components/markdown_view/codeBlock.css +1 -1
- package/front_end/ui/components/markdown_view/markdownImage.css +1 -1
- package/front_end/ui/components/markdown_view/markdownLink.css +1 -1
- package/front_end/ui/components/markdown_view/markdownView.css +1 -1
- package/front_end/ui/components/markdown_view/markdown_view.ts +1 -1
- package/front_end/ui/components/menus/Menu.ts +1 -1
- package/front_end/ui/components/menus/SelectMenu.ts +1 -1
- package/front_end/ui/components/menus/menu.css +1 -1
- package/front_end/ui/components/menus/menuGroup.css +1 -1
- package/front_end/ui/components/menus/menuItem.css +1 -1
- package/front_end/ui/components/menus/menus.ts +1 -1
- package/front_end/ui/components/menus/selectMenu.css +1 -1
- package/front_end/ui/components/menus/selectMenuButton.css +1 -1
- package/front_end/ui/components/node_text/NodeText.ts +1 -1
- package/front_end/ui/components/node_text/nodeText.css +1 -1
- package/front_end/ui/components/node_text/node_text.ts +1 -1
- package/front_end/ui/components/panel_feedback/FeedbackButton.ts +1 -1
- package/front_end/ui/components/panel_feedback/PanelFeedback.ts +1 -1
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +1 -1
- package/front_end/ui/components/panel_feedback/panelFeedback.css +1 -5
- package/front_end/ui/components/panel_feedback/panel_feedback.ts +1 -1
- package/front_end/ui/components/panel_feedback/previewToggle.css +1 -1
- package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +1 -1
- package/front_end/ui/components/panel_introduction_steps/panelIntroductionSteps.css +1 -1
- package/front_end/ui/components/panel_introduction_steps/panel_introduction_steps.ts +1 -1
- package/front_end/ui/components/render_coordinator/render_coordinator.ts +1 -1
- package/front_end/ui/components/report_view/ReportView.ts +1 -1
- package/front_end/ui/components/report_view/report.css +1 -1
- package/front_end/ui/components/report_view/reportKey.css +1 -1
- package/front_end/ui/components/report_view/reportSection.css +1 -1
- package/front_end/ui/components/report_view/reportSectionDivider.css +1 -1
- package/front_end/ui/components/report_view/reportSectionHeader.css +1 -1
- package/front_end/ui/components/report_view/reportValue.css +1 -1
- package/front_end/ui/components/report_view/report_view.ts +1 -1
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +1 -1
- package/front_end/ui/components/request_link_icon/requestLinkIcon.css +1 -1
- package/front_end/ui/components/request_link_icon/request_link_icon.ts +1 -1
- package/front_end/ui/components/settings/SettingCheckbox.ts +10 -2
- package/front_end/ui/components/settings/SettingDeprecationWarning.ts +1 -1
- package/front_end/ui/components/settings/settingCheckbox.css +1 -1
- package/front_end/ui/components/settings/settingDeprecationWarning.css +1 -1
- package/front_end/ui/components/settings/settings.ts +1 -1
- package/front_end/ui/components/snackbars/Snackbar.ts +1 -1
- package/front_end/ui/components/snackbars/snackbar.css +1 -1
- package/front_end/ui/components/snackbars/snackbars.ts +1 -1
- package/front_end/ui/components/spinners/Spinner.ts +1 -1
- package/front_end/ui/components/spinners/spinner.css +1 -1
- package/front_end/ui/components/spinners/spinners.ts +1 -1
- package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +1 -1
- package/front_end/ui/components/srgb_overlay/srgbOverlay.css +1 -1
- package/front_end/ui/components/srgb_overlay/srgb_overlay.ts +1 -1
- package/front_end/ui/components/suggestion_input/SuggestionInput.ts +1 -1
- package/front_end/ui/components/suggestion_input/suggestionInput.css +1 -1
- package/front_end/ui/components/suggestion_input/suggestion_input.ts +1 -1
- package/front_end/ui/components/survey_link/SurveyLink.ts +1 -1
- package/front_end/ui/components/survey_link/surveyLink.css +1 -1
- package/front_end/ui/components/survey_link/survey_link.ts +1 -1
- package/front_end/ui/components/switch/SwitchImpl.ts +1 -1
- package/front_end/ui/components/switch/switch.css +1 -1
- package/front_end/ui/components/switch/switch.ts +1 -1
- package/front_end/ui/components/text_editor/AiCodeCompletionTeaserPlaceholder.ts +1 -1
- package/front_end/ui/components/text_editor/AutocompleteHistory.ts +1 -1
- package/front_end/ui/components/text_editor/ExecutionPositionHighlighter.ts +1 -1
- package/front_end/ui/components/text_editor/TextEditor.ts +1 -1
- package/front_end/ui/components/text_editor/TextEditorHistory.ts +1 -1
- package/front_end/ui/components/text_editor/config.ts +1 -1
- package/front_end/ui/components/text_editor/cursor_tooltip.ts +1 -1
- package/front_end/ui/components/text_editor/javascript.ts +1 -1
- package/front_end/ui/components/text_editor/position.ts +1 -1
- package/front_end/ui/components/text_editor/textEditor.css +1 -1
- package/front_end/ui/components/text_editor/text_editor.ts +1 -1
- package/front_end/ui/components/text_editor/theme.ts +1 -1
- package/front_end/ui/components/text_prompt/TextPrompt.ts +1 -1
- package/front_end/ui/components/text_prompt/textPrompt.css +1 -1
- package/front_end/ui/components/text_prompt/text_prompt.ts +1 -1
- package/front_end/ui/components/tooltips/Tooltip.ts +1 -1
- package/front_end/ui/components/tooltips/tooltip.css +1 -1
- package/front_end/ui/components/tooltips/tooltips.ts +1 -1
- package/front_end/ui/components/tree_outline/TreeOutline.ts +1 -1
- package/front_end/ui/components/tree_outline/TreeOutlineUtils.ts +1 -1
- package/front_end/ui/components/tree_outline/treeOutline.css +1 -1
- package/front_end/ui/components/tree_outline/tree_outline.ts +1 -1
- package/front_end/ui/components/visibility.gni +1 -1
- package/front_end/ui/legacy/ARIAUtils.ts +1 -1
- package/front_end/ui/legacy/ActionRegistration.ts +1 -1
- package/front_end/ui/legacy/ActionRegistry.ts +1 -1
- package/front_end/ui/legacy/Context.ts +1 -1
- package/front_end/ui/legacy/ContextFlavorListener.ts +1 -1
- package/front_end/ui/legacy/ContextMenu.ts +3 -29
- package/front_end/ui/legacy/Dialog.ts +41 -42
- package/front_end/ui/legacy/DockController.ts +3 -29
- package/front_end/ui/legacy/DropTarget.ts +1 -1
- package/front_end/ui/legacy/EmptyWidget.ts +3 -29
- package/front_end/ui/legacy/FilterBar.ts +3 -29
- package/front_end/ui/legacy/FilterSuggestionBuilder.ts +1 -1
- package/front_end/ui/legacy/ForwardedInputEventHandler.ts +1 -1
- package/front_end/ui/legacy/Fragment.ts +1 -1
- package/front_end/ui/legacy/GlassPane.ts +1 -1
- package/front_end/ui/legacy/Infobar.ts +1 -1
- package/front_end/ui/legacy/InplaceEditor.ts +1 -1
- package/front_end/ui/legacy/InspectorView.ts +10 -38
- package/front_end/ui/legacy/KeyboardShortcut.ts +1 -1
- package/front_end/ui/legacy/ListControl.ts +1 -1
- package/front_end/ui/legacy/ListModel.ts +1 -1
- package/front_end/ui/legacy/ListWidget.ts +1 -1
- package/front_end/ui/legacy/Panel.ts +1 -1
- package/front_end/ui/legacy/PopoverHelper.ts +3 -29
- package/front_end/ui/legacy/ProgressIndicator.ts +3 -29
- package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +1 -1
- package/front_end/ui/legacy/ReportView.ts +1 -1
- package/front_end/ui/legacy/ResizerWidget.ts +1 -1
- package/front_end/ui/legacy/RootView.ts +1 -1
- package/front_end/ui/legacy/SearchableView.ts +74 -56
- package/front_end/ui/legacy/SettingsUI.ts +8 -34
- package/front_end/ui/legacy/ShortcutRegistry.ts +1 -1
- package/front_end/ui/legacy/SoftContextMenu.ts +7 -30
- package/front_end/ui/legacy/SoftDropDown.ts +1 -1
- package/front_end/ui/legacy/SplitWidget.ts +3 -29
- package/front_end/ui/legacy/SuggestBox.ts +3 -29
- package/front_end/ui/legacy/TabbedPane.ts +16 -46
- package/front_end/ui/legacy/TargetCrashedScreen.ts +1 -1
- package/front_end/ui/legacy/TextPrompt.ts +1 -1
- package/front_end/ui/legacy/ThrottledWidget.ts +1 -1
- package/front_end/ui/legacy/Toolbar.ts +8 -30
- package/front_end/ui/legacy/Tooltip.ts +1 -1
- package/front_end/ui/legacy/Treeoutline.ts +1 -1
- package/front_end/ui/legacy/UIUtils.ts +1 -8
- package/front_end/ui/legacy/View.ts +1 -1
- package/front_end/ui/legacy/ViewManager.ts +1 -1
- package/front_end/ui/legacy/ViewRegistration.ts +1 -1
- package/front_end/ui/legacy/Widget.ts +1 -1
- package/front_end/ui/legacy/XElement.ts +1 -1
- package/front_end/ui/legacy/XLink.ts +1 -1
- package/front_end/ui/legacy/XWidget.ts +1 -1
- package/front_end/ui/legacy/ZoomManager.ts +1 -1
- package/front_end/ui/legacy/checkboxTextLabel.css +1 -1
- package/front_end/ui/legacy/components/color_picker/ColorFormatSpec.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/ContrastInfo.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/ContrastOverlay.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +2 -5
- package/front_end/ui/legacy/components/color_picker/color_picker.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/spectrum.css +1 -1
- package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +1 -1
- package/front_end/ui/legacy/components/cookie_table/cookie_table.ts +1 -1
- package/front_end/ui/legacy/components/cookie_table/cookiesTable.css +2 -2
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +5 -6
- package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +1 -1
- package/front_end/ui/legacy/components/data_grid/ShowMoreDataGridNode.ts +3 -29
- package/front_end/ui/legacy/components/data_grid/SortableDataGrid.ts +1 -1
- package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +1 -1
- package/front_end/ui/legacy/components/data_grid/dataGrid.css +1 -1
- package/front_end/ui/legacy/components/data_grid/data_grid.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/AnimationTimingModel.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/BezierUI.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngleUtils.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSLinearEasingModel.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/FontEditorUnitConverter.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/FontEditorUtils.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/InlineEditorUtils.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/SwatchPopoverHelper.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/Swatches.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/animationNameSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/bezierEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/colorMixSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/colorSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssAngle.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssAngleEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssAngleSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssShadowEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssShadowSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/fontEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/inline_editor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/linkSwatch.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/swatchPopover.css +1 -1
- package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +3 -29
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/RemoteObjectPreviewFormatter.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/customPreviewComponent.css +1 -1
- package/front_end/ui/legacy/components/object_ui/objectPopover.css +1 -1
- package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +1 -1
- package/front_end/ui/legacy/components/object_ui/objectValue.css +1 -1
- package/front_end/ui/legacy/components/object_ui/object_ui-meta.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/object_ui.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/CanvasHelper.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +3 -3
- package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +3 -3
- package/front_end/ui/legacy/components/perf_ui/Font.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/GCActionDelegate.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +2 -5
- package/front_end/ui/legacy/components/perf_ui/LiveHeapProfile.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/NetworkPriorities.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +6 -32
- package/front_end/ui/legacy/components/perf_ui/PieChart.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +5 -31
- package/front_end/ui/legacy/components/perf_ui/chartViewport.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/filmStripView.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/flameChart.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/overviewGrid.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/perf_ui-meta.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/perf_ui.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/pieChart.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/timelineGrid.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/timelineOverviewInfo.css +1 -1
- package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +1 -1
- package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +1 -1
- package/front_end/ui/legacy/components/quick_open/HelpQuickOpen.ts +1 -1
- package/front_end/ui/legacy/components/quick_open/QuickOpen.ts +1 -1
- package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +1 -1
- package/front_end/ui/legacy/components/quick_open/quick_open-meta.ts +1 -1
- package/front_end/ui/legacy/components/quick_open/quick_open.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/JSONView.ts +13 -39
- package/front_end/ui/legacy/components/source_frame/PreviewFactory.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +7 -29
- package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/XMLView.ts +7 -3
- package/front_end/ui/legacy/components/source_frame/fontView.css +1 -1
- package/front_end/ui/legacy/components/source_frame/imageView.css +1 -1
- package/front_end/ui/legacy/components/source_frame/jsonView.css +1 -1
- package/front_end/ui/legacy/components/source_frame/resourceSourceFrame.css +1 -1
- package/front_end/ui/legacy/components/source_frame/source_frame-meta.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/source_frame.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/xmlTree.css +1 -1
- package/front_end/ui/legacy/components/source_frame/xmlView.css +1 -1
- package/front_end/ui/legacy/components/utils/ImagePreview.ts +1 -1
- package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +1 -1
- package/front_end/ui/legacy/components/utils/Linkifier.ts +4 -33
- package/front_end/ui/legacy/components/utils/Reload.ts +1 -1
- package/front_end/ui/legacy/components/utils/TargetDetachedDialog.ts +1 -1
- package/front_end/ui/legacy/components/utils/imagePreview.css +1 -1
- package/front_end/ui/legacy/components/utils/jsUtils.css +1 -1
- package/front_end/ui/legacy/components/utils/utils.ts +1 -1
- package/front_end/ui/legacy/confirmDialog.css +1 -1
- package/front_end/ui/legacy/dialog.css +1 -1
- package/front_end/ui/legacy/dropTarget.css +1 -1
- package/front_end/ui/legacy/emptyWidget.css +1 -1
- package/front_end/ui/legacy/filter.css +3 -27
- package/front_end/ui/legacy/glassPane.css +1 -1
- package/front_end/ui/legacy/infobar.css +1 -1
- package/front_end/ui/legacy/inlineButton.css +1 -1
- package/front_end/ui/legacy/inspectorCommon.css +1 -1
- package/front_end/ui/legacy/legacy.ts +1 -1
- package/front_end/ui/legacy/listWidget.css +1 -1
- package/front_end/ui/legacy/popover.css +1 -1
- package/front_end/ui/legacy/progressIndicator.css +1 -1
- package/front_end/ui/legacy/remoteDebuggingTerminatedScreen.css +1 -1
- package/front_end/ui/legacy/reportView.css +1 -1
- package/front_end/ui/legacy/rootView.css +1 -1
- package/front_end/ui/legacy/searchableView.css +1 -5
- package/front_end/ui/legacy/smallBubble.css +1 -1
- package/front_end/ui/legacy/softContextMenu.css +1 -1
- package/front_end/ui/legacy/softDropDown.css +1 -1
- package/front_end/ui/legacy/softDropDownButton.css +1 -1
- package/front_end/ui/legacy/suggestBox.css +3 -27
- package/front_end/ui/legacy/targetCrashedScreen.css +1 -1
- package/front_end/ui/legacy/textPrompt.css +1 -1
- package/front_end/ui/legacy/theme_support/ThemeSupport.ts +1 -1
- package/front_end/ui/legacy/theme_support/theme_support.ts +1 -1
- package/front_end/ui/legacy/toolbar.css +1 -1
- package/front_end/ui/legacy/treeoutline.css +1 -1
- package/front_end/ui/legacy/viewContainers.css +1 -1
- package/front_end/ui/legacy/visibility.gni +1 -1
- package/front_end/ui/lit/i18n-template.ts +1 -1
- package/front_end/ui/lit/lit.ts +1 -1
- package/front_end/ui/lit/strip-whitespace.ts +1 -1
- package/front_end/ui/lit/visibility.gni +1 -1
- package/front_end/ui/visual_logging/Debugging.ts +1 -1
- package/front_end/ui/visual_logging/DomState.ts +1 -1
- package/front_end/ui/visual_logging/KnownContextValues.ts +3 -1
- package/front_end/ui/visual_logging/Loggable.ts +1 -1
- package/front_end/ui/visual_logging/LoggingConfig.ts +1 -1
- package/front_end/ui/visual_logging/LoggingDriver.ts +1 -1
- package/front_end/ui/visual_logging/LoggingEvents.ts +1 -1
- package/front_end/ui/visual_logging/LoggingState.ts +1 -1
- package/front_end/ui/visual_logging/NonDomState.ts +1 -1
- package/front_end/ui/visual_logging/visual_logging-testing.ts +1 -1
- package/front_end/ui/visual_logging/visual_logging.ts +1 -1
- package/front_end/visibility.gni +1 -1
- package/inspector_overlay/common.css +1 -1
- package/inspector_overlay/common.ts +1 -1
- package/inspector_overlay/css_grid_label_helpers.ts +1 -1
- package/inspector_overlay/debug/main.html +1 -1
- package/inspector_overlay/debug/tool_highlight_bottom_arrow.html +1 -1
- package/inspector_overlay/debug/tool_highlight_explicit_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_alignment.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_baseline.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_gap.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_item_base_size.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_multiple.html +1 -1
- package/inspector_overlay/debug/tool_highlight_flex_transformed.html +1 -1
- package/inspector_overlay/debug/tool_highlight_fullpage_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid_multiple.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid_rtl.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid_sizes.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid_transformed.html +1 -1
- package/inspector_overlay/debug/tool_highlight_grid_vertical.html +1 -1
- package/inspector_overlay/debug/tool_highlight_huge_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_implicit_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_named_areas_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_named_lines_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_narrow_tracks_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_rulers.html +1 -1
- package/inspector_overlay/debug/tool_highlight_subpixel_grid.html +1 -1
- package/inspector_overlay/debug/tool_highlight_top_arrow.html +1 -1
- package/inspector_overlay/debug/tool_highlight_with_persistent_grid.html +1 -1
- package/inspector_overlay/debug/tool_paused.html +1 -1
- package/inspector_overlay/debug/tool_persistent_flex.html +1 -3
- package/inspector_overlay/debug/tool_persistent_isolated_element.html +1 -5
- package/inspector_overlay/debug/tool_persistent_scroll_snap.html +1 -5
- package/inspector_overlay/debug/tool_screenshot.html +1 -1
- package/inspector_overlay/debug/tool_source_order.html +1 -1
- package/inspector_overlay/debug/tool_viewport_size.html +1 -1
- package/inspector_overlay/debug/tool_window_controls.html +2 -2
- package/inspector_overlay/debug/tool_window_controls_overlay.html +2 -2
- package/inspector_overlay/drag_resize_handler.ts +1 -1
- package/inspector_overlay/highlight_common.ts +1 -1
- package/inspector_overlay/highlight_container_query.ts +1 -1
- package/inspector_overlay/highlight_flex_common.ts +1 -1
- package/inspector_overlay/highlight_grid_common.ts +1 -1
- package/inspector_overlay/highlight_isolated_element.ts +1 -1
- package/inspector_overlay/highlight_scroll_snap.ts +1 -1
- package/inspector_overlay/loadCSS.rollup.js +1 -1
- package/inspector_overlay/main.ts +1 -1
- package/inspector_overlay/testing/InspectorOverlayHelpers.ts +1 -1
- package/inspector_overlay/tool_grid.css +1 -1
- package/inspector_overlay/tool_highlight.css +1 -1
- package/inspector_overlay/tool_highlight.ts +1 -1
- package/inspector_overlay/tool_paused.css +1 -1
- package/inspector_overlay/tool_paused.ts +1 -1
- package/inspector_overlay/tool_persistent.ts +1 -1
- package/inspector_overlay/tool_screenshot.css +1 -1
- package/inspector_overlay/tool_screenshot.ts +1 -1
- package/inspector_overlay/tool_source_order.css +1 -1
- package/inspector_overlay/tool_source_order.ts +1 -1
- package/inspector_overlay/tool_viewport_size.ts +1 -1
- package/inspector_overlay/tool_window_controls.css +1 -1
- package/inspector_overlay/tool_window_controls.ts +1 -1
- package/package.json +1 -1
- package/front_end/Images/src/gdp-logo-standalone.svg +0 -9
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js.map +0 -1
@@ -3,204 +3,15 @@
|
|
3
3
|
* Copyright 2024 Google Inc.
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
5
5
|
*/
|
6
|
-
import type
|
6
|
+
import type { Event } from 'webdriver-bidi-protocol';
|
7
|
+
import type { Commands } from 'webdriver-bidi-protocol';
|
7
8
|
import type { EventEmitter } from '../../common/EventEmitter.js';
|
8
|
-
|
9
|
-
* @internal
|
10
|
-
*/
|
11
|
-
export interface Commands {
|
12
|
-
'script.evaluate': {
|
13
|
-
params: Bidi.Script.EvaluateParameters;
|
14
|
-
returnType: Bidi.Script.EvaluateResult;
|
15
|
-
};
|
16
|
-
'script.callFunction': {
|
17
|
-
params: Bidi.Script.CallFunctionParameters;
|
18
|
-
returnType: Bidi.Script.EvaluateResult;
|
19
|
-
};
|
20
|
-
'script.disown': {
|
21
|
-
params: Bidi.Script.DisownParameters;
|
22
|
-
returnType: Bidi.EmptyResult;
|
23
|
-
};
|
24
|
-
'script.addPreloadScript': {
|
25
|
-
params: Bidi.Script.AddPreloadScriptParameters;
|
26
|
-
returnType: Bidi.Script.AddPreloadScriptResult;
|
27
|
-
};
|
28
|
-
'script.removePreloadScript': {
|
29
|
-
params: Bidi.Script.RemovePreloadScriptParameters;
|
30
|
-
returnType: Bidi.EmptyResult;
|
31
|
-
};
|
32
|
-
'browser.close': {
|
33
|
-
params: Bidi.EmptyParams;
|
34
|
-
returnType: Bidi.EmptyResult;
|
35
|
-
};
|
36
|
-
'browser.createUserContext': {
|
37
|
-
params: Bidi.Browser.CreateUserContextParameters;
|
38
|
-
returnType: Bidi.Browser.CreateUserContextResult;
|
39
|
-
};
|
40
|
-
'browser.getUserContexts': {
|
41
|
-
params: Bidi.EmptyParams;
|
42
|
-
returnType: Bidi.Browser.GetUserContextsResult;
|
43
|
-
};
|
44
|
-
'browser.removeUserContext': {
|
45
|
-
params: {
|
46
|
-
userContext: Bidi.Browser.UserContext;
|
47
|
-
};
|
48
|
-
returnType: Bidi.Browser.RemoveUserContext;
|
49
|
-
};
|
50
|
-
'browsingContext.activate': {
|
51
|
-
params: Bidi.BrowsingContext.ActivateParameters;
|
52
|
-
returnType: Bidi.EmptyResult;
|
53
|
-
};
|
54
|
-
'browsingContext.create': {
|
55
|
-
params: Bidi.BrowsingContext.CreateParameters;
|
56
|
-
returnType: Bidi.BrowsingContext.CreateResult;
|
57
|
-
};
|
58
|
-
'browsingContext.close': {
|
59
|
-
params: Bidi.BrowsingContext.CloseParameters;
|
60
|
-
returnType: Bidi.EmptyResult;
|
61
|
-
};
|
62
|
-
'browsingContext.getTree': {
|
63
|
-
params: Bidi.BrowsingContext.GetTreeParameters;
|
64
|
-
returnType: Bidi.BrowsingContext.GetTreeResult;
|
65
|
-
};
|
66
|
-
'browsingContext.locateNodes': {
|
67
|
-
params: Bidi.BrowsingContext.LocateNodesParameters;
|
68
|
-
returnType: Bidi.BrowsingContext.LocateNodesResult;
|
69
|
-
};
|
70
|
-
'browsingContext.navigate': {
|
71
|
-
params: Bidi.BrowsingContext.NavigateParameters;
|
72
|
-
returnType: Bidi.BrowsingContext.NavigateResult;
|
73
|
-
};
|
74
|
-
'browsingContext.reload': {
|
75
|
-
params: Bidi.BrowsingContext.ReloadParameters;
|
76
|
-
returnType: Bidi.BrowsingContext.NavigateResult;
|
77
|
-
};
|
78
|
-
'browsingContext.print': {
|
79
|
-
params: Bidi.BrowsingContext.PrintParameters;
|
80
|
-
returnType: Bidi.BrowsingContext.PrintResult;
|
81
|
-
};
|
82
|
-
'browsingContext.captureScreenshot': {
|
83
|
-
params: Bidi.BrowsingContext.CaptureScreenshotParameters;
|
84
|
-
returnType: Bidi.BrowsingContext.CaptureScreenshotResult;
|
85
|
-
};
|
86
|
-
'browsingContext.handleUserPrompt': {
|
87
|
-
params: Bidi.BrowsingContext.HandleUserPromptParameters;
|
88
|
-
returnType: Bidi.EmptyResult;
|
89
|
-
};
|
90
|
-
'browsingContext.setViewport': {
|
91
|
-
params: Bidi.BrowsingContext.SetViewportParameters;
|
92
|
-
returnType: Bidi.EmptyResult;
|
93
|
-
};
|
94
|
-
'browsingContext.traverseHistory': {
|
95
|
-
params: Bidi.BrowsingContext.TraverseHistoryParameters;
|
96
|
-
returnType: Bidi.EmptyResult;
|
97
|
-
};
|
98
|
-
'input.performActions': {
|
99
|
-
params: Bidi.Input.PerformActionsParameters;
|
100
|
-
returnType: Bidi.EmptyResult;
|
101
|
-
};
|
102
|
-
'input.releaseActions': {
|
103
|
-
params: Bidi.Input.ReleaseActionsParameters;
|
104
|
-
returnType: Bidi.EmptyResult;
|
105
|
-
};
|
106
|
-
'input.setFiles': {
|
107
|
-
params: Bidi.Input.SetFilesParameters;
|
108
|
-
returnType: Bidi.EmptyResult;
|
109
|
-
};
|
110
|
-
'emulation.setGeolocationOverride': {
|
111
|
-
params: Bidi.Emulation.SetGeolocationOverrideParameters;
|
112
|
-
returnType: Bidi.EmptyResult;
|
113
|
-
};
|
114
|
-
'emulation.setTimezoneOverride': {
|
115
|
-
params: Bidi.Emulation.SetTimezoneOverrideParameters;
|
116
|
-
returnType: Bidi.EmptyResult;
|
117
|
-
};
|
118
|
-
'emulation.setScriptingEnabled': {
|
119
|
-
params: Bidi.Emulation.SetScriptingEnabledParameters;
|
120
|
-
returnType: Bidi.EmptyResult;
|
121
|
-
};
|
122
|
-
'permissions.setPermission': {
|
123
|
-
params: Bidi.Permissions.SetPermissionParameters;
|
124
|
-
returnType: Bidi.EmptyResult;
|
125
|
-
};
|
126
|
-
'session.end': {
|
127
|
-
params: Bidi.EmptyParams;
|
128
|
-
returnType: Bidi.EmptyResult;
|
129
|
-
};
|
130
|
-
'session.new': {
|
131
|
-
params: Bidi.Session.NewParameters;
|
132
|
-
returnType: Bidi.Session.NewResult;
|
133
|
-
};
|
134
|
-
'session.status': {
|
135
|
-
params: object;
|
136
|
-
returnType: Bidi.Session.StatusResult;
|
137
|
-
};
|
138
|
-
'session.subscribe': {
|
139
|
-
params: Bidi.Session.SubscriptionRequest;
|
140
|
-
returnType: Bidi.EmptyResult;
|
141
|
-
};
|
142
|
-
'session.unsubscribe': {
|
143
|
-
params: Bidi.Session.SubscriptionRequest;
|
144
|
-
returnType: Bidi.EmptyResult;
|
145
|
-
};
|
146
|
-
'storage.deleteCookies': {
|
147
|
-
params: Bidi.Storage.DeleteCookiesParameters;
|
148
|
-
returnType: Bidi.Storage.DeleteCookiesResult;
|
149
|
-
};
|
150
|
-
'storage.getCookies': {
|
151
|
-
params: Bidi.Storage.GetCookiesParameters;
|
152
|
-
returnType: Bidi.Storage.GetCookiesResult;
|
153
|
-
};
|
154
|
-
'storage.setCookie': {
|
155
|
-
params: Bidi.Storage.SetCookieParameters;
|
156
|
-
returnType: Bidi.Storage.SetCookieParameters;
|
157
|
-
};
|
158
|
-
'network.addDataCollector': {
|
159
|
-
params: Bidi.Network.AddDataCollectorParameters;
|
160
|
-
returnType: Bidi.Network.AddDataCollectorResult;
|
161
|
-
};
|
162
|
-
'network.addIntercept': {
|
163
|
-
params: Bidi.Network.AddInterceptParameters;
|
164
|
-
returnType: Bidi.Network.AddInterceptResult;
|
165
|
-
};
|
166
|
-
'network.getData': {
|
167
|
-
params: Bidi.Network.GetDataParameters;
|
168
|
-
returnType: Bidi.Network.GetDataResult;
|
169
|
-
};
|
170
|
-
'network.removeIntercept': {
|
171
|
-
params: Bidi.Network.RemoveInterceptParameters;
|
172
|
-
returnType: Bidi.EmptyResult;
|
173
|
-
};
|
174
|
-
'network.continueRequest': {
|
175
|
-
params: Bidi.Network.ContinueRequestParameters;
|
176
|
-
returnType: Bidi.EmptyResult;
|
177
|
-
};
|
178
|
-
'network.continueWithAuth': {
|
179
|
-
params: Bidi.Network.ContinueWithAuthParameters;
|
180
|
-
returnType: Bidi.EmptyResult;
|
181
|
-
};
|
182
|
-
'network.failRequest': {
|
183
|
-
params: Bidi.Network.FailRequestParameters;
|
184
|
-
returnType: Bidi.EmptyResult;
|
185
|
-
};
|
186
|
-
'network.provideResponse': {
|
187
|
-
params: Bidi.Network.ProvideResponseParameters;
|
188
|
-
returnType: Bidi.EmptyResult;
|
189
|
-
};
|
190
|
-
'webExtension.install': {
|
191
|
-
params: Bidi.WebExtension.InstallParameters;
|
192
|
-
returnType: Bidi.WebExtension.InstallResult;
|
193
|
-
};
|
194
|
-
'webExtension.uninstall': {
|
195
|
-
params: Bidi.WebExtension.UninstallParameters;
|
196
|
-
returnType: Bidi.EmptyResult;
|
197
|
-
};
|
198
|
-
}
|
9
|
+
export type { Commands };
|
199
10
|
/**
|
200
11
|
* @internal
|
201
12
|
*/
|
202
13
|
export type BidiEvents = {
|
203
|
-
[K in
|
14
|
+
[K in Event['method']]: Extract<Event, {
|
204
15
|
method: K;
|
205
16
|
}>['params'];
|
206
17
|
};
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Connection.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Connection.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/Connection.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,
|
1
|
+
{"version":3,"file":"Connection.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/Connection.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,yBAAyB,CAAC;AACnD,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,yBAAyB,CAAC;AAEtD,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,8BAA8B,CAAC;AAE/D,YAAY,EAAC,QAAQ,EAAC,CAAC;AAEvB;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG;KACtB,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,GAAG,OAAO,CAAC,KAAK,EAAE;QAAC,MAAM,EAAE,CAAC,CAAA;KAAC,CAAC,CAAC,QAAQ,CAAC;CAC9D,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,UAAU,CAAC,MAAM,SAAS,UAAU,GAAG,UAAU,CAChE,SAAQ,YAAY,CAAC,MAAM,CAAC;IAC5B,IAAI,CAAC,CAAC,SAAS,MAAM,QAAQ,EAC3B,MAAM,EAAE,CAAC,EACT,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,GAC5B,OAAO,CAAC;QAAC,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAA;KAAC,CAAC,CAAC;CACjD"}
|
@@ -3,9 +3,9 @@
|
|
3
3
|
* Copyright 2024 Google Inc.
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
5
5
|
*/
|
6
|
-
import type * as Bidi from '
|
6
|
+
import type * as Bidi from 'webdriver-bidi-protocol';
|
7
7
|
import { EventEmitter } from '../../common/EventEmitter.js';
|
8
|
-
import {
|
8
|
+
import { disposeSymbol } from '../../util/disposable.js';
|
9
9
|
import type { Browser } from './Browser.js';
|
10
10
|
import type { BrowsingContext } from './BrowsingContext.js';
|
11
11
|
import type { Session } from './Session.js';
|
@@ -33,7 +33,18 @@ export declare abstract class Realm extends EventEmitter<{
|
|
33
33
|
sharedworker: SharedWorkerRealm;
|
34
34
|
}> {
|
35
35
|
#private;
|
36
|
-
protected readonly disposables:
|
36
|
+
protected readonly disposables: {
|
37
|
+
"__#192@#disposed": boolean;
|
38
|
+
"__#192@#stack": Disposable[];
|
39
|
+
readonly disposed: boolean;
|
40
|
+
dispose(): void;
|
41
|
+
use<T extends Disposable | null | undefined>(value: T): T;
|
42
|
+
adopt<T>(value: T, onDispose: (value: T) => void): T;
|
43
|
+
defer(onDispose: () => void): void;
|
44
|
+
move(): /*elided*/ any;
|
45
|
+
[Symbol.dispose](): void;
|
46
|
+
readonly [Symbol.toStringTag]: "DisposableStack";
|
47
|
+
};
|
37
48
|
readonly id: string;
|
38
49
|
readonly origin: string;
|
39
50
|
protected executionContextId?: number;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Realm.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/Realm.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,
|
1
|
+
{"version":3,"file":"Realm.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/Realm.ts"],"names":[],"mappings":"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"}
|
@@ -3,7 +3,7 @@
|
|
3
3
|
* Copyright 2024 Google Inc.
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
5
5
|
*/
|
6
|
-
import * as Bidi from '
|
6
|
+
import * as Bidi from 'webdriver-bidi-protocol';
|
7
7
|
import { EventEmitter } from '../../common/EventEmitter.js';
|
8
8
|
import { disposeSymbol } from '../../util/disposable.js';
|
9
9
|
import type { BrowsingContext } from './BrowsingContext.js';
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Request.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/Request.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,IAAI,MAAM,
|
1
|
+
{"version":3,"file":"Request.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/Request.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,IAAI,MAAM,yBAAyB,CAAC;AAGhD,OAAO,EAAC,YAAY,EAAC,MAAM,8BAA8B,CAAC;AAE1D,OAAO,EAAkB,aAAa,EAAC,MAAM,0BAA0B,CAAC;AAGxE,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,sBAAsB,CAAC;AAE1D;;GAEG;AACH,qBAAa,OAAQ,SAAQ,YAAY,CAAC;IACxC,8CAA8C;IAC9C,QAAQ,EAAE,OAAO,CAAC;IAClB,yCAAyC;IACzC,YAAY,EAAE,IAAI,CAAC;IACnB,yCAAyC;IACzC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC;IACnC,sCAAsC;IACtC,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;;IACA,MAAM,CAAC,IAAI,CACT,eAAe,EAAE,eAAe,EAChC,KAAK,EAAE,IAAI,CAAC,OAAO,CAAC,2BAA2B,GAC9C,OAAO;IAcV,OAAO;IAgGP,IAAI,QAAQ,IAAI,OAAO,CAEtB;IACD,IAAI,KAAK,IAAI,MAAM,GAAG,SAAS,CAE9B;IACD,IAAI,OAAO,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAEnC;IACD,IAAI,EAAE,IAAI,MAAM,CAEf;IACD,IAAI,SAAS,IAAI,IAAI,CAAC,OAAO,CAAC,SAAS,GAAG,SAAS,CAElD;IACD,IAAI,MAAM,IAAI,MAAM,CAEnB;IACD,IAAI,UAAU,IAAI,MAAM,GAAG,SAAS,CAEnC;IACD,IAAI,QAAQ,IAAI,OAAO,GAAG,SAAS,CAElC;IACD,IAAI,YAAY,IAAI,OAAO,GAAG,SAAS,CAStC;IACD,IAAI,QAAQ,IAAI,IAAI,CAAC,OAAO,CAAC,YAAY,GAAG,SAAS,CAEpD;IACD,IAAI,GAAG,IAAI,MAAM,CAEhB;IACD,IAAI,SAAS,IAAI,OAAO,CAEvB;IAED,IAAI,YAAY,IAAI,MAAM,GAAG,SAAS,CAGrC;IAED,IAAI,QAAQ,IAAI,MAAM,GAAG,SAAS,CAGjC;IAED,IAAI,WAAW,IAAI,OAAO,CAGzB;IAEK,eAAe,CAAC,EACpB,GAAG,EACH,MAAM,EACN,OAAO,EACP,OAAO,EACP,IAAI,GACL,EAAE,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,yBAAyB,EAAE,SAAS,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAWpE,WAAW,IAAI,OAAO,CAAC,IAAI,CAAC;IAM5B,eAAe,CAAC,EACpB,UAAU,EACV,YAAY,EACZ,OAAO,EACP,IAAI,GACL,EAAE,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,yBAAyB,EAAE,SAAS,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAUpE,kBAAkB,IAAI,OAAO,CAAC,UAAU,CAAC;IAgCzC,gBAAgB,CACpB,UAAU,EACN,IAAI,CAAC,OAAO,CAAC,2BAA2B,GACxC,IAAI,CAAC,OAAO,CAAC,6BAA6B,GAC7C,OAAO,CAAC,IAAI,CAAC;IAgBhB,OAAO,CAAC,OAAO;IAIN,CAAC,aAAa,CAAC,IAAI,IAAI;IAKhC,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,eAAe;CAGvC"}
|
@@ -3,7 +3,7 @@
|
|
3
3
|
* Copyright 2024 Google Inc.
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
5
5
|
*/
|
6
|
-
import type * as Bidi from '
|
6
|
+
import type * as Bidi from 'webdriver-bidi-protocol';
|
7
7
|
import { EventEmitter } from '../../common/EventEmitter.js';
|
8
8
|
import { disposeSymbol } from '../../util/disposable.js';
|
9
9
|
import { Browser } from './Browser.js';
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Session.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/Session.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,
|
1
|
+
{"version":3,"file":"Session.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/Session.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,yBAAyB,CAAC;AAErD,OAAO,EAAC,YAAY,EAAC,MAAM,8BAA8B,CAAC;AAM1D,OAAO,EAAkB,aAAa,EAAC,MAAM,0BAA0B,CAAC;AAExE,OAAO,EAAC,OAAO,EAAC,MAAM,cAAc,CAAC;AACrC,OAAO,KAAK,EAAC,UAAU,EAAE,QAAQ,EAAE,UAAU,EAAC,MAAM,iBAAiB,CAAC;AAEtE;;GAEG;AACH,qBAAa,OACX,SAAQ,YAAY,CAAC,UAAU,GAAG;IAAC,KAAK,EAAE;QAAC,MAAM,EAAE,MAAM,CAAA;KAAC,CAAA;CAAC,CAC3D,YAAW,UAAU,CAAC,UAAU,GAAG;IAAC,KAAK,EAAE;QAAC,MAAM,EAAE,MAAM,CAAA;KAAC,CAAA;CAAC,CAAC;;WAEhD,IAAI,CACf,UAAU,EAAE,UAAU,EACtB,YAAY,EAAE,IAAI,CAAC,OAAO,CAAC,mBAAmB,GAC7C,OAAO,CAAC,OAAO,CAAC;IAanB,QAAQ,CAAC,OAAO,EAAG,OAAO,CAAC;IAE3B,QAAQ,CAAC,UAAU,EAAE,UAAU,CAAC;IAEhC,OAAO;IA8BP,IAAI,YAAY,IAAI,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,cAAc,CAAC,CAEzD;IACD,IAAI,QAAQ,IAAI,OAAO,CAEtB;IACD,IAAI,KAAK,IAAI,OAAO,CAEnB;IACD,IAAI,EAAE,IAAI,MAAM,CAEf;IAGD,OAAO,CAAC,OAAO;IAKf;;;;;;OAMG;IAKG,IAAI,CAAC,CAAC,SAAS,MAAM,QAAQ,EACjC,MAAM,EAAE,CAAC,EACT,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,GAC5B,OAAO,CAAC;QAAC,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAA;KAAC,CAAC;IAQzC,SAAS,CACb,MAAM,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,EAC7B,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,GAC/B,OAAO,CAAC,IAAI,CAAC;IAWV,aAAa,CACjB,MAAM,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,EAC7B,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,GAC/B,OAAO,CAAC,IAAI,CAAC;IAWV,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;IAQjB,CAAC,aAAa,CAAC,IAAI,IAAI;CAQjC"}
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
* Copyright 2024 Google Inc.
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
5
5
|
*/
|
6
|
-
import type * as Bidi from '
|
6
|
+
import type * as Bidi from 'webdriver-bidi-protocol';
|
7
7
|
import { EventEmitter } from '../../common/EventEmitter.js';
|
8
8
|
import { disposeSymbol } from '../../util/disposable.js';
|
9
9
|
import type { Browser } from './Browser.js';
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"UserContext.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/UserContext.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,
|
1
|
+
{"version":3,"file":"UserContext.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/UserContext.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,yBAAyB,CAAC;AAErD,OAAO,EAAC,YAAY,EAAC,MAAM,8BAA8B,CAAC;AAG1D,OAAO,EAAkB,aAAa,EAAC,MAAM,0BAA0B,CAAC;AAExE,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,cAAc,CAAC;AAC1C,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAC,eAAe,EAAC,MAAM,sBAAsB,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,4BAA4B,GAAG,IAAI,CAC7C,IAAI,CAAC,eAAe,CAAC,gBAAgB,EACrC,MAAM,GAAG,kBAAkB,CAC5B,GAAG;IACF,gBAAgB,CAAC,EAAE,eAAe,CAAC;CACpC,CAAC;AAEF;;GAEG;AACH,qBAAa,WAAY,SAAQ,YAAY,CAAC;IAC5C;;OAEG;IACH,eAAe,EAAE;QACf,gCAAgC;QAChC,eAAe,EAAE,eAAe,CAAC;KAClC,CAAC;IACF;;OAEG;IACH,MAAM,EAAE;QACN,8CAA8C;QAC9C,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;CACH,CAAC;;IACA,MAAM,CAAC,OAAO,EAAG,SAAS,CAAU;IAEpC,MAAM,CAAC,MAAM,CAAC,OAAO,EAAE,OAAO,EAAE,EAAE,EAAE,MAAM,GAAG,WAAW;IAWxD,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAE1B,OAAO;IAuDP,IAAI,gBAAgB,IAAI,QAAQ,CAAC,eAAe,CAAC,CAEhD;IACD,IAAI,MAAM,IAAI,OAAO,CAEpB;IACD,IAAI,QAAQ,IAAI,OAAO,CAEtB;IACD,IAAI,EAAE,IAAI,MAAM,CAEf;IAGD,OAAO,CAAC,OAAO;IAST,qBAAqB,CACzB,IAAI,EAAE,IAAI,CAAC,eAAe,CAAC,UAAU,EACrC,OAAO,GAAE,4BAAiC,GACzC,OAAO,CAAC,eAAe,CAAC;IAwBrB,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC;IAcvB,UAAU,CACd,OAAO,GAAE,iBAAsB,EAC/B,YAAY,GAAE,MAAM,GAAG,SAAqB,GAC3C,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC;IAkB3B,SAAS,CACb,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,aAAa,EAClC,YAAY,CAAC,EAAE,MAAM,GACpB,OAAO,CAAC,IAAI,CAAC;IAeV,cAAc,CAClB,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,IAAI,CAAC,WAAW,CAAC,oBAAoB,EACjD,KAAK,EAAE,IAAI,CAAC,WAAW,CAAC,eAAe,GACtC,OAAO,CAAC,IAAI,CAAC;IASP,CAAC,aAAa,CAAC,IAAI,IAAI;CAQjC"}
|
@@ -3,7 +3,7 @@
|
|
3
3
|
* Copyright 2024 Google Inc.
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
5
5
|
*/
|
6
|
-
import * as Bidi from '
|
6
|
+
import * as Bidi from 'webdriver-bidi-protocol';
|
7
7
|
import { EventEmitter } from '../../common/EventEmitter.js';
|
8
8
|
import { disposeSymbol } from '../../util/disposable.js';
|
9
9
|
import type { BrowsingContext } from './BrowsingContext.js';
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"UserPrompt.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/UserPrompt.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,IAAI,MAAM,
|
1
|
+
{"version":3,"file":"UserPrompt.d.ts","sourceRoot":"","sources":["../../../../../src/bidi/core/UserPrompt.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,IAAI,MAAM,yBAAyB,CAAC;AAEhD,OAAO,EAAC,YAAY,EAAC,MAAM,8BAA8B,CAAC;AAE1D,OAAO,EAAkB,aAAa,EAAC,MAAM,0BAA0B,CAAC;AAExE,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,sBAAsB,CAAC;AAE1D;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,IAAI,CAC9B,IAAI,CAAC,eAAe,CAAC,0BAA0B,EAC/C,SAAS,CACV,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,IAAI,CACjC,IAAI,CAAC,eAAe,CAAC,0BAA0B,EAC/C,SAAS,CACV,CAAC;AAEF;;GAEG;AACH,qBAAa,UAAW,SAAQ,YAAY,CAAC;IAC3C,+CAA+C;IAC/C,OAAO,EAAE,gBAAgB,CAAC;IAC1B,8CAA8C;IAC9C,MAAM,EAAE;QACN,6CAA6C;QAC7C,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;CACH,CAAC;;IACA,MAAM,CAAC,IAAI,CACT,eAAe,EAAE,eAAe,EAChC,IAAI,EAAE,IAAI,CAAC,eAAe,CAAC,0BAA0B,GACpD,UAAU;IASb,QAAQ,CAAC,eAAe,EAAE,eAAe,CAAC;IAC1C,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,eAAe,CAAC,0BAA0B,CAAC;IAE/D,OAAO;IAkCP,IAAI,MAAM,IAAI,OAAO,CAEpB;IACD,IAAI,QAAQ,IAAI,OAAO,CAEtB;IACD,IAAI,OAAO,IAAI,OAAO,CAQrB;IACD,IAAI,MAAM,IAAI,gBAAgB,GAAG,SAAS,CAEzC;IAGD,OAAO,CAAC,OAAO;IAST,MAAM,CAAC,OAAO,GAAE,aAAkB,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAS3D,CAAC,aAAa,CAAC,IAAI,IAAI;CAQjC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../../src/bidi/util.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,
|
1
|
+
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../../src/bidi/util.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,yBAAyB,CAAC;AAOrD;;GAEG;AACH,wBAAgB,qBAAqB,CACnC,OAAO,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,GACpC,OAAO,CAwCT;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,MAAM,EACf,EAAE,EAAE,MAAM,GACT,CAAC,KAAK,EAAE,OAAO,KAAK,KAAK,CAS3B"}
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Accessibility.d.ts","sourceRoot":"","sources":["../../../../src/cdp/Accessibility.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,iBAAiB,CAAC;AAE3C;;;GAGG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC;IAC5B;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC;IAC5B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAE9B;;;;;OAKG;IACH,aAAa,IAAI,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC,CAAC;CAChD;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;;OAKG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;OAGG;IACH,IAAI,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC;CAC5B;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qBAAa,aAAa;;IAIxB;;OAEG;gBACS,KAAK,EAAE,KAAK,EAAE,OAAO,SAAK;IAKtC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAsCG;IACU,QAAQ,CACnB,OAAO,GAAE,eAAoB,GAC5B,OAAO,CAAC,gBAAgB,GAAG,IAAI,CAAC;
|
1
|
+
{"version":3,"file":"Accessibility.d.ts","sourceRoot":"","sources":["../../../../src/cdp/Accessibility.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,iBAAiB,CAAC;AAE3C;;;GAGG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC;IAC5B;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC;IAC5B;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAE9B;;;;;OAKG;IACH,aAAa,IAAI,OAAO,CAAC,aAAa,GAAG,IAAI,CAAC,CAAC;CAChD;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;;;OAKG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;OAGG;IACH,IAAI,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC;CAC5B;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,qBAAa,aAAa;;IAIxB;;OAEG;gBACS,KAAK,EAAE,KAAK,EAAE,OAAO,SAAK;IAKtC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAsCG;IACU,QAAQ,CACnB,OAAO,GAAE,eAAoB,GAC5B,OAAO,CAAC,gBAAgB,GAAG,IAAI,CAAC;IA2EnC,OAAO,CAAC,aAAa;IA0BrB,OAAO,CAAC,uBAAuB;CAgBhC"}
|
@@ -189,9 +189,6 @@ export class Accessibility {
|
|
189
189
|
}
|
190
190
|
const interestingNodes = new Set();
|
191
191
|
this.collectInterestingNodes(interestingNodes, defaultRoot, false);
|
192
|
-
if (!interestingNodes.has(needle)) {
|
193
|
-
return null;
|
194
|
-
}
|
195
192
|
return this.serializeTree(needle, interestingNodes)[0] ?? null;
|
196
193
|
}
|
197
194
|
serializeTree(node, interestingNodes) {
|
@@ -332,7 +329,7 @@ class AXNode {
|
|
332
329
|
if (this.#hasFocusableChild()) {
|
333
330
|
return false;
|
334
331
|
}
|
335
|
-
if (this.#focusable && this.#name) {
|
332
|
+
if (this.#focusable && this.#name && this.#name !== 'Document') {
|
336
333
|
return true;
|
337
334
|
}
|
338
335
|
if (this.#role === 'heading' && this.#name) {
|
@@ -457,7 +454,7 @@ class AXNode {
|
|
457
454
|
};
|
458
455
|
for (const booleanProperty of booleanProperties) {
|
459
456
|
// RootWebArea's treat focus differently than other nodes. They report whether
|
460
|
-
// their frame
|
457
|
+
// their frame has focus, not whether focus is specifically on the root
|
461
458
|
// node.
|
462
459
|
if (booleanProperty === 'focused' && this.#role === 'RootWebArea') {
|
463
460
|
continue;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Accessibility.js","sourceRoot":"","sources":["../../../../src/cdp/Accessibility.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"Accessibility.js","sourceRoot":"","sources":["../../../../src/cdp/Accessibility.ts"],"names":[],"mappings":"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"}
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ExecutionContext.d.ts","sourceRoot":"","sources":["../../../../src/cdp/ExecutionContext.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,mBAAmB,CAAC;AAEhD,OAAO,EAAkB,KAAK,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAEtE,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,oBAAoB,CAAC;
|
1
|
+
{"version":3,"file":"ExecutionContext.d.ts","sourceRoot":"","sources":["../../../../src/cdp/ExecutionContext.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,mBAAmB,CAAC;AAEhD,OAAO,EAAkB,KAAK,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAEtE,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,oBAAoB,CAAC;AAEjD,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;AAGvD,OAAO,KAAK,EAAiB,YAAY,EAAE,SAAS,EAAC,MAAM,oBAAoB,CAAC;AAShF,OAAO,KAAK,EAAC,qBAAqB,EAAC,MAAM,yBAAyB,CAAC;AAEnE,OAAO,EAAkB,aAAa,EAAC,MAAM,uBAAuB,CAAC;AAMrE,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,oBAAoB,CAAC;AAgCtD;;GAEG;AACH,qBAAa,gBACX,SAAQ,YAAY,CAAC;IACnB,uDAAuD;IACvD,QAAQ,EAAE,SAAS,CAAC;IACpB,gBAAgB,EAAE,QAAQ,CAAC,OAAO,CAAC,qBAAqB,CAAC;IACzD,sFAAsF;IACtF,aAAa,EAAE,QAAQ,CAAC,OAAO,CAAC,kBAAkB,CAAC;CACpD,CACD,YAAW,UAAU;;gBAUnB,MAAM,EAAE,UAAU,EAClB,cAAc,EAAE,QAAQ,CAAC,OAAO,CAAC,2BAA2B,EAC5D,KAAK,EAAE,aAAa;IA+GtB,IAAI,EAAE,IAAI,MAAM,CAEf;IAWD,IAAI,aAAa,IAAI,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAC,CAAC,CAsB5D;IAYD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAuCG;IACG,QAAQ,CACZ,MAAM,SAAS,OAAO,EAAE,EACxB,IAAI,SAAS,YAAY,CAAC,MAAM,CAAC,GAAG,YAAY,CAAC,MAAM,CAAC,EAExD,YAAY,EAAE,IAAI,GAAG,MAAM,EAC3B,GAAG,IAAI,EAAE,MAAM,GACd,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;IAIrC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgDG;IACG,cAAc,CAClB,MAAM,SAAS,OAAO,EAAE,EACxB,IAAI,SAAS,YAAY,CAAC,MAAM,CAAC,GAAG,YAAY,CAAC,MAAM,CAAC,EAExD,YAAY,EAAE,IAAI,GAAG,MAAM,EAC3B,GAAG,IAAI,EAAE,MAAM,GACd,OAAO,CAAC,SAAS,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IA2KvC,CAAC,aAAa,CAAC,IAAI,IAAI;CAIjC"}
|
@@ -56,6 +56,7 @@ var __disposeResources = (this && this.__disposeResources) || (function (Suppres
|
|
56
56
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
57
57
|
});
|
58
58
|
import { CDPSessionEvent } from '../api/CDPSession.js';
|
59
|
+
import { ARIAQueryHandler } from '../common/AriaQueryHandler.js';
|
59
60
|
import { EventEmitter } from '../common/EventEmitter.js';
|
60
61
|
import { LazyArg } from '../common/LazyArg.js';
|
61
62
|
import { scriptInjector } from '../common/ScriptInjector.js';
|
@@ -64,7 +65,6 @@ import { AsyncIterableUtil } from '../util/AsyncIterableUtil.js';
|
|
64
65
|
import { DisposableStack, disposeSymbol } from '../util/disposable.js';
|
65
66
|
import { stringifyFunction } from '../util/Function.js';
|
66
67
|
import { Mutex } from '../util/Mutex.js';
|
67
|
-
import { ARIAQueryHandler } from './AriaQueryHandler.js';
|
68
68
|
import { Binding } from './Binding.js';
|
69
69
|
import { CdpElementHandle } from './ElementHandle.js';
|
70
70
|
import { CdpJSHandle } from './JSHandle.js';
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ExecutionContext.js","sourceRoot":"","sources":["../../../../src/cdp/ExecutionContext.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"ExecutionContext.js","sourceRoot":"","sources":["../../../../src/cdp/ExecutionContext.ts"],"names":[],"mappings":"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"}
|
@@ -13,6 +13,14 @@ import { type NetworkManagerEvents } from '../common/NetworkManagerEvents.js';
|
|
13
13
|
* @public
|
14
14
|
*/
|
15
15
|
export interface NetworkConditions {
|
16
|
+
/**
|
17
|
+
* Emulates the offline mode.
|
18
|
+
*
|
19
|
+
* @remarks
|
20
|
+
*
|
21
|
+
* Shortcut for {@link Page.setOfflineMode}.
|
22
|
+
*/
|
23
|
+
offline?: boolean;
|
16
24
|
/**
|
17
25
|
* Download speed (bytes/s)
|
18
26
|
*/
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"NetworkManager.d.ts","sourceRoot":"","sources":["../../../../src/cdp/NetworkManager.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,mBAAmB,CAAC;AAEhD,OAAO,EAAkB,KAAK,UAAU,EAAC,MAAM,sBAAsB,CAAC;AACtE,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,iBAAiB,CAAC;AAC3C,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAChD,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;AACvD,OAAO,EAEL,KAAK,oBAAoB,EAC1B,MAAM,mCAAmC,CAAC;AAc3C;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,yBAA0B,SAAQ,iBAAiB;IAClE,OAAO,EAAE,OAAO,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,KAAK,CAAC,EAAE,EAAE,MAAM,GAAG,KAAK,GAAG,IAAI,CAAC;CACjC;AAED;;GAEG;AACH,qBAAa,cAAe,SAAQ,YAAY,CAAC,oBAAoB,CAAC;;gBA4BxD,YAAY,EAAE,aAAa,EAAE,cAAc,CAAC,EAAE,OAAO;IAa3D,SAAS,CAAC,MAAM,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;IAoC5C,YAAY,CAAC,WAAW,EAAE,WAAW,GAAG,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAY5D,mBAAmB,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IA8BzE,gBAAgB,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAI1C,qBAAqB,IAAI,MAAM;IAIzB,cAAc,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAa7C,wBAAwB,CAC5B,iBAAiB,EAAE,iBAAiB,GAAG,IAAI,GAC1C,OAAO,CAAC,IAAI,CAAC;
|
1
|
+
{"version":3,"file":"NetworkManager.d.ts","sourceRoot":"","sources":["../../../../src/cdp/NetworkManager.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,mBAAmB,CAAC;AAEhD,OAAO,EAAkB,KAAK,UAAU,EAAC,MAAM,sBAAsB,CAAC;AACtE,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,iBAAiB,CAAC;AAC3C,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAChD,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;AACvD,OAAO,EAEL,KAAK,oBAAoB,EAC1B,MAAM,mCAAmC,CAAC;AAc3C;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,yBAA0B,SAAQ,iBAAiB;IAClE,OAAO,EAAE,OAAO,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,KAAK,CAAC,EAAE,EAAE,MAAM,GAAG,KAAK,GAAG,IAAI,CAAC;CACjC;AAED;;GAEG;AACH,qBAAa,cAAe,SAAQ,YAAY,CAAC,oBAAoB,CAAC;;gBA4BxD,YAAY,EAAE,aAAa,EAAE,cAAc,CAAC,EAAE,OAAO;IAa3D,SAAS,CAAC,MAAM,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;IAoC5C,YAAY,CAAC,WAAW,EAAE,WAAW,GAAG,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;IAY5D,mBAAmB,CAAC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IA8BzE,gBAAgB,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAI1C,qBAAqB,IAAI,MAAM;IAIzB,cAAc,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAa7C,wBAAwB,CAC5B,iBAAiB,EAAE,iBAAiB,GAAG,IAAI,GAC1C,OAAO,CAAC,IAAI,CAAC;IAkDV,YAAY,CAChB,SAAS,EAAE,MAAM,EACjB,iBAAiB,CAAC,EAAE,QAAQ,CAAC,SAAS,CAAC,iBAAiB,GACvD,OAAO,CAAC,IAAI,CAAC;IAuBV,eAAe,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAKhD,sBAAsB,CAAC,KAAK,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;CAqf5D"}
|
@@ -139,7 +139,7 @@ export class NetworkManager extends EventEmitter {
|
|
139
139
|
async emulateNetworkConditions(networkConditions) {
|
140
140
|
if (!this.#emulatedNetworkConditions) {
|
141
141
|
this.#emulatedNetworkConditions = {
|
142
|
-
offline: false,
|
142
|
+
offline: networkConditions?.offline ?? false,
|
143
143
|
upload: -1,
|
144
144
|
download: -1,
|
145
145
|
latency: 0,
|
@@ -154,6 +154,8 @@ export class NetworkManager extends EventEmitter {
|
|
154
154
|
this.#emulatedNetworkConditions.latency = networkConditions
|
155
155
|
? networkConditions.latency
|
156
156
|
: 0;
|
157
|
+
this.#emulatedNetworkConditions.offline =
|
158
|
+
networkConditions?.offline ?? false;
|
157
159
|
await this.#applyToAllClients(this.#applyNetworkConditions.bind(this));
|
158
160
|
}
|
159
161
|
async #applyToAllClients(fn) {
|