chrome-devtools-frontend 1.0.1386602 → 1.0.1418433
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/.git-blame-ignore-revs +8 -0
- package/.stylelintrc.json +1 -3
- package/.vscode/devtools-workspace-launch.json +13 -31
- package/.vscode/devtools-workspace-settings.json +2 -4
- package/.vscode/devtools-workspace-tasks.json +5 -4
- package/AUTHORS +4 -1
- package/config/gni/devtools_grd_files.gni +134 -114
- package/config/gni/devtools_image_files.gni +18 -1
- package/config/owner/INFRA_OWNERS +1 -0
- package/config/typescript/tsconfig.eslint.json +2 -1
- package/docs/README.md +5 -0
- package/docs/contributing/issues.md +1 -1
- package/docs/cookbook/localization.md +1 -1
- package/docs/get_the_code.md +0 -17
- package/docs/playbook.md +176 -0
- package/docs/policy/README.md +1 -0
- package/docs/policy/gar-page-zoom-policy.md +43 -0
- package/docs/policy/images/devtools-gar-testing.png +0 -0
- package/docs/policy/images/docked-devtools.webp +0 -0
- package/docs/policy/images/undocked-devtools.png +0 -0
- package/docs/styleguide/ux/README.md +1 -0
- package/docs/styleguide/ux/components.md +150 -22
- package/docs/styleguide/ux/images/combo-box-variations.png +0 -0
- package/docs/styleguide/ux/images/radio-buttons-variations.png +0 -0
- package/docs/styleguide/ux/images/sliders-variations.png +0 -0
- package/docs/styleguide/ux/patterns.md +87 -0
- package/docs/styleguide/ux/styles.md +40 -7
- package/eslint.config.mjs +746 -0
- package/extension-api/ExtensionAPI.d.ts +22 -0
- package/extensions/cxx_debugging/e2e/TestDriver.ts +1 -3
- package/extensions/cxx_debugging/e2e/cxx-debugging-extension-helpers.ts +1 -0
- package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +0 -1
- package/extensions/cxx_debugging/src/CreditsItem.ts +5 -6
- package/extensions/cxx_debugging/src/CustomFormatters.ts +4 -4
- package/extensions/cxx_debugging/src/DWARFSymbols.ts +10 -10
- package/extensions/cxx_debugging/src/DevToolsPluginHost.ts +6 -6
- package/extensions/cxx_debugging/src/DevToolsPluginWorker.ts +3 -6
- package/extensions/cxx_debugging/src/DevToolsPluginWorkerMain.ts +1 -0
- package/extensions/cxx_debugging/src/ExtensionOptions.ts +6 -10
- package/extensions/cxx_debugging/src/Formatters.ts +15 -8
- package/extensions/cxx_debugging/src/MEMFSResourceLoader.ts +7 -7
- package/extensions/cxx_debugging/src/ModuleConfiguration.ts +6 -6
- package/extensions/cxx_debugging/src/ModuleConfigurationList.ts +4 -4
- package/extensions/cxx_debugging/src/WasmTypes.ts +21 -11
- package/extensions/cxx_debugging/src/WorkerRPC.ts +3 -4
- package/extensions/cxx_debugging/src/rollup.config.in.js +1 -3
- package/extensions/cxx_debugging/tests/CreditsItem_test.ts +2 -3
- package/extensions/cxx_debugging/tests/DevToolsPluginTestWorker.ts +4 -4
- package/extensions/cxx_debugging/tests/DevToolsPlugin_test.ts +12 -12
- package/extensions/cxx_debugging/tests/Externref_test.ts +3 -6
- package/extensions/cxx_debugging/tests/Formatters_test.ts +4 -3
- package/extensions/cxx_debugging/tests/Interpreter_test.ts +1 -1
- package/extensions/cxx_debugging/tests/RealBackend.ts +9 -9
- package/extensions/cxx_debugging/tests/SymbolsBackend_test.ts +31 -29
- package/extensions/cxx_debugging/tests/TestUtils.ts +8 -7
- package/extensions/cxx_debugging/tests/inputs/externref.js +14 -4
- package/extensions/cxx_debugging/tests/inputs/page.js +3 -1
- package/front_end/Images/generate-css-vars.js +1 -0
- package/front_end/Images/rollup.config.mjs +0 -1
- package/front_end/Images/src/account-tree.svg +1 -0
- package/front_end/Images/src/arrow-collapse.svg +3 -0
- package/front_end/Images/src/arrow-drop-down.svg +3 -0
- package/front_end/Images/src/compress.svg +8 -0
- package/front_end/Images/src/devtools-thumbnail.svg +57 -0
- package/front_end/Images/src/devtools-tips.svg +61 -0
- package/front_end/Images/src/difference.svg +3 -0
- package/front_end/Images/src/global.svg +5 -0
- package/front_end/Images/src/grid-on.svg +10 -0
- package/front_end/Images/src/keyboard-full.svg +10 -0
- package/front_end/Images/src/label.svg +10 -0
- package/front_end/Images/src/node-stack-icon.svg +1 -0
- package/front_end/Images/src/override.svg +11 -0
- package/front_end/Images/src/palette.svg +10 -0
- package/front_end/Images/src/photo-camera.svg +10 -0
- package/front_end/Images/src/terminal.svg +10 -0
- package/front_end/Images/src/tonality.svg +10 -0
- package/front_end/Images/src/whatsnew.svg +61 -0
- package/front_end/Tests.js +28 -41
- package/front_end/application_tokens.css +407 -0
- package/front_end/core/common/Base64.test.ts +3 -3
- package/front_end/core/common/CharacterIdMap.test.ts +1 -1
- package/front_end/core/common/Color.ts +8 -0
- package/front_end/core/common/ColorUtils.test.ts +2 -2
- package/front_end/core/common/Console.test.ts +7 -7
- package/front_end/core/common/Console.ts +3 -3
- package/front_end/core/common/EventTarget.test.ts +7 -7
- package/front_end/core/common/EventTarget.ts +3 -3
- package/front_end/core/common/Lazy.test.ts +12 -14
- package/front_end/core/common/MapWithDefault.test.ts +61 -0
- package/front_end/core/common/MapWithDefault.ts +24 -0
- package/front_end/core/common/ParsedURL.test.ts +38 -42
- package/front_end/core/common/ParsedURL.ts +1 -1
- package/front_end/core/common/Progress.test.ts +7 -7
- package/front_end/core/common/ResolverBase.test.ts +3 -3
- package/front_end/core/common/ResolverBase.ts +2 -7
- package/front_end/core/common/ResourceType.test.ts +22 -26
- package/front_end/core/common/Revealer.ts +5 -0
- package/front_end/core/common/SettingRegistration.test.ts +3 -5
- package/front_end/core/common/SettingRegistration.ts +1 -1
- package/front_end/core/common/Settings.ts +13 -13
- package/front_end/core/common/Throttler.ts +3 -3
- package/front_end/core/common/common.ts +4 -3
- package/front_end/core/dom_extension/DOMExtension.test.ts +38 -41
- package/front_end/core/dom_extension/DOMExtension.ts +5 -4
- package/front_end/core/host/AidaClient.test.ts +106 -39
- package/front_end/core/host/AidaClient.ts +152 -34
- package/front_end/core/host/InspectorFrontendHost.ts +21 -5
- package/front_end/core/host/InspectorFrontendHostAPI.ts +33 -38
- package/front_end/core/host/ResourceLoader.ts +1 -1
- package/front_end/core/host/UserMetrics.ts +125 -185
- package/front_end/core/i18n/collect-ui-strings.js +5 -4
- package/front_end/core/i18n/generate-locales-js.js +4 -2
- package/front_end/core/i18n/i18n.test.ts +45 -0
- package/front_end/core/i18n/i18nImpl.ts +1 -1
- package/front_end/core/i18n/i18nTypes.ts +3 -3
- package/front_end/core/i18n/locales/af.json +848 -518
- package/front_end/core/i18n/locales/am.json +857 -527
- package/front_end/core/i18n/locales/ar.json +864 -534
- package/front_end/core/i18n/locales/as.json +853 -523
- package/front_end/core/i18n/locales/az.json +856 -526
- package/front_end/core/i18n/locales/be.json +854 -524
- package/front_end/core/i18n/locales/bg.json +844 -514
- package/front_end/core/i18n/locales/bn.json +851 -521
- package/front_end/core/i18n/locales/bs.json +861 -531
- package/front_end/core/i18n/locales/ca.json +851 -521
- package/front_end/core/i18n/locales/cs.json +854 -524
- package/front_end/core/i18n/locales/cy.json +849 -519
- package/front_end/core/i18n/locales/da.json +850 -520
- package/front_end/core/i18n/locales/de.json +848 -518
- package/front_end/core/i18n/locales/el.json +851 -521
- package/front_end/core/i18n/locales/en-GB.json +845 -515
- package/front_end/core/i18n/locales/es-419.json +847 -517
- package/front_end/core/i18n/locales/es.json +847 -517
- package/front_end/core/i18n/locales/et.json +843 -513
- package/front_end/core/i18n/locales/eu.json +861 -531
- package/front_end/core/i18n/locales/fa.json +860 -530
- package/front_end/core/i18n/locales/fi.json +848 -518
- package/front_end/core/i18n/locales/fil.json +849 -519
- package/front_end/core/i18n/locales/fr-CA.json +849 -519
- package/front_end/core/i18n/locales/fr.json +849 -519
- package/front_end/core/i18n/locales/gl.json +852 -522
- package/front_end/core/i18n/locales/gu.json +846 -516
- package/front_end/core/i18n/locales/he.json +867 -537
- package/front_end/core/i18n/locales/hi.json +853 -523
- package/front_end/core/i18n/locales/hr.json +854 -524
- package/front_end/core/i18n/locales/hu.json +848 -518
- package/front_end/core/i18n/locales/hy.json +850 -520
- package/front_end/core/i18n/locales/id.json +849 -519
- package/front_end/core/i18n/locales/is.json +850 -520
- package/front_end/core/i18n/locales/it.json +852 -522
- package/front_end/core/i18n/locales/ja.json +844 -514
- package/front_end/core/i18n/locales/ka.json +847 -517
- package/front_end/core/i18n/locales/kk.json +850 -520
- package/front_end/core/i18n/locales/km.json +853 -523
- package/front_end/core/i18n/locales/kn.json +857 -527
- package/front_end/core/i18n/locales/ko.json +850 -520
- package/front_end/core/i18n/locales/ky.json +846 -516
- package/front_end/core/i18n/locales/lo.json +851 -521
- package/front_end/core/i18n/locales/lt.json +845 -515
- package/front_end/core/i18n/locales/lv.json +849 -519
- package/front_end/core/i18n/locales/mk.json +851 -521
- package/front_end/core/i18n/locales/ml.json +850 -520
- package/front_end/core/i18n/locales/mn.json +860 -530
- package/front_end/core/i18n/locales/mr.json +852 -522
- package/front_end/core/i18n/locales/ms.json +848 -518
- package/front_end/core/i18n/locales/my.json +857 -527
- package/front_end/core/i18n/locales/ne.json +857 -527
- package/front_end/core/i18n/locales/nl.json +847 -517
- package/front_end/core/i18n/locales/no.json +848 -518
- package/front_end/core/i18n/locales/or.json +969 -639
- package/front_end/core/i18n/locales/pa.json +850 -520
- package/front_end/core/i18n/locales/pl.json +849 -519
- package/front_end/core/i18n/locales/pt-PT.json +850 -520
- package/front_end/core/i18n/locales/pt.json +844 -514
- package/front_end/core/i18n/locales/ro.json +850 -520
- package/front_end/core/i18n/locales/ru.json +861 -531
- package/front_end/core/i18n/locales/si.json +850 -520
- package/front_end/core/i18n/locales/sk.json +850 -520
- package/front_end/core/i18n/locales/sl.json +851 -521
- package/front_end/core/i18n/locales/sq.json +847 -517
- package/front_end/core/i18n/locales/sr-Latn.json +848 -518
- package/front_end/core/i18n/locales/sr.json +848 -518
- package/front_end/core/i18n/locales/sv.json +849 -519
- package/front_end/core/i18n/locales/sw.json +856 -526
- package/front_end/core/i18n/locales/ta.json +853 -523
- package/front_end/core/i18n/locales/te.json +854 -524
- package/front_end/core/i18n/locales/th.json +839 -509
- package/front_end/core/i18n/locales/tr.json +850 -520
- package/front_end/core/i18n/locales/uk.json +850 -520
- package/front_end/core/i18n/locales/ur.json +849 -519
- package/front_end/core/i18n/locales/uz.json +854 -524
- package/front_end/core/i18n/locales/vi.json +847 -517
- package/front_end/core/i18n/locales/zh-HK.json +852 -522
- package/front_end/core/i18n/locales/zh-TW.json +852 -522
- package/front_end/core/i18n/locales/zh.json +849 -519
- package/front_end/core/i18n/locales/zu.json +855 -525
- package/front_end/core/i18n/time-utilities.ts +17 -0
- package/front_end/core/platform/ArrayUtilities.test.ts +7 -8
- package/front_end/core/platform/DevToolsPath.test.ts +80 -41
- package/front_end/core/platform/DevToolsPath.ts +32 -9
- package/front_end/core/platform/MapUtilities.ts +1 -1
- package/front_end/core/platform/ServerTiming.ts +8 -8
- package/front_end/core/platform/StringUtilities.test.ts +1 -1
- package/front_end/core/platform/StringUtilities.ts +1 -1
- package/front_end/core/platform/TypedArrayUtilities.test.ts +6 -6
- package/front_end/core/protocol_client/InspectorBackend.ts +15 -22
- package/front_end/core/protocol_client/protocol_client.ts +1 -0
- package/front_end/core/root/Runtime.test.ts +22 -3
- package/front_end/core/root/Runtime.ts +99 -52
- package/front_end/core/sdk/AccessibilityModel.ts +3 -3
- package/front_end/core/sdk/AnimationModel.test.ts +4 -4
- package/front_end/core/sdk/AnimationModel.ts +5 -5
- package/front_end/core/sdk/AutofillModel.test.ts +1 -1
- package/front_end/core/sdk/AutofillModel.ts +3 -3
- package/front_end/core/sdk/CPUProfilerModel.ts +4 -4
- package/front_end/core/sdk/CPUThrottlingManager.ts +157 -17
- package/front_end/core/sdk/CSSMatchedStyles.test.ts +47 -45
- package/front_end/core/sdk/CSSMatchedStyles.ts +73 -6
- package/front_end/core/sdk/CSSMetadata.ts +21 -0
- package/front_end/core/sdk/CSSModel.test.ts +8 -10
- package/front_end/core/sdk/CSSModel.ts +53 -34
- package/front_end/core/sdk/CSSProperty.ts +16 -6
- package/front_end/core/sdk/CSSPropertyParser.ts +4 -4
- package/front_end/{panels/elements/PropertyMatchers.test.ts → core/sdk/CSSPropertyParserMatchers.test.ts} +158 -96
- package/front_end/{panels/elements/PropertyMatchers.ts → core/sdk/CSSPropertyParserMatchers.ts} +126 -59
- package/front_end/core/sdk/CSSStyleDeclaration.test.ts +7 -7
- package/front_end/core/sdk/CSSStyleDeclaration.ts +13 -1
- package/front_end/core/sdk/CSSStyleSheetHeader.test.ts +29 -0
- package/front_end/core/sdk/CSSStyleSheetHeader.ts +1 -1
- package/front_end/core/sdk/ChildTargetManager.test.ts +30 -14
- package/front_end/core/sdk/ChildTargetManager.ts +8 -11
- package/front_end/core/sdk/Connections.ts +26 -8
- package/front_end/core/sdk/ConsoleModel.test.ts +6 -4
- package/front_end/core/sdk/ConsoleModel.ts +11 -6
- package/front_end/core/sdk/Cookie.test.ts +37 -37
- package/front_end/core/sdk/CookieModel.test.ts +13 -12
- package/front_end/core/sdk/CookieModel.ts +3 -3
- package/front_end/core/sdk/DOMDebuggerModel.ts +5 -5
- package/front_end/core/sdk/DOMModel.ts +40 -17
- package/front_end/core/sdk/DebuggerModel.test.ts +6 -5
- package/front_end/core/sdk/DebuggerModel.ts +13 -13
- package/front_end/core/sdk/EmulationModel.ts +2 -3
- package/front_end/core/sdk/EnhancedTracesParser.test.ts +7 -7
- package/front_end/core/sdk/EnhancedTracesParser.ts +3 -1
- package/front_end/core/sdk/FrameManager.test.ts +4 -4
- package/front_end/core/sdk/FrameManager.ts +7 -7
- package/front_end/core/sdk/HeapProfilerModel.ts +7 -7
- package/front_end/core/sdk/IOModel.ts +2 -3
- package/front_end/core/sdk/IsolateManager.ts +4 -4
- package/front_end/core/sdk/IssuesModel.ts +7 -4
- package/front_end/core/sdk/LogModel.ts +5 -5
- package/front_end/core/sdk/NetworkManager.test.ts +106 -57
- package/front_end/core/sdk/NetworkManager.ts +58 -23
- package/front_end/core/sdk/NetworkRequest.test.ts +24 -25
- package/front_end/core/sdk/NetworkRequest.ts +10 -10
- package/front_end/core/sdk/OverlayModel.test.ts +6 -6
- package/front_end/core/sdk/OverlayModel.ts +10 -10
- package/front_end/core/sdk/OverlayPersistentHighlighter.test.ts +5 -3
- package/front_end/core/sdk/PageResourceLoader.test.ts +20 -25
- package/front_end/core/sdk/PageResourceLoader.ts +3 -3
- package/front_end/core/sdk/PaintProfiler.ts +4 -4
- package/front_end/core/sdk/PerformanceMetricsModel.ts +2 -2
- package/front_end/core/sdk/PreloadingModel.test.ts +240 -22
- package/front_end/core/sdk/PreloadingModel.ts +188 -19
- package/front_end/core/sdk/RehydratingConnection.test.ts +3 -3
- package/front_end/core/sdk/RehydratingConnection.ts +51 -7
- package/front_end/core/sdk/RemoteObject.test.ts +60 -60
- package/front_end/core/sdk/RemoteObject.ts +2 -2
- package/front_end/core/sdk/ResourceTreeModel.test.ts +5 -5
- package/front_end/core/sdk/ResourceTreeModel.ts +39 -32
- package/front_end/core/sdk/RuntimeModel.test.ts +4 -2
- package/front_end/core/sdk/RuntimeModel.ts +14 -12
- package/front_end/core/sdk/ScreenCaptureModel.ts +3 -0
- package/front_end/core/sdk/Script.ts +1 -1
- package/front_end/core/sdk/SecurityOriginManager.ts +6 -6
- package/front_end/core/sdk/ServiceWorkerCacheModel.ts +5 -5
- package/front_end/core/sdk/ServiceWorkerManager.test.ts +3 -3
- package/front_end/core/sdk/ServiceWorkerManager.ts +10 -11
- package/front_end/core/sdk/SourceMap.test.ts +141 -77
- package/front_end/core/sdk/SourceMap.ts +110 -193
- package/front_end/core/sdk/SourceMapFunctionRanges.test.ts +171 -0
- package/front_end/core/sdk/SourceMapFunctionRanges.ts +150 -0
- package/front_end/core/sdk/SourceMapManager.test.ts +14 -14
- package/front_end/core/sdk/SourceMapManager.ts +12 -12
- package/front_end/core/sdk/SourceMapScopes.ts +29 -7
- package/front_end/core/sdk/SourceMapScopesInfo.test.ts +117 -25
- package/front_end/core/sdk/SourceMapScopesInfo.ts +94 -20
- package/front_end/core/sdk/StorageBucketsModel.ts +8 -8
- package/front_end/core/sdk/StorageKeyManager.test.ts +4 -2
- package/front_end/core/sdk/StorageKeyManager.ts +8 -7
- package/front_end/core/sdk/Target.test.ts +39 -3
- package/front_end/core/sdk/Target.ts +41 -1
- package/front_end/core/sdk/TargetManager.test.ts +6 -4
- package/front_end/core/sdk/TargetManager.ts +6 -6
- package/front_end/core/sdk/TraceObject.test.ts +2 -2
- package/front_end/core/sdk/TraceObject.ts +32 -0
- package/front_end/core/sdk/WebAuthnModel.ts +6 -6
- package/front_end/core/sdk/sdk-meta.ts +1 -28
- package/front_end/core/sdk/sdk.ts +4 -5
- package/front_end/design_system_tokens.css +775 -0
- package/front_end/devtools_compatibility.js +6 -9
- package/front_end/entrypoint_template.html +2 -0
- package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.test.ts +1 -1
- package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +1 -2
- package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.test.ts +12 -2
- package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +3 -3
- package/front_end/entrypoints/formatter_worker/ScopeParser.ts +0 -1
- package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +0 -1
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +68 -53
- package/front_end/entrypoints/inspector_main/InspectorMain.test.ts +276 -142
- package/front_end/entrypoints/inspector_main/InspectorMain.ts +41 -3
- package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +1 -2
- package/front_end/entrypoints/inspector_main/RenderingOptions.ts +3 -6
- package/front_end/entrypoints/inspector_main/nodeIcon.css +1 -0
- package/front_end/entrypoints/js_app/js_app.ts +2 -1
- package/front_end/entrypoints/main/ExecutionContextSelector.ts +1 -1
- package/front_end/entrypoints/main/MainImpl.ts +118 -95
- package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +6 -8
- package/front_end/entrypoints/node_app/NodeMain.ts +10 -5
- package/front_end/entrypoints/node_app/node_app.ts +3 -2
- package/front_end/entrypoints/shell/shell.ts +1 -1
- package/front_end/entrypoints/wasmparser_worker/WasmParserWorker.ts +1 -1
- package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
- package/front_end/generated/ARIAProperties.js +1 -1
- package/front_end/generated/Deprecation.ts +8 -16
- package/front_end/generated/InspectorBackendCommands.js +40 -31
- package/front_end/generated/SupportedCSSProperties.js +256 -45
- package/front_end/generated/protocol-mapping.d.ts +66 -23
- package/front_end/generated/protocol-proxy-api.d.ts +53 -25
- package/front_end/generated/protocol.ts +354 -87
- package/front_end/global_typings/global_defs.d.ts +0 -5
- package/front_end/legacy/legacy-defs.d.ts +2 -6
- package/front_end/legacy_test_runner/application_test_runner/ResourceTreeTestRunner.js +2 -1
- package/front_end/legacy_test_runner/bindings_test_runner/BindingsTestRunner.js +3 -4
- package/front_end/legacy_test_runner/elements_test_runner/ElementsTestRunner.js +1 -2
- package/front_end/legacy_test_runner/heap_profiler_test_runner/heap_profiler_test_runner.js +15 -3
- package/front_end/models/autofill_manager/AutofillManager.test.ts +1 -1
- package/front_end/models/autofill_manager/AutofillManager.ts +3 -3
- package/front_end/models/bindings/CompilerScriptMapping.test.ts +6 -6
- package/front_end/models/bindings/CompilerScriptMapping.ts +8 -0
- package/front_end/models/bindings/ContentProviderBasedProject.ts +1 -1
- package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +8 -6
- package/front_end/models/bindings/DebuggerWorkspaceBinding.test.ts +29 -3
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +8 -0
- package/front_end/models/bindings/DefaultScriptMapping.test.ts +7 -5
- package/front_end/models/bindings/FileUtils.test.ts +2 -2
- package/front_end/models/bindings/FileUtils.ts +1 -1
- package/front_end/models/bindings/IgnoreListManager.test.ts +17 -15
- package/front_end/models/bindings/IgnoreListManager.ts +9 -9
- package/front_end/models/bindings/NetworkProject.ts +4 -4
- package/front_end/models/bindings/PresentationConsoleMessageHelper.test.ts +4 -2
- package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +4 -5
- package/front_end/models/bindings/ResourceMapping.test.ts +6 -4
- package/front_end/models/bindings/ResourceScriptMapping.test.ts +4 -2
- package/front_end/models/bindings/ResourceScriptMapping.ts +4 -4
- package/front_end/models/bindings/ResourceUtils.test.ts +26 -28
- package/front_end/models/bindings/ResourceUtils.ts +1 -8
- package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
- package/front_end/models/breakpoints/BreakpointManager.test.ts +47 -45
- package/front_end/models/breakpoints/BreakpointManager.ts +4 -4
- package/front_end/models/cpu_profile/CPUProfileDataModel.test.ts +8 -1
- package/front_end/models/cpu_profile/CPUProfileDataModel.ts +14 -4
- package/front_end/models/cpu_profile/ProfileTreeModel.ts +1 -3
- package/front_end/models/crux-manager/CrUXManager.test.ts +101 -28
- package/front_end/models/crux-manager/CrUXManager.ts +76 -10
- package/front_end/models/emulation/DeviceModeModel.ts +18 -3
- package/front_end/models/emulation/EmulatedDevices.test.ts +20 -0
- package/front_end/models/emulation/EmulatedDevices.ts +29 -25
- package/front_end/models/extensions/ExtensionAPI.ts +301 -175
- package/front_end/models/extensions/ExtensionEndpoint.ts +8 -8
- package/front_end/models/extensions/ExtensionPanel.ts +4 -2
- package/front_end/models/extensions/ExtensionServer.test.ts +281 -65
- package/front_end/models/extensions/ExtensionServer.ts +65 -7
- package/front_end/models/extensions/HostUrlPattern.test.ts +59 -58
- package/front_end/models/extensions/LanguageExtensionEndpoint.test.ts +63 -0
- package/front_end/models/extensions/LanguageExtensionEndpoint.ts +25 -6
- package/front_end/models/extensions/RecorderPluginManager.test.ts +1 -1
- package/front_end/models/extensions/RecorderPluginManager.ts +13 -13
- package/front_end/models/extensions/extensions.ts +4 -0
- package/front_end/models/formatter/FormatterWorkerPool.ts +3 -4
- package/front_end/models/har/Importer.test.ts +4 -4
- package/front_end/models/har/Log.test.ts +4 -2
- package/front_end/models/har/Log.ts +3 -3
- package/front_end/models/har/Writer.test.ts +2 -1
- package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +4 -10
- package/front_end/models/issues_manager/ClientHintIssue.ts +2 -3
- package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +0 -1
- package/front_end/models/issues_manager/CookieIssue.ts +5 -3
- package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +0 -1
- package/front_end/models/issues_manager/DeprecationIssue.test.ts +3 -3
- package/front_end/models/issues_manager/DeprecationIssue.ts +3 -4
- package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +2 -3
- package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.test.ts +1 -1
- package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +2 -3
- package/front_end/models/issues_manager/GenericIssue.test.ts +2 -2
- package/front_end/models/issues_manager/GenericIssue.ts +0 -1
- package/front_end/models/issues_manager/IssueResolver.test.ts +3 -3
- package/front_end/models/issues_manager/IssuesManager.test.ts +19 -19
- package/front_end/models/issues_manager/IssuesManager.ts +29 -10
- package/front_end/models/issues_manager/LowTextContrastIssue.test.ts +2 -2
- package/front_end/models/issues_manager/MarkdownIssueDescription.ts +1 -1
- package/front_end/models/issues_manager/PropertyRuleIssue.test.ts +1 -1
- package/front_end/models/issues_manager/RelatedIssue.test.ts +7 -7
- package/front_end/models/issues_manager/SelectElementAccessibilityIssue.test.ts +86 -0
- package/front_end/models/issues_manager/SelectElementAccessibilityIssue.ts +110 -0
- package/front_end/models/issues_manager/SharedDictionaryIssue.test.ts +1 -1
- package/front_end/models/issues_manager/StylesheetLoadingIssue.test.ts +7 -7
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedOptGroupChild.md +7 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedSelectChild.md +7 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentAttributesSelectDescendant.md +3 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentLegendChild.md +3 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentOptionChild.md +3 -0
- package/front_end/models/issues_manager/descriptions/selectElementAccessibilityNonPhrasingContentOptionChild.md +3 -0
- package/front_end/models/issues_manager/issues_manager.ts +2 -0
- package/front_end/models/javascript_metadata/JavaScriptMetadata.test.ts +6 -6
- package/front_end/models/javascript_metadata/NativeFunctions.js +210 -179
- package/front_end/models/live-metrics/LiveMetrics.ts +113 -65
- package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +13 -13
- package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +13 -6
- package/front_end/models/logs/NetworkLog.test.ts +6 -4
- package/front_end/models/logs/NetworkLog.ts +6 -6
- package/front_end/models/logs/RequestResolver.test.ts +3 -3
- package/front_end/models/persistence/EditFileSystemView.ts +4 -7
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +9 -13
- package/front_end/models/persistence/NetworkPersistenceManager.test.ts +38 -46
- package/front_end/models/persistence/NetworkPersistenceManager.ts +6 -6
- package/front_end/models/persistence/PersistenceAction.test.ts +11 -9
- package/front_end/models/persistence/PersistenceImpl.test.ts +10 -8
- package/front_end/models/persistence/PersistenceImpl.ts +4 -4
- package/front_end/models/persistence/PersistenceUtils.ts +3 -3
- package/front_end/models/persistence/PlatformFileSystem.test.ts +4 -3
- package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
- package/front_end/models/persistence/WorkspaceSettingsTab.ts +16 -21
- package/front_end/models/persistence/editFileSystemView.css +13 -8
- package/front_end/models/project_settings/ProjectSettingsModel.test.ts +138 -0
- package/front_end/models/project_settings/ProjectSettingsModel.ts +157 -0
- package/front_end/models/project_settings/project_settings.ts +9 -0
- package/front_end/models/source_map_scopes/NamesResolver.test.ts +11 -3
- package/front_end/models/source_map_scopes/NamesResolver.ts +5 -7
- package/front_end/models/source_map_scopes/ScopeChainModel.ts +3 -3
- package/front_end/models/text_utils/StaticContentProvider.test.ts +4 -2
- package/front_end/models/text_utils/StreamingContentData.ts +3 -3
- package/front_end/models/text_utils/Text.test.ts +1 -1
- package/front_end/models/text_utils/TextRange.test.ts +2 -4
- package/front_end/models/text_utils/TextUtils.test.ts +29 -30
- package/front_end/models/text_utils/TextUtils.ts +1 -1
- package/front_end/models/trace/LanternComputationData.ts +11 -10
- package/front_end/models/trace/ModelImpl.test.ts +8 -8
- package/front_end/models/trace/ModelImpl.ts +12 -15
- package/front_end/models/trace/Processor.test.ts +83 -12
- package/front_end/models/trace/Processor.ts +116 -29
- package/front_end/models/trace/extras/FilmStrip.test.ts +54 -32
- package/front_end/models/trace/extras/FilmStrip.ts +11 -10
- package/front_end/models/trace/extras/MainThreadActivity.test.ts +7 -7
- package/front_end/models/trace/extras/MainThreadActivity.ts +5 -5
- package/front_end/models/trace/extras/Metadata.test.ts +3 -0
- package/front_end/models/trace/extras/Metadata.ts +4 -1
- package/front_end/models/trace/extras/StackTraceForEvent.test.ts +259 -0
- package/front_end/models/trace/extras/StackTraceForEvent.ts +177 -0
- package/front_end/models/trace/extras/ThirdParties.test.ts +99 -91
- package/front_end/models/trace/extras/ThirdParties.ts +124 -121
- package/front_end/models/trace/extras/TimelineJSProfile.ts +10 -5
- package/front_end/models/trace/extras/TraceFilter.test.ts +3 -2
- package/front_end/models/trace/extras/TraceTree.test.ts +65 -39
- package/front_end/models/trace/extras/TraceTree.ts +32 -21
- package/front_end/models/trace/extras/extras.ts +1 -1
- package/front_end/models/trace/handlers/AnimationFramesHandler.test.ts +40 -0
- package/front_end/models/trace/handlers/AnimationFramesHandler.ts +119 -0
- package/front_end/models/trace/handlers/AsyncJSCallsHandler.test.ts +211 -0
- package/front_end/models/trace/handlers/AsyncJSCallsHandler.ts +185 -0
- package/front_end/models/trace/handlers/DOMStatsHandler.test.ts +30 -0
- package/front_end/models/trace/handlers/DOMStatsHandler.ts +31 -0
- package/front_end/models/trace/handlers/ExtensionTraceDataHandler.test.ts +741 -381
- package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +182 -17
- package/front_end/models/trace/handlers/FlowsHandler.test.ts +185 -0
- package/front_end/models/trace/handlers/FlowsHandler.ts +175 -0
- package/front_end/models/trace/handlers/FramesHandler.test.ts +42 -43
- package/front_end/models/trace/handlers/FramesHandler.ts +24 -25
- package/front_end/models/trace/handlers/InitiatorsHandler.test.ts +56 -49
- package/front_end/models/trace/handlers/InitiatorsHandler.ts +32 -61
- package/front_end/models/trace/handlers/LargestImagePaintHandler.test.ts +48 -13
- package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +31 -27
- package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +10 -10
- package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +33 -24
- package/front_end/models/trace/handlers/MetaHandler.test.ts +15 -14
- package/front_end/models/trace/handlers/MetaHandler.ts +46 -47
- package/front_end/models/trace/handlers/ModelHandlers.ts +4 -0
- package/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts +178 -72
- package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +60 -40
- package/front_end/models/trace/handlers/PageLoadMetricsHandler.test.ts +4 -4
- package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +28 -27
- package/front_end/models/trace/handlers/RendererHandler.test.ts +25 -6
- package/front_end/models/trace/handlers/RendererHandler.ts +43 -5
- package/front_end/models/trace/handlers/SamplesHandler.test.ts +50 -17
- package/front_end/models/trace/handlers/SamplesHandler.ts +69 -60
- package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +33 -44
- package/front_end/models/trace/handlers/ScreenshotsHandler.ts +38 -13
- package/front_end/models/trace/handlers/ServerTimingsHandler.test.ts +6 -6
- package/front_end/models/trace/handlers/ServerTimingsHandler.ts +4 -5
- package/front_end/models/trace/handlers/Threads.test.ts +6 -6
- package/front_end/models/trace/handlers/Threads.ts +13 -4
- package/front_end/models/trace/handlers/UserInteractionsHandler.test.ts +7 -7
- package/front_end/models/trace/handlers/UserInteractionsHandler.ts +17 -18
- package/front_end/models/trace/handlers/UserTimings.md +1 -1
- package/front_end/models/trace/handlers/UserTimingsHandler.test.ts +32 -24
- package/front_end/models/trace/handlers/UserTimingsHandler.ts +25 -4
- package/front_end/models/trace/handlers/WarningsHandler.ts +2 -2
- package/front_end/models/trace/handlers/WorkersHandler.test.ts +4 -4
- package/front_end/models/trace/handlers/handlers.ts +1 -0
- package/front_end/models/trace/{extras/URLForEntry.test.ts → handlers/helpers.test.ts} +34 -7
- package/front_end/models/trace/handlers/helpers.ts +158 -0
- package/front_end/models/trace/handlers/types.ts +2 -1
- package/front_end/models/trace/helpers/SamplesIntegrator.test.ts +81 -13
- package/front_end/models/trace/helpers/SamplesIntegrator.ts +59 -18
- package/front_end/models/trace/helpers/SyntheticEvents.test.ts +1 -1
- package/front_end/models/trace/helpers/SyntheticEvents.ts +1 -1
- package/front_end/models/trace/helpers/Timing.test.ts +33 -45
- package/front_end/models/trace/helpers/Timing.ts +50 -76
- package/front_end/models/trace/helpers/Trace.test.ts +15 -15
- package/front_end/models/trace/helpers/Trace.ts +98 -48
- package/front_end/models/trace/helpers/TreeHelpers.test.ts +10 -81
- package/front_end/models/trace/helpers/TreeHelpers.ts +13 -181
- package/front_end/models/trace/insights/CLSCulprits.test.ts +10 -20
- package/front_end/models/trace/insights/CLSCulprits.ts +209 -103
- package/front_end/models/trace/insights/Common.test.ts +56 -0
- package/front_end/models/trace/insights/Common.ts +252 -1
- package/front_end/models/trace/insights/DOMSize.test.ts +63 -0
- package/front_end/models/trace/insights/DOMSize.ts +175 -0
- package/front_end/models/trace/insights/DocumentLatency.test.ts +10 -14
- package/front_end/models/trace/insights/DocumentLatency.ts +87 -22
- package/front_end/models/trace/insights/FontDisplay.test.ts +3 -13
- package/front_end/models/trace/insights/FontDisplay.ts +24 -14
- package/front_end/models/trace/insights/ForcedReflow.test.ts +35 -0
- package/front_end/models/trace/insights/ForcedReflow.ts +224 -0
- package/front_end/models/trace/insights/ImageDelivery.test.ts +35 -28
- package/front_end/models/trace/insights/ImageDelivery.ts +142 -17
- package/front_end/models/trace/insights/InteractionToNextPaint.test.ts +1 -11
- package/front_end/models/trace/insights/InteractionToNextPaint.ts +39 -6
- package/front_end/models/trace/insights/LCPDiscovery.test.ts +24 -15
- package/front_end/models/trace/insights/LCPDiscovery.ts +57 -19
- package/front_end/models/trace/insights/LCPPhases.test.ts +6 -16
- package/front_end/models/trace/insights/LCPPhases.ts +57 -29
- package/front_end/models/trace/insights/LongCriticalNetworkTree.ts +60 -0
- package/front_end/models/trace/insights/Models.ts +3 -0
- package/front_end/models/trace/insights/RenderBlocking.test.ts +14 -25
- package/front_end/models/trace/insights/RenderBlocking.ts +22 -10
- package/front_end/models/trace/insights/SlowCSSSelector.test.ts +5 -15
- package/front_end/models/trace/insights/SlowCSSSelector.ts +42 -10
- package/front_end/models/trace/insights/Statistics.test.ts +145 -0
- package/front_end/models/trace/insights/Statistics.ts +93 -0
- package/front_end/models/trace/insights/ThirdParties.test.ts +57 -50
- package/front_end/models/trace/insights/ThirdParties.ts +41 -24
- package/front_end/models/trace/insights/Viewport.test.ts +8 -13
- package/front_end/models/trace/insights/Viewport.ts +10 -9
- package/front_end/models/trace/insights/insights.ts +1 -0
- package/front_end/models/trace/insights/types.ts +39 -18
- package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +101 -73
- package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +7 -8
- package/front_end/models/trace/lantern/graph/BaseNode.test.ts +83 -76
- package/front_end/models/trace/lantern/graph/BaseNode.ts +2 -1
- package/front_end/models/trace/lantern/graph/CPUNode.ts +2 -1
- package/front_end/models/trace/lantern/graph/NetworkNode.ts +2 -1
- package/front_end/models/trace/lantern/graph/PageDependencyGraph.test.ts +110 -114
- package/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +2 -1
- package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.test.ts +3 -3
- package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.ts +1 -1
- package/front_end/models/trace/lantern/metrics/Interactive.test.ts +6 -6
- package/front_end/models/trace/lantern/metrics/LargestContentfulPaint.test.ts +3 -3
- package/front_end/models/trace/lantern/metrics/SpeedIndex.test.ts +3 -3
- package/front_end/models/trace/lantern/metrics/TBTUtils.test.ts +1 -1
- package/front_end/models/trace/lantern/simulation/ConnectionPool.test.ts +56 -44
- package/front_end/models/trace/lantern/simulation/ConnectionPool.ts +1 -1
- package/front_end/models/trace/lantern/simulation/DNSCache.test.ts +3 -5
- package/front_end/models/trace/lantern/simulation/DNSCache.ts +2 -2
- package/front_end/models/trace/lantern/simulation/Simulator.test.ts +69 -38
- package/front_end/models/trace/lantern/simulation/Simulator.ts +4 -3
- package/front_end/models/trace/lantern/simulation/TCPConnection.test.ts +1 -1
- package/front_end/models/trace/lantern/simulation/TCPConnection.ts +0 -4
- package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +2 -2
- package/front_end/models/trace/lantern/types/Lantern.ts +56 -56
- package/front_end/models/trace/root-causes/LayoutShift.test.ts +32 -35
- package/front_end/models/trace/root-causes/LayoutShift.ts +20 -19
- package/front_end/models/trace/root-causes/RootCauses.ts +8 -8
- package/front_end/models/trace/types/Configuration.ts +23 -6
- package/front_end/models/trace/types/Extensions.ts +6 -7
- package/front_end/models/trace/types/File.ts +33 -31
- package/front_end/models/trace/types/Timing.ts +12 -20
- package/front_end/models/trace/types/TraceEvents.ts +351 -197
- package/front_end/models/workspace/FileManager.ts +3 -3
- package/front_end/models/workspace/SearchConfig.test.ts +3 -2
- package/front_end/models/workspace/UISourceCode.test.ts +1 -1
- package/front_end/models/workspace/UISourceCode.ts +10 -13
- package/front_end/models/workspace/WorkspaceImpl.test.ts +18 -19
- package/front_end/models/workspace/WorkspaceImpl.ts +10 -10
- package/front_end/models/workspace_diff/WorkspaceDiff.test.ts +5 -3
- package/front_end/models/workspace_diff/WorkspaceDiff.ts +49 -47
- package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +4 -7
- package/front_end/panels/accessibility/AccessibilityNodeView.ts +1 -4
- package/front_end/panels/accessibility/AccessibilitySubPane.ts +6 -8
- package/front_end/panels/accessibility/accessibilityNode.css +2 -2
- package/front_end/panels/accessibility/axBreadcrumbs.css +4 -15
- package/front_end/panels/{freestyler/FreestylerPanel.test.ts → ai_assistance/AiAssistancePanel.test.ts} +218 -206
- package/front_end/panels/{freestyler/FreestylerPanel.ts → ai_assistance/AiAssistancePanel.ts} +388 -294
- package/front_end/panels/{freestyler → ai_assistance}/AiHistoryStorage.test.ts +53 -30
- package/front_end/panels/ai_assistance/AiHistoryStorage.ts +129 -0
- package/front_end/panels/ai_assistance/ChangeManager.test.ts +210 -0
- package/front_end/panels/{freestyler → ai_assistance}/ChangeManager.ts +34 -15
- package/front_end/panels/{freestyler/FreestylerEvaluateAction.test.ts → ai_assistance/EvaluateAction.test.ts} +37 -35
- package/front_end/panels/{freestyler/FreestylerEvaluateAction.ts → ai_assistance/EvaluateAction.ts} +10 -5
- package/front_end/panels/{freestyler → ai_assistance}/ExtensionScope.ts +50 -31
- package/front_end/panels/ai_assistance/agents/AiAgent.test.ts +405 -0
- package/front_end/panels/ai_assistance/agents/AiAgent.ts +683 -0
- package/front_end/panels/ai_assistance/agents/FileAgent.test.ts +208 -0
- package/front_end/panels/{freestyler/DrJonesFileAgent.ts → ai_assistance/agents/FileAgent.ts} +23 -81
- package/front_end/panels/ai_assistance/agents/NetworkAgent.test.ts +236 -0
- package/front_end/panels/ai_assistance/agents/NetworkAgent.ts +199 -0
- package/front_end/panels/ai_assistance/agents/PatchAgent.ts +327 -0
- package/front_end/panels/{freestyler/DrJonesPerformanceAgent.test.ts → ai_assistance/agents/PerformanceAgent.test.ts} +67 -91
- package/front_end/panels/{freestyler/DrJonesPerformanceAgent.ts → ai_assistance/agents/PerformanceAgent.ts} +39 -27
- package/front_end/panels/ai_assistance/agents/PerformanceInsightsAgent.ts +117 -0
- package/front_end/panels/{freestyler/FreestylerAgent.test.ts → ai_assistance/agents/StylingAgent.test.ts} +459 -605
- package/front_end/panels/{freestyler/FreestylerAgent.ts → ai_assistance/agents/StylingAgent.ts} +298 -105
- package/front_end/panels/{freestyler/freestylerPanel.css → ai_assistance/aiAssistancePanel.css} +2 -2
- package/front_end/panels/{freestyler/freestyler-meta.ts → ai_assistance/ai_assistance-meta.ts} +57 -45
- package/front_end/panels/ai_assistance/ai_assistance.ts +20 -0
- package/front_end/panels/{freestyler/components/FreestylerChatUi.test.ts → ai_assistance/components/ChatView.test.ts} +21 -24
- package/front_end/panels/ai_assistance/components/ChatView.ts +1630 -0
- package/front_end/panels/ai_assistance/components/MarkdownRendererWithCodeBlock.ts +57 -0
- package/front_end/panels/ai_assistance/components/UserActionRow.test.ts +98 -0
- package/front_end/panels/ai_assistance/components/UserActionRow.ts +437 -0
- package/front_end/panels/{freestyler/components/freestylerChatUi.css → ai_assistance/components/chatView.css} +131 -11
- package/front_end/panels/ai_assistance/components/userActionRow.css +117 -0
- package/front_end/panels/{freestyler/DrJonesFileAgent.test.ts → ai_assistance/data_formatters/FileFormatter.test.ts} +46 -234
- package/front_end/panels/ai_assistance/data_formatters/FileFormatter.ts +81 -0
- package/front_end/panels/ai_assistance/data_formatters/NetworkRequestFormatter.test.ts +87 -0
- package/front_end/panels/ai_assistance/data_formatters/NetworkRequestFormatter.ts +272 -0
- package/front_end/panels/ai_assistance/debug.ts +30 -0
- package/front_end/panels/animation/AnimationScreenshotPopover.ts +2 -1
- package/front_end/panels/animation/AnimationTimeline.test.ts +8 -8
- package/front_end/panels/animation/AnimationTimeline.ts +11 -6
- package/front_end/panels/animation/AnimationUI.ts +7 -7
- package/front_end/panels/animation/animationTimeline.css +8 -15
- package/front_end/panels/application/AppManifestView.test.ts +14 -12
- package/front_end/panels/application/AppManifestView.ts +16 -20
- package/front_end/panels/application/ApplicationPanelSidebar.test.ts +12 -13
- package/front_end/panels/application/ApplicationPanelSidebar.ts +94 -25
- package/front_end/panels/application/ApplicationPanelTreeElement.ts +34 -2
- package/front_end/panels/application/BackgroundServiceModel.ts +4 -4
- package/front_end/panels/application/BackgroundServiceView.test.ts +23 -2
- package/front_end/panels/application/BackgroundServiceView.ts +38 -34
- package/front_end/panels/application/CookieItemsView.ts +7 -6
- package/front_end/panels/application/DOMStorageItemsView.ts +38 -53
- package/front_end/panels/application/DOMStorageModel.test.ts +1 -1
- package/front_end/panels/application/DOMStorageModel.ts +11 -11
- package/front_end/panels/application/ExtensionStorageItemsView.test.ts +20 -29
- package/front_end/panels/application/ExtensionStorageItemsView.ts +41 -96
- package/front_end/panels/application/ExtensionStorageModel.test.ts +9 -7
- package/front_end/panels/application/ExtensionStorageModel.ts +4 -4
- package/front_end/panels/application/IndexedDBModel.ts +8 -8
- package/front_end/panels/application/IndexedDBViews.test.ts +6 -8
- package/front_end/panels/application/IndexedDBViews.ts +11 -14
- package/front_end/panels/application/InterestGroupStorageModel.ts +4 -4
- package/front_end/panels/application/InterestGroupStorageView.test.ts +9 -33
- package/front_end/panels/application/InterestGroupStorageView.ts +38 -33
- package/front_end/panels/application/InterestGroupTreeElement.test.ts +1 -1
- package/front_end/panels/application/KeyValueStorageItemsView.test.ts +122 -0
- package/front_end/panels/application/KeyValueStorageItemsView.ts +356 -0
- package/front_end/panels/application/OpenedWindowDetailsView.ts +4 -10
- package/front_end/panels/application/PreloadingTreeElement.ts +2 -2
- package/front_end/panels/application/ReportingApiReportsView.test.ts +1 -13
- package/front_end/panels/application/ReportingApiReportsView.ts +14 -19
- package/front_end/panels/application/ReportingApiView.test.ts +13 -0
- package/front_end/panels/application/ResourcesPanel.ts +11 -12
- package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +11 -1
- package/front_end/panels/application/ServiceWorkerCacheViews.ts +12 -5
- package/front_end/panels/application/ServiceWorkerUpdateCycleView.test.ts +9 -10
- package/front_end/panels/application/ServiceWorkerUpdateCycleView.ts +2 -2
- package/front_end/panels/application/ServiceWorkersView.ts +1 -7
- package/front_end/panels/application/SharedStorageEventsView.test.ts +4 -19
- package/front_end/panels/application/SharedStorageEventsView.ts +24 -28
- package/front_end/panels/application/SharedStorageItemsView.test.ts +14 -16
- package/front_end/panels/application/SharedStorageItemsView.ts +14 -10
- package/front_end/panels/application/SharedStorageModel.test.ts +1 -1
- package/front_end/panels/application/SharedStorageModel.ts +9 -9
- package/front_end/panels/application/SharedStorageTreeElement.test.ts +2 -4
- package/front_end/panels/application/StorageBucketsTreeElement.ts +19 -3
- package/front_end/panels/application/StorageItemsView.ts +4 -2
- package/front_end/panels/application/StorageView.test.ts +2 -4
- package/front_end/panels/application/StorageView.ts +9 -16
- package/front_end/panels/application/appManifestView.css +1 -1
- package/front_end/panels/application/application.ts +2 -0
- package/front_end/panels/application/components/BackForwardCacheView.test.ts +10 -12
- package/front_end/panels/application/components/BackForwardCacheView.ts +30 -29
- package/front_end/panels/application/components/BounceTrackingMitigationsView.test.ts +18 -21
- package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +24 -38
- package/front_end/panels/application/components/EndpointsGrid.test.ts +13 -14
- package/front_end/panels/application/components/EndpointsGrid.ts +40 -51
- package/front_end/panels/application/components/FrameDetailsView.test.ts +3 -5
- package/front_end/panels/application/components/FrameDetailsView.ts +61 -60
- package/front_end/panels/application/components/InterestGroupAccessGrid.test.ts +5 -11
- package/front_end/panels/application/components/InterestGroupAccessGrid.ts +65 -73
- package/front_end/panels/application/components/OriginTrialTreeView.test.ts +3 -5
- package/front_end/panels/application/components/OriginTrialTreeView.ts +23 -15
- package/front_end/panels/application/components/PermissionsPolicySection.ts +19 -17
- package/front_end/panels/application/components/ProtocolHandlersView.test.ts +5 -3
- package/front_end/panels/application/components/ProtocolHandlersView.ts +17 -11
- package/front_end/panels/application/components/ReportsGrid.test.ts +11 -12
- package/front_end/panels/application/components/ReportsGrid.ts +67 -81
- package/front_end/panels/application/components/ServiceWorkerRouterView.test.ts +3 -5
- package/front_end/panels/application/components/ServiceWorkerRouterView.ts +8 -4
- package/front_end/panels/application/components/SharedStorageAccessGrid.test.ts +8 -16
- package/front_end/panels/application/components/SharedStorageAccessGrid.ts +96 -97
- package/front_end/panels/application/components/SharedStorageMetadataView.test.ts +5 -7
- package/front_end/panels/application/components/SharedStorageMetadataView.ts +10 -6
- package/front_end/panels/application/components/StackTrace.test.ts +4 -3
- package/front_end/panels/application/components/StackTrace.ts +16 -10
- package/front_end/panels/application/components/StorageMetadataView.test.ts +3 -5
- package/front_end/panels/application/components/StorageMetadataView.ts +20 -21
- package/front_end/panels/application/components/TrustTokensView.test.ts +9 -15
- package/front_end/panels/application/components/TrustTokensView.ts +76 -79
- package/front_end/panels/application/components/bounceTrackingMitigationsView.css +1 -2
- package/front_end/panels/application/components/interestGroupAccessGrid.css +3 -2
- package/front_end/panels/application/components/reportingApiGrid.css +3 -13
- package/front_end/panels/application/components/sharedStorageAccessGrid.css +3 -2
- package/front_end/panels/application/components/trustTokensView.css +3 -2
- package/front_end/panels/application/interestGroupStorageView.css +0 -13
- package/front_end/panels/application/preloading/PreloadingView.test.ts +61 -54
- package/front_end/panels/application/preloading/PreloadingView.ts +28 -34
- package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +11 -16
- package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +63 -93
- package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.test.ts +188 -35
- package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +91 -48
- package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +28 -39
- package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +186 -30
- package/front_end/panels/application/preloading/components/PreloadingGrid.ts +63 -107
- package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.test.ts +6 -5
- package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +31 -63
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.test.ts +7 -15
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +16 -13
- package/front_end/panels/application/preloading/components/RuleSetGrid.test.ts +11 -9
- package/front_end/panels/application/preloading/components/RuleSetGrid.ts +126 -219
- package/front_end/panels/application/preloading/components/UsedPreloadingView.test.ts +92 -70
- package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +22 -20
- package/front_end/panels/application/preloading/components/preloadingDetailsReportView.css +8 -0
- package/front_end/panels/application/preloading/components/preloadingDisabledInfobar.css +8 -34
- package/front_end/panels/application/preloading/components/preloadingGrid.css +2 -2
- package/front_end/panels/application/preloading/components/ruleSetGrid.css +2 -2
- package/front_end/panels/application/resourcesPanel.css +1 -2
- package/front_end/panels/application/serviceWorkersView.css +0 -5
- package/front_end/panels/application/sharedStorageEventsView.css +0 -13
- package/front_end/panels/autofill/AutofillView.test.ts +25 -24
- package/front_end/panels/autofill/AutofillView.ts +56 -114
- package/front_end/panels/autofill/autofillView.css +5 -0
- package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +3 -6
- package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +22 -14
- package/front_end/panels/browser_debugger/ObjectEventListenersSidebarPane.ts +1 -1
- package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +4 -7
- package/front_end/panels/browser_debugger/domBreakpointsSidebarPane.css +4 -0
- package/front_end/panels/changes/ChangesSidebar.ts +6 -9
- package/front_end/panels/changes/ChangesView.ts +45 -22
- package/front_end/panels/changes/changesView.css +2 -2
- package/front_end/panels/console/ConsoleContextSelector.ts +1 -2
- package/front_end/panels/console/ConsoleFilter.ts +3 -3
- package/front_end/panels/console/ConsolePinPane.ts +9 -11
- package/front_end/panels/console/ConsolePrompt.ts +5 -8
- package/front_end/panels/console/ConsoleSidebar.ts +5 -9
- package/front_end/panels/console/ConsoleView.test.ts +33 -6
- package/front_end/panels/console/ConsoleView.ts +63 -60
- package/front_end/panels/console/ConsoleViewMessage.test.ts +81 -12
- package/front_end/panels/console/ConsoleViewMessage.ts +45 -7
- package/front_end/panels/console/ConsoleViewport.ts +2 -2
- package/front_end/panels/console/ErrorStackParser.test.ts +42 -22
- package/front_end/panels/console/ErrorStackParser.ts +10 -2
- package/front_end/panels/console/consolePinPane.css +1 -1
- package/front_end/panels/console/consoleSidebar.css +4 -0
- package/front_end/panels/console/consoleView.css +24 -10
- package/front_end/panels/console_counters/WarningErrorCounter.ts +1 -0
- package/front_end/panels/coverage/CoverageDecorationManager.test.ts +4 -3
- package/front_end/panels/coverage/CoverageListView.ts +2 -5
- package/front_end/panels/coverage/CoverageModel.ts +8 -8
- package/front_end/panels/coverage/CoverageView.test.ts +4 -6
- package/front_end/panels/coverage/CoverageView.ts +11 -7
- package/front_end/panels/coverage/coverageView.css +1 -2
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +8 -13
- package/front_end/panels/css_overview/CSSOverviewController.ts +8 -8
- package/front_end/panels/css_overview/CSSOverviewPanel.ts +1 -4
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -5
- package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +9 -11
- package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +6 -4
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +3 -2
- package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +150 -234
- package/front_end/panels/developer_resources/DeveloperResourcesView.test.ts +7 -6
- package/front_end/panels/developer_resources/DeveloperResourcesView.ts +31 -13
- package/front_end/panels/developer_resources/developerResourcesListView.css +4 -8
- package/front_end/panels/developer_resources/developerResourcesView.css +0 -1
- package/front_end/panels/elements/AccessibilityTreeUtils.ts +3 -3
- package/front_end/panels/elements/AccessibilityTreeView.test.ts +3 -1
- package/front_end/panels/elements/AccessibilityTreeView.ts +5 -1
- package/front_end/panels/elements/CSSRuleValidator.ts +4 -10
- package/front_end/panels/elements/ClassesPaneWidget.ts +4 -4
- package/front_end/panels/elements/ColorSwatchPopoverIcon.test.ts +63 -0
- package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +44 -18
- package/front_end/panels/elements/ComputedStyleModel.test.ts +157 -0
- package/front_end/panels/elements/ComputedStyleModel.ts +81 -19
- package/front_end/panels/elements/ComputedStyleWidget.test.ts +133 -52
- package/front_end/panels/elements/ComputedStyleWidget.ts +34 -26
- package/front_end/panels/elements/DOMLinkifier.ts +18 -17
- package/front_end/panels/elements/ElementStatePaneWidget.test.ts +9 -20
- package/front_end/panels/elements/ElementStatePaneWidget.ts +12 -3
- package/front_end/panels/elements/ElementsPanel.ts +24 -27
- package/front_end/panels/elements/ElementsSidebarPane.ts +11 -7
- package/front_end/panels/elements/ElementsTreeElement.ts +20 -22
- package/front_end/panels/elements/ElementsTreeOutline.test.ts +93 -0
- package/front_end/panels/elements/ElementsTreeOutline.ts +19 -15
- package/front_end/panels/elements/EventListenersWidget.ts +1 -1
- package/front_end/panels/elements/LayersWidget.ts +3 -3
- package/front_end/panels/elements/MetricsSidebarPane.ts +4 -6
- package/front_end/panels/elements/NodeStackTraceWidget.ts +1 -1
- package/front_end/panels/elements/PlatformFontsWidget.ts +5 -9
- package/front_end/panels/elements/PropertiesWidget.ts +4 -6
- package/front_end/panels/elements/PropertyRenderer.test.ts +5 -5
- package/front_end/panels/elements/PropertyRenderer.ts +31 -16
- package/front_end/panels/elements/StylePropertiesSection.test.ts +23 -52
- package/front_end/panels/elements/StylePropertiesSection.ts +19 -14
- package/front_end/panels/elements/StylePropertyHighlighter.test.ts +5 -1
- package/front_end/panels/elements/StylePropertyTreeElement.test.ts +191 -190
- package/front_end/panels/elements/StylePropertyTreeElement.ts +331 -178
- package/front_end/panels/elements/StylesSidebarPane.test.ts +431 -33
- package/front_end/panels/elements/StylesSidebarPane.ts +182 -51
- package/front_end/panels/elements/TopLayerContainer.ts +1 -2
- package/front_end/panels/elements/WebCustomData.test.ts +1 -1
- package/front_end/panels/elements/components/AccessibilityTreeNode.test.ts +3 -5
- package/front_end/panels/elements/components/AccessibilityTreeNode.ts +12 -12
- package/front_end/panels/elements/components/AnchorFunctionLinkSwatch.ts +17 -13
- package/front_end/panels/elements/components/CSSHintDetailsView.ts +6 -4
- package/front_end/panels/elements/components/CSSPropertyDocsView.ts +8 -6
- package/front_end/panels/elements/components/CSSPropertyIconResolver.ts +31 -9
- package/front_end/panels/elements/components/CSSQuery.ts +15 -7
- package/front_end/panels/elements/components/CSSVariableValueView.ts +9 -5
- package/front_end/panels/elements/components/ComputedStyleProperty.ts +5 -3
- package/front_end/panels/elements/components/ComputedStyleTrace.ts +6 -4
- package/front_end/panels/elements/components/ElementsBreadcrumbs.test.ts +13 -15
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +18 -15
- package/front_end/panels/elements/components/ElementsTreeExpandButton.test.ts +3 -5
- package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +6 -4
- package/front_end/panels/elements/components/LayoutPane.test.ts +14 -10
- package/front_end/panels/elements/components/LayoutPane.ts +18 -12
- package/front_end/panels/elements/components/QueryContainer.test.ts +1 -1
- package/front_end/panels/elements/components/QueryContainer.ts +17 -13
- package/front_end/panels/elements/components/StylePropertyEditor.ts +11 -7
- package/front_end/panels/elements/components/components.ts +0 -2
- package/front_end/panels/elements/components/layoutPane.css +1 -1
- package/front_end/panels/elements/elements.ts +0 -2
- package/front_end/panels/elements/elementsPanel.css +4 -4
- package/front_end/panels/elements/elementsTreeOutline.css +9 -10
- package/front_end/panels/elements/metricsSidebarPane.css +1 -1
- package/front_end/panels/elements/stylePropertiesTreeOutline.css +8 -0
- package/front_end/panels/emulation/DeviceModeToolbar.ts +28 -43
- package/front_end/panels/emulation/DeviceModeView.ts +19 -23
- package/front_end/panels/emulation/DeviceModeWrapper.ts +27 -2
- package/front_end/panels/emulation/InspectedPagePlaceholder.ts +5 -5
- package/front_end/panels/emulation/MediaQueryInspector.test.ts +2 -2
- package/front_end/panels/emulation/MediaQueryInspector.ts +1 -1
- package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +3 -6
- package/front_end/panels/emulation/deviceModeView.css +26 -29
- package/front_end/panels/emulation/emulation-meta.ts +0 -1
- package/front_end/panels/emulation/mediaQueryInspector.css +3 -6
- package/front_end/panels/event_listeners/EventListenersUtils.ts +4 -3
- package/front_end/panels/event_listeners/EventListenersView.ts +3 -6
- package/front_end/panels/explain/PromptBuilder.test.ts +48 -25
- package/front_end/panels/explain/PromptBuilder.ts +10 -11
- package/front_end/panels/explain/components/ConsoleInsight.test.ts +263 -1
- package/front_end/panels/explain/components/ConsoleInsight.ts +259 -31
- package/front_end/panels/explain/components/consoleInsight.css +68 -9
- package/front_end/panels/explain/components/consoleInsightSourcesList.css +2 -0
- package/front_end/panels/explain/explain-meta.ts +12 -8
- package/front_end/panels/issues/AffectedBlockedByResponseView.ts +3 -3
- package/front_end/panels/issues/AffectedDescendantsWithinSelectElementView.ts +64 -0
- package/front_end/panels/issues/AffectedDirectivesView.ts +2 -2
- package/front_end/panels/issues/AffectedHeavyAdView.ts +1 -1
- package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +1 -1
- package/front_end/panels/issues/AffectedTrackingSitesView.ts +1 -0
- package/front_end/panels/issues/IssueAggregator.test.ts +23 -20
- package/front_end/panels/issues/IssueAggregator.ts +25 -10
- package/front_end/panels/issues/IssueView.ts +2 -0
- package/front_end/panels/issues/IssuesPane.ts +9 -8
- package/front_end/panels/issues/components/ElementsPanelLink.ts +6 -4
- package/front_end/panels/issues/components/HideIssuesMenu.ts +6 -4
- package/front_end/panels/issues/issuesPane.css +1 -1
- package/front_end/panels/issues/issuesTree.css +9 -7
- package/front_end/panels/layer_viewer/LayerDetailsView.ts +16 -10
- package/front_end/panels/layer_viewer/LayerTreeOutline.ts +3 -3
- package/front_end/panels/layer_viewer/LayerViewHost.ts +0 -1
- package/front_end/panels/layer_viewer/Layers3DView.ts +11 -10
- package/front_end/panels/layer_viewer/PaintProfilerView.ts +6 -9
- package/front_end/panels/layer_viewer/TransformController.ts +8 -5
- package/front_end/panels/layer_viewer/layerDetailsView.css +5 -2
- package/front_end/panels/layer_viewer/layers3DView.css +1 -1
- package/front_end/panels/layers/LayerTreeModel.ts +5 -5
- package/front_end/panels/layers/LayersPanel.ts +1 -2
- package/front_end/panels/lighthouse/LighthouseController.ts +9 -9
- package/front_end/panels/lighthouse/LighthousePanel.ts +10 -9
- package/front_end/panels/lighthouse/LighthouseProtocolService.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseReportRenderer.test.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseReportSelector.ts +3 -7
- package/front_end/panels/lighthouse/LighthouseStartView.ts +5 -2
- package/front_end/panels/lighthouse/LighthouseStatusView.ts +2 -2
- package/front_end/panels/lighthouse/LighthouseTimespanView.ts +2 -2
- package/front_end/panels/lighthouse/lighthousePanel.css +6 -6
- package/front_end/panels/lighthouse/lighthouseStartView.css +1 -0
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.test.ts +4 -4
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +14 -14
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.test.ts +3 -3
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +3 -3
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +9 -5
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.test.ts +3 -3
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +26 -26
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +10 -6
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +9 -5
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.test.ts +2 -2
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.ts +15 -11
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.test.ts +3 -3
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +17 -10
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +4 -3
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +8 -4
- package/front_end/panels/linear_memory_inspector/components/valueInterpreterDisplay.css +1 -0
- package/front_end/panels/linear_memory_inspector/components/valueInterpreterSettings.css +1 -2
- package/front_end/panels/media/EventDisplayTable.ts +2 -5
- package/front_end/panels/media/EventTimelineView.ts +3 -3
- package/front_end/panels/media/MainView.test.ts +2 -2
- package/front_end/panels/media/MediaModel.ts +7 -7
- package/front_end/panels/media/PlayerListView.ts +1 -5
- package/front_end/panels/media/PlayerMessagesView.ts +6 -9
- package/front_end/panels/media/PlayerPropertiesView.ts +5 -8
- package/front_end/panels/mobile_throttling/CalibrationController.ts +368 -0
- package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +5 -4
- package/front_end/panels/mobile_throttling/ThrottlingManager.test.ts +8 -10
- package/front_end/panels/mobile_throttling/ThrottlingManager.ts +169 -91
- package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +77 -15
- package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +336 -12
- package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +1 -0
- package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +45 -8
- package/front_end/panels/network/BinaryResourceView.ts +7 -9
- package/front_end/panels/network/BlockedURLsPane.test.ts +4 -2
- package/front_end/panels/network/BlockedURLsPane.ts +10 -8
- package/front_end/panels/network/EventSourceMessagesView.ts +6 -5
- package/front_end/panels/network/NetworkConfigView.test.ts +15 -0
- package/front_end/panels/network/NetworkConfigView.ts +13 -15
- package/front_end/panels/network/NetworkDataGridNode.test.ts +40 -60
- package/front_end/panels/network/NetworkDataGridNode.ts +4 -4
- package/front_end/panels/network/NetworkItemView.test.ts +26 -28
- package/front_end/panels/network/NetworkItemView.ts +9 -11
- package/front_end/panels/network/NetworkLogView.test.ts +70 -40
- package/front_end/panels/network/NetworkLogView.ts +20 -19
- package/front_end/panels/network/NetworkLogViewColumns.ts +5 -8
- package/front_end/panels/network/NetworkManageCustomHeadersView.ts +3 -3
- package/front_end/panels/network/NetworkOverview.test.ts +2 -4
- package/front_end/panels/network/NetworkOverview.ts +14 -16
- package/front_end/panels/network/NetworkPanel.test.ts +6 -9
- package/front_end/panels/network/NetworkPanel.ts +45 -49
- package/front_end/panels/network/NetworkSearchScope.test.ts +5 -5
- package/front_end/panels/network/NetworkTimeCalculator.ts +3 -3
- package/front_end/panels/network/NetworkWaterfallColumn.ts +8 -8
- package/front_end/panels/network/RequestCookiesView.test.ts +5 -4
- package/front_end/panels/network/RequestCookiesView.ts +4 -6
- package/front_end/panels/network/RequestHTMLView.ts +2 -1
- package/front_end/panels/network/RequestInitiatorView.ts +5 -5
- package/front_end/panels/network/RequestPayloadView.ts +22 -14
- package/front_end/panels/network/RequestPreviewView.test.ts +8 -9
- package/front_end/panels/network/RequestPreviewView.ts +5 -3
- package/front_end/panels/network/RequestResponseView.test.ts +8 -8
- package/front_end/panels/network/RequestResponseView.ts +8 -3
- package/front_end/panels/network/RequestTimingView.test.ts +6 -4
- package/front_end/panels/network/RequestTimingView.ts +10 -11
- package/front_end/panels/network/ResourceWebSocketFrameView.ts +11 -5
- package/front_end/panels/network/SignedExchangeInfoView.ts +6 -10
- package/front_end/panels/network/binaryResourceView.css +1 -1
- package/front_end/panels/network/blockedURLsPane.css +1 -2
- package/front_end/panels/network/components/EditableSpan.ts +5 -3
- package/front_end/panels/network/components/HeaderSectionRow.test.ts +25 -27
- package/front_end/panels/network/components/HeaderSectionRow.ts +25 -24
- package/front_end/panels/network/components/RequestHeaderSection.test.ts +3 -5
- package/front_end/panels/network/components/RequestHeaderSection.ts +9 -5
- package/front_end/panels/network/components/RequestHeadersView.test.ts +42 -49
- package/front_end/panels/network/components/RequestHeadersView.ts +30 -28
- package/front_end/panels/network/components/RequestTrustTokensView.test.ts +1 -1
- package/front_end/panels/network/components/RequestTrustTokensView.ts +29 -19
- package/front_end/panels/network/components/ResponseHeaderSection.test.ts +57 -66
- package/front_end/panels/network/components/ResponseHeaderSection.ts +8 -8
- package/front_end/panels/network/components/WebBundleInfoView.css +8 -0
- package/front_end/panels/network/components/WebBundleInfoView.ts +32 -49
- package/front_end/panels/network/network-meta.ts +5 -2
- package/front_end/panels/network/networkConfigView.css +3 -11
- package/front_end/panels/network/networkLogView.css +3 -6
- package/front_end/panels/network/networkManageCustomHeadersView.css +7 -11
- package/front_end/panels/network/networkPanel.css +9 -12
- package/front_end/panels/network/networkTimingTable.css +1 -1
- package/front_end/panels/network/requestInitiatorView.css +1 -1
- package/front_end/panels/network/webSocketFrameView.css +2 -2
- package/front_end/panels/performance_monitor/PerformanceMonitor.ts +8 -8
- package/front_end/panels/performance_monitor/performanceMonitor.css +1 -2
- package/front_end/panels/profiler/HeapDetachedElementsView.ts +9 -5
- package/front_end/panels/profiler/HeapProfileView.ts +7 -7
- package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +5 -5
- package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +17 -17
- package/front_end/panels/profiler/HeapSnapshotProxy.ts +3 -3
- package/front_end/panels/profiler/HeapSnapshotView.ts +37 -18
- package/front_end/panels/profiler/HeapTimelineOverview.ts +5 -6
- package/front_end/panels/profiler/IsolateSelector.ts +1 -1
- package/front_end/panels/profiler/LiveHeapProfileView.ts +5 -3
- package/front_end/panels/profiler/ProfileDataGrid.ts +1 -2
- package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +6 -7
- package/front_end/panels/profiler/ProfileHeader.ts +12 -12
- package/front_end/panels/profiler/ProfileLauncherView.ts +11 -17
- package/front_end/panels/profiler/ProfileSidebarTreeElement.ts +8 -2
- package/front_end/panels/profiler/ProfileView.ts +1 -1
- package/front_end/panels/profiler/ProfilesPanel.ts +16 -12
- package/front_end/panels/profiler/TopDownProfileDataGrid.ts +2 -2
- package/front_end/panels/profiler/heapProfiler.css +8 -4
- package/front_end/panels/profiler/liveHeapProfile.css +1 -1
- package/front_end/panels/profiler/profileLauncherView.css +27 -33
- package/front_end/panels/profiler/profilesPanel.css +1 -4
- package/front_end/panels/profiler/profilesSidebarTree.css +10 -0
- package/front_end/panels/protocol_monitor/{components/JSONEditor.css → JSONEditor.css} +6 -1
- package/front_end/panels/protocol_monitor/{components/JSONEditor.test.ts → JSONEditor.test.ts} +124 -127
- package/front_end/panels/protocol_monitor/{components/JSONEditor.ts → JSONEditor.ts} +159 -82
- package/front_end/panels/protocol_monitor/ProtocolMonitor.test.ts +12 -12
- package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +293 -360
- package/front_end/panels/protocol_monitor/protocol_monitor.ts +2 -2
- package/front_end/panels/recorder/RecorderController.test.ts +10 -14
- package/front_end/panels/recorder/RecorderController.ts +53 -23
- package/front_end/panels/recorder/components/ControlButton.ts +7 -3
- package/front_end/panels/recorder/components/CreateRecordingView.test.ts +9 -9
- package/front_end/panels/recorder/components/CreateRecordingView.ts +8 -6
- package/front_end/panels/recorder/components/ExtensionView.ts +8 -4
- package/front_end/panels/recorder/components/RecordingListView.test.ts +7 -9
- package/front_end/panels/recorder/components/RecordingListView.ts +8 -4
- package/front_end/panels/recorder/components/RecordingView.test.ts +7 -9
- package/front_end/panels/recorder/components/RecordingView.ts +22 -20
- package/front_end/panels/recorder/components/ReplaySection.test.ts +3 -5
- package/front_end/panels/recorder/components/ReplaySection.ts +3 -3
- package/front_end/panels/recorder/components/SelectButton.test.ts +3 -5
- package/front_end/panels/recorder/components/SelectButton.ts +14 -10
- package/front_end/panels/recorder/components/StepEditor.test.ts +38 -38
- package/front_end/panels/recorder/components/StepEditor.ts +18 -14
- package/front_end/panels/recorder/components/StepView.test.ts +10 -10
- package/front_end/panels/recorder/components/StepView.ts +23 -20
- package/front_end/panels/recorder/components/TimelineSection.ts +9 -5
- package/front_end/panels/recorder/components/components.ts +0 -2
- package/front_end/panels/recorder/components/controlButton.css +3 -4
- package/front_end/panels/recorder/components/stepView.css +4 -4
- package/front_end/panels/recorder/controllers/SelectorPicker.ts +3 -4
- package/front_end/panels/recorder/converters/Converter.ts +1 -1
- package/front_end/panels/recorder/converters/LighthouseConverter.test.ts +1 -1
- package/front_end/panels/recorder/converters/PuppeteerConverter.test.ts +2 -2
- package/front_end/panels/recorder/converters/PuppeteerReplayConverter.test.ts +1 -1
- package/front_end/panels/recorder/extensions/ExtensionManager.ts +3 -3
- package/front_end/panels/recorder/injected/injected.ts +2 -2
- package/front_end/panels/recorder/injected/selectors/CSSSelector.test.ts +0 -2
- package/front_end/panels/recorder/models/RecordingPlayer.test.ts +7 -7
- package/front_end/panels/recorder/models/RecordingPlayer.ts +10 -13
- package/front_end/panels/recorder/models/RecordingSession.ts +31 -34
- package/front_end/panels/recorder/models/Schema.ts +1 -1
- package/front_end/panels/recorder/models/SchemaUtils.ts +10 -4
- package/front_end/panels/recorder/models/ScreenshotUtils.test.ts +4 -4
- package/front_end/panels/recorder/models/Section.test.ts +5 -5
- package/front_end/panels/recorder/models/recording-storage.test.ts +1 -1
- package/front_end/panels/recorder/models/screenshot-storage.test.ts +1 -1
- package/front_end/panels/recorder/recorderController.css +2 -1
- package/front_end/panels/recorder/util/util.ts +1 -1
- package/front_end/panels/screencast/ScreencastView.ts +22 -40
- package/front_end/panels/screencast/screencastView.css +1 -0
- package/front_end/panels/search/SearchResultsPane.ts +1 -4
- package/front_end/panels/search/SearchView.ts +10 -9
- package/front_end/panels/security/CookieControlsTreeElement.ts +7 -4
- package/front_end/panels/security/CookieControlsView.test.ts +40 -3
- package/front_end/panels/security/CookieControlsView.ts +204 -66
- package/front_end/panels/security/CookieReportTreeElement.ts +7 -4
- package/front_end/panels/security/CookieReportView.test.ts +23 -23
- package/front_end/panels/security/CookieReportView.ts +277 -44
- package/front_end/panels/security/OriginTreeElement.ts +2 -3
- package/front_end/panels/security/SecurityModel.ts +3 -3
- package/front_end/panels/security/SecurityPanel.test.ts +43 -3
- package/front_end/panels/security/SecurityPanel.ts +49 -52
- package/front_end/panels/security/SecurityPanelSidebar.ts +82 -23
- package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +21 -2
- package/front_end/panels/security/cookieControlsView.css +29 -4
- package/front_end/panels/security/cookieReportView.css +4 -3
- package/front_end/panels/security/mainView.css +1 -2
- package/front_end/panels/security/originView.css +1 -2
- package/front_end/panels/security/security-meta.ts +20 -7
- package/front_end/panels/sensors/LocationsSettingsTab.ts +18 -19
- package/front_end/panels/sensors/SensorsView.ts +11 -15
- package/front_end/panels/sensors/locationsSettingsTab.css +1 -1
- package/front_end/panels/sensors/sensors.css +2 -5
- package/front_end/panels/settings/AISettingsTab.test.ts +52 -7
- package/front_end/panels/settings/AISettingsTab.ts +115 -59
- package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +21 -32
- package/front_end/panels/settings/KeybindsSettingsTab.ts +18 -20
- package/front_end/panels/settings/SettingsScreen.ts +12 -12
- package/front_end/panels/settings/aiSettingsTab.css +14 -4
- package/front_end/panels/settings/components/SyncSection.test.ts +2 -2
- package/front_end/panels/settings/components/SyncSection.ts +9 -6
- package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +13 -18
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +14 -10
- package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +1 -2
- package/front_end/panels/settings/emulation/devicesSettingsTab.css +3 -1
- package/front_end/panels/settings/emulation/utils/StructuredHeaders.test.ts +2 -2
- package/front_end/panels/settings/emulation/utils/UserAgentMetadata.ts +5 -5
- package/front_end/panels/settings/keybindsSettingsTab.css +5 -9
- package/front_end/panels/settings/settingsScreen.css +31 -13
- package/front_end/panels/snippets/ScriptSnippetFileSystem.test.ts +4 -2
- package/front_end/panels/snippets/SnippetsQuickOpen.ts +9 -3
- package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -4
- package/front_end/panels/sources/BreakpointEditDialog.test.ts +2 -3
- package/front_end/panels/sources/BreakpointEditDialog.ts +6 -11
- package/front_end/panels/sources/CSSPlugin.test.ts +4 -3
- package/front_end/panels/sources/CallStackSidebarPane.ts +4 -7
- package/front_end/panels/sources/CoveragePlugin.test.ts +4 -2
- package/front_end/panels/sources/CoveragePlugin.ts +4 -0
- package/front_end/panels/sources/DebuggerPausedMessage.ts +3 -3
- package/front_end/panels/sources/DebuggerPlugin.test.ts +9 -7
- package/front_end/panels/sources/DebuggerPlugin.ts +20 -16
- package/front_end/panels/sources/FilePathScoreFunction.ts +39 -19
- package/front_end/panels/sources/FilteredUISourceCodeListProvider.test.ts +3 -3
- package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +2 -1
- package/front_end/panels/sources/GoToLineQuickOpen.ts +16 -22
- package/front_end/panels/sources/NavigatorView.test.ts +12 -10
- package/front_end/panels/sources/NavigatorView.ts +34 -24
- package/front_end/panels/sources/OpenFileQuickOpen.ts +2 -2
- package/front_end/panels/sources/OutlineQuickOpen.ts +10 -7
- package/front_end/panels/sources/Plugin.ts +1 -1
- package/front_end/panels/sources/ProfilePlugin.ts +5 -1
- package/front_end/panels/sources/ScopeChainSidebarPane.ts +2 -5
- package/front_end/panels/sources/SnippetsPlugin.ts +2 -2
- package/front_end/panels/sources/SourcesNavigator.test.ts +41 -39
- package/front_end/panels/sources/SourcesNavigator.ts +45 -49
- package/front_end/panels/sources/SourcesPanel.ts +13 -10
- package/front_end/panels/sources/SourcesView.test.ts +16 -15
- package/front_end/panels/sources/SourcesView.ts +39 -28
- package/front_end/panels/sources/TabbedEditorContainer.test.ts +17 -24
- package/front_end/panels/sources/TabbedEditorContainer.ts +7 -7
- package/front_end/panels/sources/ThreadsSidebarPane.ts +1 -4
- package/front_end/panels/sources/UISourceCodeFrame.ts +9 -8
- package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +7 -11
- package/front_end/panels/sources/components/BreakpointsView.test.ts +47 -48
- package/front_end/panels/sources/components/BreakpointsView.ts +22 -20
- package/front_end/panels/sources/components/BreakpointsViewUtils.test.ts +44 -42
- package/front_end/panels/sources/components/HeadersView.test.ts +24 -24
- package/front_end/panels/sources/components/HeadersView.ts +18 -18
- package/front_end/panels/sources/components/breakpointsView.css +7 -7
- package/front_end/panels/sources/dialog.css +1 -1
- package/front_end/panels/sources/navigatorTree.css +4 -4
- package/front_end/panels/sources/sources-meta.ts +29 -6
- package/front_end/panels/sources/sourcesPanel.css +5 -0
- package/front_end/panels/sources/sourcesView.css +0 -4
- package/front_end/panels/timeline/AnimationsTrackAppender.ts +0 -5
- package/front_end/panels/timeline/AnnotationHelpers.test.ts +4 -4
- package/front_end/panels/timeline/AnnotationHelpers.ts +8 -9
- package/front_end/panels/timeline/AppenderUtils.ts +18 -13
- package/front_end/panels/timeline/BenchmarkEvents.ts +1 -1
- package/front_end/panels/timeline/Breadcrumbs.test.ts +29 -29
- package/front_end/panels/timeline/CompatibilityTracksAppender.ts +46 -60
- package/front_end/panels/timeline/CountersGraph.ts +8 -6
- package/front_end/panels/timeline/EntriesFilter.test.ts +20 -71
- package/front_end/panels/timeline/EntriesFilter.ts +18 -33
- package/front_end/panels/timeline/EventsTimelineTreeView.ts +6 -11
- package/front_end/panels/timeline/ExtensionTrackAppender.ts +9 -4
- package/front_end/panels/timeline/Initiators.test.ts +149 -168
- package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +25 -45
- package/front_end/panels/timeline/ModificationsManager.test.ts +23 -23
- package/front_end/panels/timeline/ModificationsManager.ts +8 -9
- package/front_end/panels/timeline/NetworkTrackAppender.ts +8 -10
- package/front_end/panels/timeline/README.md +30 -0
- package/front_end/panels/timeline/ServerTimingsTrackAppender.ts +0 -4
- package/front_end/panels/timeline/ThirdPartyTreeView.test.ts +68 -0
- package/front_end/panels/timeline/ThirdPartyTreeView.ts +300 -0
- package/front_end/panels/timeline/ThreadAppender.ts +6 -13
- package/front_end/panels/timeline/TimelineController.ts +53 -8
- package/front_end/panels/timeline/TimelineDetailsView.test.ts +37 -19
- package/front_end/panels/timeline/TimelineDetailsView.ts +94 -37
- package/front_end/panels/timeline/TimelineEventOverview.ts +28 -28
- package/front_end/panels/timeline/TimelineFilters.test.ts +5 -7
- package/front_end/panels/timeline/TimelineFilters.ts +2 -2
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +8 -11
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +135 -124
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +10 -11
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +49 -47
- package/front_end/panels/timeline/TimelineFlameChartView.test.ts +255 -222
- package/front_end/panels/timeline/TimelineFlameChartView.ts +409 -108
- package/front_end/panels/timeline/TimelineHistoryManager.test.ts +10 -46
- package/front_end/panels/timeline/TimelineHistoryManager.ts +29 -61
- package/front_end/panels/timeline/TimelineLayersView.ts +1 -1
- package/front_end/panels/timeline/TimelineLoader.test.ts +11 -11
- package/front_end/panels/timeline/TimelineLoader.ts +17 -20
- package/front_end/panels/timeline/TimelineMiniMap.test.ts +2 -3
- package/front_end/panels/timeline/TimelineMiniMap.ts +11 -21
- package/front_end/panels/timeline/TimelinePaintProfilerView.ts +3 -6
- package/front_end/panels/timeline/TimelinePanel.test.ts +140 -0
- package/front_end/panels/timeline/TimelinePanel.ts +349 -218
- package/front_end/panels/timeline/TimelineSelection.test.ts +1 -1
- package/front_end/panels/timeline/TimelineSelection.ts +9 -9
- package/front_end/panels/timeline/TimelineSelectorStatsView.ts +148 -186
- package/front_end/panels/timeline/TimelineTreeView.test.ts +24 -22
- package/front_end/panels/timeline/TimelineTreeView.ts +155 -53
- package/front_end/panels/timeline/TimelineUIUtils.test.ts +254 -127
- package/front_end/panels/timeline/TimelineUIUtils.ts +171 -265
- package/front_end/panels/timeline/TimingsTrackAppender.ts +28 -86
- package/front_end/panels/timeline/components/Breadcrumbs.ts +3 -3
- package/front_end/panels/timeline/components/BreadcrumbsUI.test.ts +14 -16
- package/front_end/panels/timeline/components/BreadcrumbsUI.ts +10 -6
- package/front_end/panels/timeline/components/CPUThrottlingSelector.test.ts +19 -13
- package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +135 -32
- package/front_end/panels/timeline/components/DetailsView.ts +2 -2
- package/front_end/panels/timeline/components/FieldSettingsDialog.test.ts +54 -311
- package/front_end/panels/timeline/components/FieldSettingsDialog.ts +26 -264
- package/front_end/panels/timeline/components/IgnoreListSetting.test.ts +423 -0
- package/front_end/panels/timeline/components/IgnoreListSetting.ts +384 -0
- package/front_end/panels/timeline/components/InteractionBreakdown.test.ts +2 -3
- package/front_end/panels/timeline/components/InteractionBreakdown.ts +8 -4
- package/front_end/panels/timeline/components/LayoutShiftDetails.ts +58 -38
- package/front_end/panels/timeline/components/LiveMetricsView.test.ts +85 -118
- package/front_end/panels/timeline/components/LiveMetricsView.ts +135 -160
- package/front_end/panels/timeline/components/MetricCard.test.ts +58 -37
- package/front_end/panels/timeline/components/MetricCard.ts +30 -46
- package/front_end/panels/timeline/components/MetricCompareStrings.ts +9 -9
- package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +4 -1
- package/front_end/panels/timeline/components/NetworkRequestDetails.ts +52 -35
- package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +18 -15
- package/front_end/panels/timeline/components/NetworkThrottlingSelector.test.ts +14 -15
- package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +43 -9
- package/front_end/panels/timeline/components/OriginMap.test.ts +359 -0
- package/front_end/panels/timeline/components/OriginMap.ts +278 -0
- package/front_end/panels/timeline/components/RelatedInsightChips.test.ts +37 -6
- package/front_end/panels/timeline/components/RelatedInsightChips.ts +42 -14
- package/front_end/panels/timeline/components/Sidebar.test.ts +87 -15
- package/front_end/panels/timeline/components/Sidebar.ts +25 -35
- package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +23 -26
- package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +23 -15
- package/front_end/panels/timeline/components/SidebarInsightsTab.test.ts +2 -4
- package/front_end/panels/timeline/components/SidebarInsightsTab.ts +30 -14
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +93 -19
- package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +271 -96
- package/front_end/panels/timeline/components/TimelineSummary.test.ts +4 -2
- package/front_end/panels/timeline/components/TimelineSummary.ts +40 -36
- package/front_end/panels/timeline/components/Utils.test.ts +18 -20
- package/front_end/panels/timeline/components/Utils.ts +52 -5
- package/front_end/panels/timeline/components/breadcrumbsUI.css +1 -2
- package/front_end/panels/timeline/components/components.ts +4 -0
- package/front_end/panels/timeline/components/cpuThrottlingSelector.css +5 -2
- package/front_end/panels/timeline/components/fieldSettingsDialog.css +13 -13
- package/front_end/panels/timeline/components/ignoreListSetting.css +67 -0
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.test.ts +12 -12
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +65 -25
- package/front_end/panels/timeline/components/insights/CLSCulprits.test.ts +44 -0
- package/front_end/panels/timeline/components/insights/CLSCulprits.ts +31 -114
- package/front_end/panels/timeline/components/insights/Checklist.ts +108 -0
- package/front_end/panels/timeline/components/insights/DOMSize.ts +127 -0
- package/front_end/panels/timeline/components/insights/DocumentLatency.ts +18 -109
- package/front_end/panels/timeline/components/insights/EventRef.ts +13 -20
- package/front_end/panels/timeline/components/insights/FontDisplay.ts +9 -26
- package/front_end/panels/timeline/components/insights/ForcedReflow.ts +105 -0
- package/front_end/panels/timeline/components/insights/ImageDelivery.ts +29 -72
- package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +15 -44
- package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +33 -96
- package/front_end/panels/timeline/components/insights/LCPPhases.ts +22 -58
- package/front_end/panels/timeline/components/insights/LongCriticalNetworkTree.ts +53 -0
- package/front_end/panels/timeline/components/insights/NodeLink.ts +42 -27
- package/front_end/panels/timeline/components/insights/README.md +16 -32
- package/front_end/panels/timeline/components/insights/RenderBlocking.ts +16 -31
- package/front_end/panels/timeline/components/insights/SidebarInsight.ts +4 -4
- package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +53 -66
- package/front_end/panels/timeline/components/insights/Table.ts +30 -14
- package/front_end/panels/timeline/components/insights/ThirdParties.ts +33 -42
- package/front_end/panels/timeline/components/insights/Viewport.ts +16 -19
- package/front_end/panels/timeline/components/insights/baseInsightComponent.css +14 -43
- package/front_end/panels/timeline/components/insights/checklist.css +33 -0
- package/front_end/panels/timeline/components/insights/insights.ts +8 -0
- package/front_end/panels/timeline/components/insights/table.css +2 -1
- package/front_end/panels/timeline/components/layoutShiftDetails.css +1 -0
- package/front_end/panels/timeline/components/liveMetricsView.css +41 -2
- package/front_end/panels/timeline/components/metricCard.css +39 -4
- package/front_end/panels/timeline/components/networkThrottlingSelector.css +5 -2
- package/front_end/panels/timeline/components/originMap.css +71 -0
- package/front_end/panels/timeline/components/relatedInsightChips.css +29 -0
- package/front_end/panels/timeline/components/sidebarAnnotationsTab.css +1 -1
- package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +62 -3
- package/front_end/panels/timeline/components/timelineSummary.css +15 -11
- package/front_end/panels/timeline/docs/flame_chart_migration.md +1 -3
- package/front_end/panels/timeline/docs/sync_tracks.md +1 -1
- package/front_end/panels/timeline/enable-easter-egg.js +1 -0
- package/front_end/panels/timeline/fixtures/traces/README.md +46 -5
- package/front_end/panels/timeline/fixtures/traces/async-js-calls.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/crux.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/dom-size-long.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/dom-size-overlap.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/dom-size.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/extension-tracks-and-marks.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/forced-reflow.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/image-delivery.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/lcp-fetchpriority-high.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/lcp-late-paint-event.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/lcp-multiple-frames.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/multi-frame-dom-stats.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/timings-track.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/web-dev-animation-frames.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/web-dev-initial-url.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/web-dev-screenshot-source-ids.json.gz +0 -0
- package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +87 -25
- package/front_end/panels/timeline/overlays/OverlaysImpl.ts +306 -102
- package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +49 -39
- package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +11 -7
- package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +12 -8
- package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.test.ts +1 -2
- package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +15 -11
- package/front_end/panels/timeline/timeline.ts +2 -2
- package/front_end/panels/timeline/timelineFlameChartView.css +43 -5
- package/front_end/panels/timeline/timelineFlamechartPopover.css +5 -2
- package/front_end/panels/timeline/timelinePanel.css +227 -23
- package/front_end/panels/timeline/timelineSelectorStatsView.css +9 -0
- package/front_end/panels/timeline/timelineStatusDialog.css +24 -11
- package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +4 -5
- package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +34 -35
- package/front_end/panels/timeline/track_appenders/CompatibilityTracksAppender.test.ts +6 -20
- package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +29 -16
- package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +3 -4
- package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +6 -7
- package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +11 -9
- package/front_end/panels/timeline/track_appenders/NetworkTrackAppender.test.ts +3 -4
- package/front_end/panels/timeline/track_appenders/ServerTimingsTrackAppender.test.ts +7 -11
- package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +21 -19
- package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +11 -72
- package/front_end/panels/timeline/utils/AICallTree.test.ts +123 -22
- package/front_end/panels/timeline/utils/AICallTree.ts +58 -13
- package/front_end/panels/timeline/utils/EntityMapper.test.ts +124 -0
- package/front_end/panels/timeline/utils/EntityMapper.ts +164 -0
- package/front_end/panels/timeline/utils/EntryName.test.ts +15 -0
- package/front_end/panels/timeline/utils/EntryName.ts +13 -1
- package/front_end/panels/timeline/utils/EntryStyles.ts +51 -7
- package/front_end/panels/timeline/utils/Helpers.ts +29 -3
- package/front_end/panels/timeline/utils/IgnoreList.test.ts +6 -6
- package/front_end/panels/timeline/utils/ImageCache.test.ts +5 -4
- package/front_end/panels/timeline/utils/ImageCache.ts +12 -7
- package/front_end/panels/timeline/utils/InsightAIContext.ts +5 -0
- package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +88 -6
- package/front_end/panels/timeline/utils/SourceMapsResolver.ts +28 -26
- package/front_end/panels/timeline/utils/utils.ts +4 -2
- package/front_end/panels/utils/utils.test.ts +28 -34
- package/front_end/panels/web_audio/AudioContextContentBuilder.ts +1 -1
- package/front_end/panels/web_audio/AudioContextSelector.ts +4 -5
- package/front_end/panels/web_audio/WebAudioModel.ts +17 -17
- package/front_end/panels/web_audio/WebAudioView.ts +8 -4
- package/front_end/panels/web_audio/graph_visualizer/GraphView.ts +3 -3
- package/front_end/panels/webauthn/WebauthnPane.test.ts +55 -11
- package/front_end/panels/webauthn/WebauthnPane.ts +58 -37
- package/front_end/panels/webauthn/webauthnPane.css +3 -10
- package/front_end/panels/whats_new/ReleaseNote.test.ts +6 -4
- package/front_end/panels/whats_new/ReleaseNoteText.ts +25 -10
- package/front_end/panels/whats_new/ReleaseNoteView.test.ts +160 -0
- package/front_end/panels/whats_new/ReleaseNoteView.ts +110 -110
- package/front_end/panels/whats_new/WhatsNewImpl.ts +2 -2
- package/front_end/panels/whats_new/releaseNoteView.css +80 -85
- package/front_end/panels/whats_new/resources/WNDT.md +6 -6
- package/front_end/panels/whats_new/whats_new-meta.ts +1 -2
- package/front_end/services/puppeteer/PuppeteerConnection.ts +0 -1
- package/front_end/services/trace_bounds/TraceBounds.test.ts +20 -20
- package/front_end/services/trace_bounds/TraceBounds.ts +10 -12
- package/front_end/testing/AiAssistanceHelpers.ts +142 -0
- package/front_end/testing/DOMHelpers.ts +46 -15
- package/front_end/testing/DataGridHelpers.ts +7 -77
- package/front_end/testing/EnvironmentHelpers.ts +43 -11
- package/front_end/testing/ExpectStubCall.ts +2 -3
- package/front_end/testing/InsightHelpers.ts +11 -0
- package/front_end/testing/LanguagePluginHelpers.ts +4 -2
- package/front_end/testing/MockConnection.ts +11 -16
- package/front_end/testing/MockExecutionContext.ts +4 -4
- package/front_end/testing/MutationHelpers.test.ts +5 -7
- package/front_end/testing/MutationHelpers.ts +1 -1
- package/front_end/testing/NetworkHelpers.ts +2 -4
- package/front_end/testing/OverridesHelpers.ts +4 -2
- package/front_end/testing/RealConnection.ts +1 -1
- package/front_end/testing/ResourceTreeHelpers.ts +4 -2
- package/front_end/testing/StubIssue.ts +1 -1
- package/front_end/testing/StyleHelpers.ts +90 -0
- package/front_end/testing/TraceHelpers.ts +134 -43
- package/front_end/testing/TraceLoader.ts +14 -0
- package/front_end/testing/TrackAsyncOperations.ts +15 -15
- package/front_end/testing/UISourceCodeHelpers.ts +5 -3
- package/front_end/testing/test_setup.ts +4 -3
- package/front_end/third_party/axe-core/README.chromium +2 -2
- package/front_end/third_party/codemirror.next/package.json +1 -1
- package/front_end/third_party/i18n/localized-string-set.ts +14 -4
- package/front_end/third_party/lighthouse/README.chromium +2 -2
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1091 -807
- package/front_end/third_party/lighthouse/locales/ar-XB.json +60 -0
- package/front_end/third_party/lighthouse/locales/ar.json +60 -0
- package/front_end/third_party/lighthouse/locales/bg.json +77 -17
- package/front_end/third_party/lighthouse/locales/ca.json +77 -17
- package/front_end/third_party/lighthouse/locales/cs.json +77 -17
- package/front_end/third_party/lighthouse/locales/da.json +77 -17
- package/front_end/third_party/lighthouse/locales/de.json +77 -17
- package/front_end/third_party/lighthouse/locales/el.json +77 -17
- package/front_end/third_party/lighthouse/locales/en-GB.json +70 -10
- package/front_end/third_party/lighthouse/locales/en-US.json +154 -40
- package/front_end/third_party/lighthouse/locales/en-XL.json +154 -40
- package/front_end/third_party/lighthouse/locales/es-419.json +77 -17
- package/front_end/third_party/lighthouse/locales/es.json +60 -0
- package/front_end/third_party/lighthouse/locales/fi.json +60 -0
- package/front_end/third_party/lighthouse/locales/fil.json +60 -0
- package/front_end/third_party/lighthouse/locales/fr.json +77 -17
- package/front_end/third_party/lighthouse/locales/he.json +77 -17
- package/front_end/third_party/lighthouse/locales/hi.json +77 -17
- package/front_end/third_party/lighthouse/locales/hr.json +60 -0
- package/front_end/third_party/lighthouse/locales/hu.json +77 -17
- package/front_end/third_party/lighthouse/locales/id.json +77 -17
- package/front_end/third_party/lighthouse/locales/it.json +77 -17
- package/front_end/third_party/lighthouse/locales/ja.json +60 -0
- package/front_end/third_party/lighthouse/locales/ko.json +60 -0
- package/front_end/third_party/lighthouse/locales/lt.json +77 -17
- package/front_end/third_party/lighthouse/locales/lv.json +77 -17
- package/front_end/third_party/lighthouse/locales/nl.json +60 -0
- package/front_end/third_party/lighthouse/locales/no.json +77 -17
- package/front_end/third_party/lighthouse/locales/pl.json +60 -0
- package/front_end/third_party/lighthouse/locales/pt-PT.json +60 -0
- package/front_end/third_party/lighthouse/locales/pt.json +77 -17
- package/front_end/third_party/lighthouse/locales/ro.json +77 -17
- package/front_end/third_party/lighthouse/locales/ru.json +60 -0
- package/front_end/third_party/lighthouse/locales/sk.json +60 -0
- package/front_end/third_party/lighthouse/locales/sl.json +77 -17
- package/front_end/third_party/lighthouse/locales/sr-Latn.json +60 -0
- package/front_end/third_party/lighthouse/locales/sr.json +60 -0
- package/front_end/third_party/lighthouse/locales/sv.json +77 -17
- package/front_end/third_party/lighthouse/locales/ta.json +77 -17
- package/front_end/third_party/lighthouse/locales/te.json +72 -12
- package/front_end/third_party/lighthouse/locales/th.json +60 -0
- package/front_end/third_party/lighthouse/locales/tr.json +77 -17
- package/front_end/third_party/lighthouse/locales/uk.json +78 -18
- package/front_end/third_party/lighthouse/locales/vi.json +60 -0
- package/front_end/third_party/lighthouse/locales/zh-HK.json +77 -17
- package/front_end/third_party/lighthouse/locales/zh-TW.json +77 -17
- package/front_end/third_party/lighthouse/locales/zh.json +77 -17
- package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
- package/front_end/third_party/lit/lib/decorators.d.ts +5 -2
- package/front_end/third_party/lit/lib/decorators.js +5 -5
- package/front_end/third_party/lit/lib/decorators.js.map +1 -1
- package/front_end/third_party/lit/lib/directive.d.ts +15 -7
- package/front_end/third_party/lit/lib/directive.js.map +1 -1
- package/front_end/third_party/lit/lib/directives.d.ts +147 -7
- package/front_end/third_party/lit/lib/directives.js +9 -9
- package/front_end/third_party/lit/lib/directives.js.map +1 -1
- package/front_end/third_party/lit/lib/lit.d.ts +126 -13
- package/front_end/third_party/lit/lib/lit.js +5 -5
- package/front_end/third_party/lit/lib/lit.js.map +1 -1
- package/front_end/third_party/lit/lib/static-html.d.ts +202 -0
- package/front_end/third_party/lit/lib/static-html.js +13 -0
- package/front_end/third_party/lit/lib/static-html.js.map +1 -0
- package/front_end/third_party/lit/lit.ts +2 -1
- package/front_end/third_party/lit/package.json +2 -2
- package/front_end/third_party/lit/{rollup.config.js → rollup.config.mjs} +2 -2
- package/front_end/third_party/lit/src/static-html.ts +5 -0
- package/front_end/third_party/puppeteer/README.chromium +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +29 -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 +46 -14
- 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 +14 -0
- 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 +12 -0
- 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/CDPSession.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts +9 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js +6 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.d.ts +5 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js +4 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +35 -19
- 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 +11 -12
- 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.js +17 -7
- 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.js +7 -7
- 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/BrowserConnector.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js +19 -8
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.d.ts +3 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js +35 -9
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/CDPSession.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/CDPSession.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts +4 -4
- 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 +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/ElementHandle.d.ts +2 -0
- 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/ElementHandle.js +15 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts +2 -2
- 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 +21 -11
- 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.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js +18 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts +2 -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/HTTPRequest.js +4 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts +11 -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 +32 -3
- 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.js +2 -2
- 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/core/BrowsingContext.d.ts +2 -0
- 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 +7 -0
- 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/Realm.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.js.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/UserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts +8 -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 +100 -4
- 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/Browser.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.js +5 -12
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js +1 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.d.ts +3 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js +28 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.js +11 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js +12 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +7 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js +11 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/EmulationManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/EmulationManager.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/EmulationManager.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 +2 -3
- 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/Frame.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js +1 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js +1 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts +2 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js +21 -20
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.d.ts +34 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.js +8 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.d.ts +14 -33
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.js +308 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +0 -2
- 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 -2
- 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/common/BrowserConnector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js +17 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +1 -6
- 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 +85 -4
- 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/Debug.js +17 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.d.ts +15 -12
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.js +47 -11
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.js.map +1 -1
- 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 +1 -1
- 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/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.js +17 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts +6 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js +25 -19
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts +5 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js +7 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts +5 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js +8 -21
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts +40 -52
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.d.ts +14 -13
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.js +34 -24
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts +7 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js +17 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
- 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/third_party/parsel-js/parsel-js.js +11 -21
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +308 -172
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +1079 -993
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +29 -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 +46 -14
- 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 +14 -0
- 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 +12 -0
- 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/CDPSession.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts +9 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js +6 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.d.ts +5 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js +4 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +35 -19
- 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 +11 -12
- 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/Browser.js +7 -7
- 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/BrowserConnector.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.js +2 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.d.ts +3 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js +36 -10
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/CDPSession.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/CDPSession.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts +4 -4
- 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 +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/ElementHandle.d.ts +2 -0
- 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/ElementHandle.js +15 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.d.ts +2 -2
- 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 +2 -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.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js +20 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts +2 -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/HTTPRequest.js +4 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts +11 -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 +29 -5
- 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.js +3 -3
- 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/core/BrowsingContext.d.ts +2 -0
- 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 +7 -0
- 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/Realm.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.js.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/UserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts +8 -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 +100 -4
- 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/Browser.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.js +5 -12
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.js +1 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.d.ts +3 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js +28 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.js +11 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.js +12 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +7 -7
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js +11 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/EmulationManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/EmulationManager.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/EmulationManager.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 +2 -3
- 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/Frame.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js +1 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js +1 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts +2 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js +20 -20
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.d.ts +34 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.d.ts +14 -33
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.js +306 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +0 -2
- 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 -2
- 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/common/BrowserConnector.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +1 -6
- 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 +85 -4
- 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/PDFOptions.d.ts +15 -12
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js +47 -11
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.js.map +1 -1
- 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 +1 -1
- 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/node/BrowserLauncher.d.ts +6 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js +8 -12
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts +5 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js +7 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts +5 -5
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js +8 -21
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +40 -52
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.d.ts +14 -13
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.js +34 -24
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts +7 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/third_party/parsel-js/parsel-js.js +11 -21
- package/front_end/third_party/puppeteer/package/lib/types.d.ts +308 -172
- package/front_end/third_party/puppeteer/package/package.json +17 -11
- package/front_end/third_party/puppeteer/package/src/api/Browser.ts +64 -27
- package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +26 -0
- package/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts +12 -6
- package/front_end/third_party/puppeteer/package/src/api/Frame.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/api/Page.ts +35 -21
- package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/bidi/BrowserConnector.ts +4 -6
- package/front_end/third_party/puppeteer/package/src/bidi/BrowserContext.ts +57 -10
- package/front_end/third_party/puppeteer/package/src/bidi/CDPSession.ts +2 -2
- package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +5 -5
- package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +17 -0
- package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +32 -7
- package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +6 -2
- package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +45 -6
- package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +3 -3
- package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +10 -0
- 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/cdp/Accessibility.ts +55 -3
- package/front_end/third_party/puppeteer/package/src/cdp/Browser.ts +8 -21
- package/front_end/third_party/puppeteer/package/src/cdp/BrowserConnector.ts +2 -11
- package/front_end/third_party/puppeteer/package/src/cdp/BrowserContext.ts +33 -0
- package/front_end/third_party/puppeteer/package/src/cdp/CDPSession.ts +14 -6
- package/front_end/third_party/puppeteer/package/src/cdp/Connection.ts +15 -6
- package/front_end/third_party/puppeteer/package/src/cdp/DeviceRequestPrompt.ts +7 -7
- package/front_end/third_party/puppeteer/package/src/cdp/ElementHandle.ts +13 -1
- package/front_end/third_party/puppeteer/package/src/cdp/EmulationManager.ts +1 -0
- package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +2 -3
- package/front_end/third_party/puppeteer/package/src/cdp/Frame.ts +1 -8
- package/front_end/third_party/puppeteer/package/src/cdp/FrameManager.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/HTTPRequest.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/HTTPResponse.ts +1 -3
- package/front_end/third_party/puppeteer/package/src/cdp/IsolatedWorld.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/Page.ts +29 -23
- package/front_end/third_party/puppeteer/package/src/cdp/TargetManageEvents.ts +38 -0
- package/front_end/third_party/puppeteer/package/src/cdp/TargetManager.ts +417 -35
- package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +0 -2
- package/front_end/third_party/puppeteer/package/src/common/BrowserConnector.ts +1 -2
- package/front_end/third_party/puppeteer/package/src/common/CallbackRegistry.ts +8 -0
- package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +1 -6
- package/front_end/third_party/puppeteer/package/src/common/Cookie.ts +87 -4
- package/front_end/third_party/puppeteer/package/src/common/PDFOptions.ts +63 -25
- package/front_end/third_party/puppeteer/package/src/common/WaitTask.ts +2 -6
- package/front_end/third_party/puppeteer/package/src/common/util.ts +3 -1
- package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts +19 -26
- package/front_end/third_party/puppeteer/package/src/node/ChromeLauncher.ts +11 -12
- package/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts +12 -30
- package/front_end/third_party/puppeteer/package/src/node/LaunchOptions.ts +40 -55
- package/front_end/third_party/puppeteer/package/src/node/PuppeteerNode.ts +55 -45
- package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
- package/front_end/third_party/puppeteer/puppeteer-tsconfig.json +1 -2
- package/front_end/third_party/third-party-web/README.chromium +2 -2
- package/front_end/third_party/third-party-web/lib/nostats-subset.js +1 -1
- package/front_end/third_party/third-party-web/package/README.md +586 -573
- package/front_end/third_party/third-party-web/package/dist/entities-httparchive-nostats.json +1 -1
- package/front_end/third_party/third-party-web/package/dist/entities-httparchive.json +1 -1
- package/front_end/third_party/third-party-web/package/dist/entities-nostats.json +1 -1
- package/front_end/third_party/third-party-web/package/dist/entities.json +1 -1
- package/front_end/third_party/third-party-web/package/facades.md +46 -0
- package/front_end/third_party/third-party-web/package/lib/__snapshots__/index.test.js.snap +1 -1
- package/front_end/third_party/third-party-web/package/lib/index.test.js +6 -6
- package/front_end/third_party/third-party-web/package/lib/markdown/faqs.partial.md +36 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/goals.partial.md +9 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/methodology.partial.md +5 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/template.md +151 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-02-01.md +1 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-03-01.md +1 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-05-06.md +1 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-05-13.md +14 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2021-01-01.md +1 -0
- package/front_end/third_party/third-party-web/package/lib/markdown/updates/2024-07-01.md +3 -0
- package/front_end/third_party/third-party-web/package/nostats-subset.d.ts +1 -0
- package/front_end/third_party/third-party-web/package/package.json +5 -4
- package/front_end/third_party/third-party-web/package.json +2 -1
- package/front_end/third_party/third-party-web/rebuild.sh +8 -0
- package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js +9 -5
- package/front_end/ui/components/adorners/Adorner.test.ts +2 -2
- package/front_end/ui/components/adorners/Adorner.ts +15 -17
- package/front_end/ui/components/buttons/Button.test.ts +26 -6
- package/front_end/ui/components/buttons/Button.ts +16 -34
- package/front_end/ui/components/buttons/button.css +13 -23
- package/front_end/ui/components/buttons/buttons.ts +2 -0
- package/front_end/ui/{legacy → components/buttons}/textButton.css +6 -6
- package/front_end/ui/components/cards/Card.test.ts +81 -72
- package/front_end/ui/components/cards/Card.ts +85 -54
- package/front_end/ui/components/cards/card.css +40 -36
- package/front_end/ui/components/chrome_link/ChromeLink.test.ts +8 -10
- package/front_end/ui/components/chrome_link/ChromeLink.ts +4 -6
- package/front_end/ui/components/code_highlighter/code_highlighter.ts +2 -2
- package/front_end/ui/components/dialogs/ButtonDialog.test.ts +4 -6
- package/front_end/ui/components/dialogs/ButtonDialog.ts +9 -5
- package/front_end/ui/components/dialogs/Dialog.test.ts +47 -50
- package/front_end/ui/components/dialogs/Dialog.ts +31 -114
- package/front_end/ui/components/dialogs/ShortcutDialog.test.ts +7 -23
- package/front_end/ui/components/dialogs/ShortcutDialog.ts +18 -95
- package/front_end/ui/components/dialogs/buttonDialog.css +1 -1
- package/front_end/ui/components/dialogs/dialog.css +15 -8
- package/front_end/ui/components/dialogs/dialogs.ts +0 -2
- package/front_end/ui/components/dialogs/shortcutDialog.css +10 -29
- package/front_end/ui/components/diff_view/DiffView.test.ts +1 -1
- package/front_end/ui/components/diff_view/DiffView.ts +20 -14
- package/front_end/ui/components/diff_view/diffView.css +2 -2
- package/front_end/ui/components/docs/{freestyler → ai_assistance}/basic.ts +8 -8
- package/front_end/ui/components/docs/{freestyler → ai_assistance}/empty_state.ts +5 -5
- package/front_end/ui/components/docs/breadcrumbs_perf/initial-breadcrumb-perf.ts +4 -4
- package/front_end/ui/components/docs/breadcrumbs_perf/nested-breadcrumbs-perf.ts +8 -8
- package/front_end/ui/components/docs/building-ui-documentation/StylingComponents.md +5 -1
- package/front_end/ui/components/docs/building-ui-documentation/TestingComponents.md +6 -7
- package/front_end/ui/components/docs/button/basic.html +18 -34
- package/front_end/ui/components/docs/button/basic.ts +135 -371
- package/front_end/ui/components/docs/{data_grid_controller → combo_box}/basic.html +2 -12
- package/front_end/ui/components/docs/combo_box/basic.ts +49 -0
- package/front_end/ui/components/docs/create_breadcrumbs.ts +4 -4
- package/front_end/ui/components/docs/dialog/basic.ts +71 -7
- package/front_end/ui/components/docs/dialog/button_dialog.ts +2 -1
- package/front_end/ui/components/docs/{icon_dialog/basic.html → dialog/shortcut_dialog.html} +2 -2
- package/front_end/ui/components/docs/{shortcut_dialog/basic.ts → dialog/shortcut_dialog.ts} +5 -5
- package/front_end/ui/components/docs/elements_breadcrumbs/helpers.ts +1 -1
- package/front_end/ui/components/docs/expandable_list/basic.ts +2 -2
- package/front_end/ui/components/docs/icon_component/basic.ts +8 -34
- package/front_end/ui/components/docs/linkifier/simple-url.ts +1 -1
- package/front_end/ui/components/docs/menu/basic.ts +0 -1
- package/front_end/ui/components/docs/panel_introduction_steps/basic.ts +3 -3
- package/front_end/ui/components/docs/performance_panel/basic.ts +0 -5
- package/front_end/ui/components/docs/performance_panel/flamechart.ts +8 -8
- package/front_end/ui/components/docs/performance_panel/network_request_details.ts +2 -1
- package/front_end/ui/components/docs/performance_panel/overview.ts +2 -2
- package/front_end/ui/components/docs/performance_panel/timeline_history_manager.ts +0 -3
- package/front_end/ui/components/docs/performance_panel/track_example.ts +4 -4
- package/front_end/ui/components/docs/{data_grid → radio_button}/basic.html +5 -11
- package/front_end/ui/components/docs/radio_button/basic.ts +50 -0
- package/front_end/ui/components/docs/recorder_control_button/basic.ts +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.ts +1 -1
- package/front_end/ui/components/docs/recorder_recording_view/basic.ts +1 -1
- package/front_end/ui/components/docs/recorder_select_button/basic.ts +4 -4
- package/front_end/ui/components/docs/recorder_split_view/basic.ts +1 -1
- package/front_end/ui/components/docs/report/basic.ts +3 -3
- package/front_end/ui/components/docs/select_menu/basic.ts +3 -4
- package/front_end/ui/components/docs/slider/basic.html +20 -0
- package/front_end/ui/components/docs/slider/basic.ts +62 -0
- package/front_end/ui/components/docs/theme_colors/basic.ts +4 -4
- package/front_end/ui/components/docs/tooltip/basic.html +20 -0
- package/front_end/ui/components/docs/tooltip/basic.ts +64 -0
- package/front_end/ui/components/docs/tree_outline/custom-renderers.ts +4 -4
- package/front_end/ui/components/expandable_list/ExpandableList.test.ts +5 -7
- package/front_end/ui/components/expandable_list/ExpandableList.ts +11 -7
- package/front_end/ui/components/floating_button/FloatingButton.ts +8 -4
- package/front_end/ui/components/helpers/directives.ts +7 -7
- package/front_end/ui/components/helpers/helpers.test.ts +7 -11
- package/front_end/ui/components/helpers/scheduled-render.ts +4 -3
- package/front_end/ui/components/highlighting/HighlightManager.test.ts +7 -7
- package/front_end/ui/components/highlighting/HighlightManager.ts +5 -1
- package/front_end/ui/components/icon_button/FileSourceIcon.ts +5 -7
- package/front_end/ui/components/icon_button/Icon.ts +5 -19
- package/front_end/ui/components/icon_button/IconButton.test.ts +8 -8
- package/front_end/ui/components/icon_button/IconButton.ts +9 -12
- package/front_end/ui/components/icon_button/icon.css +1 -1
- package/front_end/ui/components/icon_button/iconButton.css +13 -9
- package/front_end/ui/components/input/input.ts +10 -2
- package/front_end/ui/components/issue_counter/IssueCounter.test.ts +10 -10
- package/front_end/ui/components/issue_counter/IssueCounter.ts +3 -8
- package/front_end/ui/components/issue_counter/IssueLinkIcon.test.ts +5 -10
- package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +11 -9
- package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -1
- package/front_end/ui/components/linkifier/LinkifierImpl.test.ts +14 -14
- package/front_end/ui/components/linkifier/LinkifierImpl.ts +22 -9
- package/front_end/ui/components/linkifier/LinkifierUtils.ts +1 -1
- package/front_end/ui/components/markdown_view/CodeBlock.test.ts +12 -22
- package/front_end/ui/components/markdown_view/CodeBlock.ts +14 -15
- package/front_end/ui/components/markdown_view/MarkdownImage.test.ts +2 -4
- package/front_end/ui/components/markdown_view/MarkdownImage.ts +10 -6
- package/front_end/ui/components/markdown_view/MarkdownLink.test.ts +4 -2
- package/front_end/ui/components/markdown_view/MarkdownLink.ts +6 -4
- package/front_end/ui/components/markdown_view/MarkdownView.test.ts +27 -25
- package/front_end/ui/components/markdown_view/MarkdownView.ts +81 -35
- package/front_end/ui/components/markdown_view/markdownLink.css +0 -4
- package/front_end/ui/components/markdown_view/markdownView.css +15 -4
- package/front_end/ui/components/menus/Menu.ts +41 -30
- package/front_end/ui/components/menus/README.md +10 -2
- package/front_end/ui/components/menus/SelectMenu.test.ts +6 -10
- package/front_end/ui/components/menus/SelectMenu.ts +25 -50
- package/front_end/ui/components/menus/menu.css +1 -1
- package/front_end/ui/components/menus/menuGroup.css +0 -1
- package/front_end/ui/components/menus/menuItem.css +11 -3
- package/front_end/ui/components/menus/selectMenuButton.css +1 -1
- package/front_end/ui/components/node_text/NodeText.ts +9 -5
- package/front_end/ui/components/panel_feedback/FeedbackButton.test.ts +6 -6
- package/front_end/ui/components/panel_feedback/FeedbackButton.ts +3 -7
- package/front_end/ui/components/panel_feedback/PanelFeedback.test.ts +6 -6
- package/front_end/ui/components/panel_feedback/PanelFeedback.ts +6 -4
- package/front_end/ui/components/panel_feedback/PreviewToggle.test.ts +5 -7
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +5 -3
- package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +7 -4
- package/front_end/ui/components/render_coordinator/render_coordinator.test.ts +53 -52
- package/front_end/ui/components/render_coordinator/render_coordinator.ts +301 -2
- package/front_end/ui/components/report_view/ReportView.test.ts +2 -4
- package/front_end/ui/components/report_view/ReportView.ts +37 -20
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.test.ts +6 -11
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +39 -32
- package/front_end/ui/components/request_link_icon/requestLinkIcon.css +3 -0
- package/front_end/ui/components/settings/SettingCheckbox.test.ts +3 -3
- package/front_end/ui/components/settings/SettingCheckbox.ts +14 -9
- package/front_end/ui/components/settings/SettingDeprecationWarning.ts +9 -5
- package/front_end/ui/components/spinners/Spinner.ts +6 -4
- package/front_end/ui/components/spinners/spinner.css +4 -4
- package/front_end/ui/components/split_view/SplitView.test.ts +6 -8
- package/front_end/ui/components/split_view/SplitView.ts +2 -4
- package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +13 -13
- package/front_end/ui/components/srgb_overlay/srgbOverlay.css +2 -2
- package/front_end/ui/components/suggestion_input/SuggestionInput.ts +16 -9
- package/front_end/ui/components/suggestion_input/suggestionInput.css +1 -2
- package/front_end/ui/components/survey_link/SurveyLink.ts +4 -10
- package/front_end/ui/components/switch/SwitchImpl.test.ts +0 -1
- package/front_end/ui/components/switch/SwitchImpl.ts +9 -7
- package/front_end/ui/components/switch/switch.css +18 -0
- package/front_end/ui/components/text_editor/TextEditor.test.ts +11 -9
- package/front_end/ui/components/text_editor/TextEditor.ts +2 -4
- package/front_end/ui/components/text_editor/config.ts +22 -4
- package/front_end/ui/components/text_prompt/TextPrompt.test.ts +3 -3
- package/front_end/ui/components/text_prompt/TextPrompt.ts +4 -9
- package/front_end/ui/components/text_prompt/textPrompt.css +6 -1
- package/front_end/ui/components/tooltip/Tooltip.test.ts +55 -0
- package/front_end/ui/components/tooltip/Tooltip.ts +146 -0
- package/front_end/ui/components/tooltip/tooltip.css +41 -0
- package/front_end/ui/components/tooltip/tooltips.ts +7 -0
- package/front_end/ui/components/tree_outline/TreeOutline.test.ts +48 -52
- package/front_end/ui/components/tree_outline/TreeOutline.ts +18 -19
- package/front_end/ui/components/tree_outline/TreeOutlineUtils.ts +8 -8
- package/front_end/ui/components/tree_outline/treeOutline.css +5 -3
- package/front_end/ui/legacy/ARIAUtils.ts +6 -10
- package/front_end/ui/legacy/ActionRegistration.ts +4 -4
- package/front_end/ui/legacy/Context.ts +3 -3
- package/front_end/ui/legacy/ContextMenu.ts +8 -2
- package/front_end/ui/legacy/Dialog.ts +6 -8
- package/front_end/ui/legacy/DockController.test.ts +2 -2
- package/front_end/ui/legacy/DockController.ts +5 -5
- package/front_end/ui/legacy/DropTarget.ts +2 -3
- package/front_end/ui/legacy/EmptyWidget.ts +16 -12
- package/front_end/ui/legacy/FilterBar.test.ts +3 -3
- package/front_end/ui/legacy/FilterBar.ts +32 -17
- package/front_end/ui/legacy/Geometry.ts +3 -11
- package/front_end/ui/legacy/GlassPane.ts +3 -7
- package/front_end/ui/legacy/Infobar.ts +10 -20
- package/front_end/ui/legacy/InspectorView.ts +15 -11
- package/front_end/ui/legacy/ListModel.ts +3 -3
- package/front_end/ui/legacy/ListWidget.ts +25 -16
- package/front_end/ui/legacy/PopoverHelper.ts +1 -1
- package/front_end/ui/legacy/ProgressIndicator.ts +10 -8
- package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +1 -1
- package/front_end/ui/legacy/ReportView.ts +7 -7
- package/front_end/ui/legacy/ResizerWidget.ts +6 -6
- package/front_end/ui/legacy/RootView.ts +1 -1
- package/front_end/ui/legacy/SearchableView.ts +11 -12
- package/front_end/ui/legacy/SettingsUI.ts +8 -17
- package/front_end/ui/legacy/ShortcutRegistry.test.ts +3 -3
- package/front_end/ui/legacy/SoftContextMenu.ts +1 -1
- package/front_end/ui/legacy/SoftDropDown.ts +2 -3
- package/front_end/ui/legacy/SplitWidget.test.ts +1 -2
- package/front_end/ui/legacy/SplitWidget.ts +12 -7
- package/front_end/ui/legacy/SuggestBox.test.ts +5 -5
- package/front_end/ui/legacy/SuggestBox.ts +2 -3
- package/front_end/ui/legacy/TabbedPane.ts +78 -18
- package/front_end/ui/legacy/TargetCrashedScreen.ts +1 -1
- package/front_end/ui/legacy/TextPrompt.ts +5 -5
- package/front_end/ui/legacy/ThrottledWidget.ts +7 -2
- package/front_end/ui/legacy/Toolbar.test.ts +102 -22
- package/front_end/ui/legacy/Toolbar.ts +147 -181
- package/front_end/ui/legacy/Treeoutline.ts +13 -16
- package/front_end/ui/legacy/UIUtils.test.ts +13 -17
- package/front_end/ui/legacy/UIUtils.ts +183 -165
- package/front_end/ui/legacy/ViewManager.ts +14 -11
- package/front_end/ui/legacy/ViewRegistration.test.ts +1 -1
- package/front_end/ui/legacy/Widget.test.ts +121 -4
- package/front_end/ui/legacy/Widget.ts +155 -55
- package/front_end/ui/legacy/XLink.test.ts +4 -6
- package/front_end/ui/legacy/XLink.ts +1 -3
- package/front_end/ui/legacy/ZoomManager.ts +3 -3
- package/front_end/ui/legacy/components/color_picker/ColorFormatSpec.ts +5 -5
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +11 -9
- package/front_end/ui/legacy/components/color_picker/ContrastInfo.ts +3 -3
- package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +5 -5
- package/front_end/ui/legacy/components/color_picker/Spectrum.test.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +24 -20
- package/front_end/ui/legacy/components/color_picker/spectrum.css +5 -4
- package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +2 -5
- package/front_end/ui/legacy/components/data_grid/DataGrid.test.ts +2 -3
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +96 -46
- package/front_end/ui/legacy/components/data_grid/DataGridElement.test.ts +269 -0
- package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +470 -0
- package/front_end/ui/legacy/components/data_grid/SortableDataGrid.ts +6 -0
- package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +112 -19
- package/front_end/ui/legacy/components/data_grid/dataGrid.css +14 -19
- package/front_end/ui/legacy/components/data_grid/data_grid.ts +2 -2
- package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +15 -15
- package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +4 -4
- package/front_end/ui/legacy/components/inline_editor/CSSAngle.test.ts +3 -3
- package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +10 -5
- package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +10 -6
- package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +8 -4
- package/front_end/ui/legacy/components/inline_editor/CSSLinearEasingModel.ts +9 -9
- package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +7 -6
- package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.test.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +7 -5
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.test.ts +5 -5
- package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +10 -6
- package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +30 -32
- package/front_end/ui/legacy/components/inline_editor/FontEditorUtils.ts +0 -13
- package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +11 -7
- package/front_end/ui/legacy/components/inline_editor/SwatchPopoverHelper.ts +4 -4
- package/front_end/ui/legacy/components/inline_editor/Swatches.ts +28 -30
- package/front_end/ui/legacy/components/inline_editor/bezierSwatch.css +4 -4
- package/front_end/ui/legacy/components/inline_editor/cssAngleEditor.css +1 -4
- package/front_end/ui/legacy/components/inline_editor/cssAngleSwatch.css +1 -4
- package/front_end/ui/legacy/components/inline_editor/fontEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/inline_editor.ts +0 -2
- package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +1 -4
- package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +3 -3
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +4 -7
- package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +3 -4
- package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +10 -10
- package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +86 -77
- package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +27 -10
- package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +20 -18
- package/front_end/ui/legacy/components/perf_ui/FlameChart.test.ts +2 -2
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +276 -201
- package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +3 -3
- package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +10 -16
- package/front_end/ui/legacy/components/perf_ui/PieChart.test.ts +6 -6
- package/front_end/ui/legacy/components/perf_ui/PieChart.ts +6 -4
- package/front_end/ui/legacy/components/perf_ui/TimelineGrid.test.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +1 -14
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.test.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +17 -17
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +54 -41
- package/front_end/ui/legacy/components/perf_ui/filmStripView.css +1 -2
- package/front_end/ui/legacy/components/perf_ui/flameChart.css +1 -12
- package/front_end/ui/legacy/components/perf_ui/overviewGrid.css +2 -5
- package/front_end/ui/legacy/components/perf_ui/perf_ui-meta.ts +13 -11
- package/front_end/ui/legacy/components/perf_ui/pieChart.css +1 -1
- package/front_end/ui/legacy/components/perf_ui/timelineGrid.css +1 -4
- package/front_end/ui/legacy/components/quick_open/CommandMenu.test.ts +3 -3
- package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +33 -30
- package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +12 -8
- package/front_end/ui/legacy/components/quick_open/HelpQuickOpen.ts +8 -12
- package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +40 -56
- package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +8 -7
- package/front_end/ui/legacy/components/source_frame/FontView.ts +2 -2
- package/front_end/ui/legacy/components/source_frame/ImageView.ts +2 -2
- package/front_end/ui/legacy/components/source_frame/JSONView.ts +2 -2
- package/front_end/ui/legacy/components/source_frame/PreviewFactory.ts +7 -3
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.test.ts +4 -2
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +7 -5
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +7 -9
- package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +1 -1
- package/front_end/ui/legacy/components/source_frame/XMLView.ts +3 -3
- package/front_end/ui/legacy/components/source_frame/resourceSourceFrame.css +1 -1
- package/front_end/ui/legacy/components/utils/ImagePreview.ts +26 -26
- package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +3 -4
- package/front_end/ui/legacy/components/utils/Linkifier.test.ts +11 -7
- package/front_end/ui/legacy/components/utils/Linkifier.ts +6 -7
- package/front_end/ui/legacy/components/utils/TargetDetachedDialog.ts +3 -12
- package/front_end/ui/legacy/dialog.css +2 -1
- package/front_end/ui/legacy/dropTarget.css +1 -4
- package/front_end/ui/legacy/emptyWidget.css +0 -21
- package/front_end/ui/legacy/filter.css +3 -1
- package/front_end/ui/legacy/glassPane.css +2 -4
- package/front_end/ui/legacy/infobar.css +14 -2
- package/front_end/ui/legacy/inspectorCommon.css +721 -164
- package/front_end/ui/legacy/inspectorViewTabbedPane.css +1 -20
- package/front_end/ui/legacy/legacy.ts +0 -2
- package/front_end/ui/legacy/reportView.css +8 -2
- package/front_end/ui/legacy/rootView.css +1 -4
- package/front_end/ui/legacy/searchableView.css +1 -1
- package/front_end/ui/legacy/softContextMenu.css +1 -1
- package/front_end/ui/legacy/softDropDown.css +1 -2
- package/front_end/ui/legacy/tabbedPane.css +127 -38
- package/front_end/ui/legacy/textPrompt.css +1 -0
- package/front_end/ui/legacy/theme_support/ThemeSupport.ts +0 -5
- package/front_end/ui/legacy/toolbar.css +11 -567
- package/front_end/ui/legacy/treeoutline.css +7 -7
- package/front_end/ui/legacy/viewContainers.css +3 -3
- package/front_end/ui/lit/i18n-template.test.ts +51 -0
- package/front_end/ui/lit/i18n-template.ts +32 -0
- package/front_end/ui/{lit-html/lit-html.ts → lit/lit.ts} +13 -14
- package/front_end/ui/visual_logging/Debugging.test.ts +0 -9
- package/front_end/ui/visual_logging/Debugging.ts +88 -30
- package/front_end/ui/visual_logging/DomState.test.ts +6 -6
- package/front_end/ui/visual_logging/KnownContextValues.ts +263 -12
- package/front_end/ui/visual_logging/LoggingDriver.test.ts +6 -7
- package/front_end/ui/visual_logging/LoggingDriver.ts +3 -4
- package/front_end/ui/visual_logging/LoggingEvents.test.ts +16 -16
- package/front_end/ui/visual_logging/LoggingEvents.ts +1 -1
- package/front_end/ui/visual_logging/visual_logging.ts +13 -2
- package/inspector_overlay/common.css +1 -4
- package/inspector_overlay/common.ts +0 -1
- package/inspector_overlay/css_grid_label_helpers.test.ts +14 -15
- package/inspector_overlay/css_grid_label_helpers.ts +2 -2
- package/inspector_overlay/drag_resize_handler.ts +4 -4
- package/inspector_overlay/highlight_common.test.ts +6 -6
- package/inspector_overlay/highlight_common.ts +0 -1
- package/inspector_overlay/highlight_flex_common.test.ts +45 -45
- package/inspector_overlay/main.ts +12 -13
- package/inspector_overlay/resources.grd +1 -1
- package/inspector_overlay/testing/InspectorOverlayHelpers.ts +3 -3
- package/inspector_overlay/tool_highlight.css +3 -3
- package/inspector_overlay/tool_highlight.test.ts +3 -3
- package/inspector_overlay/tool_highlight.ts +0 -1
- package/inspector_overlay/tool_persistent.ts +7 -13
- package/inspector_overlay/tool_screenshot.ts +6 -6
- package/inspector_overlay/tool_source_order.ts +1 -2
- package/inspector_overlay/tool_window_controls.test.ts +2 -2
- package/package.json +30 -32
- package/scripts/add_icon_paths.py +71 -0
- package/scripts/ai_assistance/README.md +46 -0
- package/scripts/ai_assistance/auto-run-helpers.js +82 -0
- package/scripts/ai_assistance/auto-run.js +694 -0
- package/scripts/ai_assistance/auto-run.test.js +88 -0
- package/scripts/{freestyler → ai_assistance}/eval/index.js +1 -1
- package/scripts/{freestyler → ai_assistance}/to_tsv.mjs +2 -3
- package/scripts/ai_assistance/tsconfig.json +15 -0
- package/scripts/ai_assistance/types.d.ts +55 -0
- package/scripts/build/compress_files.js +2 -2
- package/scripts/build/cross_reference_ninja_and_tsc.js +27 -16
- package/scripts/build/devtools_plugin.js +2 -2
- package/scripts/build/esbuild.js +2 -1
- package/scripts/build/generate_css_js_files.js +13 -57
- package/scripts/build/generate_deprecations.py +0 -2
- package/scripts/build/generate_devtools_grd.py +1 -2
- package/scripts/build/generate_html_entrypoint.js +1 -0
- package/scripts/build/generate_supported_css.py +1 -1
- package/scripts/build/ninja/copy-file.js +6 -4
- package/scripts/build/ninja/copy-files.js +1 -0
- package/scripts/build/ninja/generate-declaration.js +1 -0
- package/scripts/build/ninja/generate-tsconfig.js +0 -1
- package/scripts/build/ninja/generate_css.gni +1 -16
- package/scripts/build/ninja/minify-json-files.js +1 -0
- package/scripts/build/rollup.config.mjs +1 -1
- package/scripts/build/tests/generate_css_js_files_test.js +5 -56
- package/scripts/build/typescript/ts_library.py +27 -1
- package/scripts/build/typescript/typescript.gni +4 -1
- package/scripts/check_esbuild_versions.js +1 -1
- package/scripts/check_experiments.js +87 -25
- package/scripts/component_server/server.js +146 -55
- package/scripts/devtools_paths.js +31 -15
- package/scripts/eslint_rules/README.md +10 -2
- package/scripts/eslint_rules/lib/{canvas_context_tracking.js → canvas-context-tracking.js} +3 -0
- package/scripts/eslint_rules/lib/{check_css_import.js → check-css-import.js} +7 -3
- package/scripts/eslint_rules/lib/{check_enumerated_histograms.js → check-enumerated-histograms.js} +3 -0
- package/scripts/eslint_rules/lib/{check_license_header.js → check-license-header.js} +7 -2
- package/scripts/eslint_rules/lib/{check_test_definitions.js → check-test-definitions.js} +5 -1
- package/scripts/eslint_rules/lib/{check_was_shown_methods.js → check-was-shown-methods.js} +3 -0
- package/scripts/eslint_rules/lib/{enforce_bound_render_for_schedule_render.js → enforce-bound-render-for-schedule-render.js} +3 -0
- package/scripts/eslint_rules/lib/{enforce_custom_event_names.js → enforce-custom-event-names.js} +3 -0
- package/scripts/eslint_rules/lib/{enforce_default_import_name.js → enforce-default-import-name.js} +5 -1
- package/scripts/eslint_rules/lib/enforce-optional-properties-last.js +4 -1
- package/scripts/eslint_rules/lib/{es_modules_import.js → es-modules-import.js} +26 -1
- package/scripts/eslint_rules/lib/{html_tagged_template.js → html-tagged-template.js} +8 -4
- package/scripts/eslint_rules/lib/{inject_checkbox_styles.js → inject-checkbox-styles.js} +7 -2
- package/scripts/eslint_rules/lib/{inline_type_imports.js → inline-type-imports.js} +3 -0
- package/scripts/eslint_rules/lib/{jslog_context_list.js → jslog-context-list.js} +4 -1
- package/scripts/eslint_rules/lib/{l10n_filename_matches.js → l10n-filename-matches.js} +42 -23
- package/scripts/eslint_rules/lib/{l10n_helper.js → l10n-helper.js} +5 -3
- package/scripts/eslint_rules/lib/{l10n_i18nString_call_only_with_uistrings.js → l10n-i18nString-call-only-with-uistrings.js} +3 -0
- package/scripts/eslint_rules/lib/{l10n_no_i18nString_calls_module_instantiation.js → l10n-no-i18nString-calls-module-instantiation.js} +5 -1
- package/scripts/eslint_rules/lib/{l10n_no_locked_or_placeholder_only_phrase.js → l10n-no-locked-or-placeholder-only-phrase.js} +4 -1
- package/scripts/eslint_rules/lib/{l10n_no_uistrings_export.js → l10n-no-uistrings-export.js} +15 -6
- package/scripts/eslint_rules/lib/{l10n_no_unused_message.js → l10n-no-unused-message.js} +13 -3
- package/scripts/eslint_rules/lib/{lit_html_no_attribute_quotes.js → lit-no-attribute-quotes.js} +4 -1
- package/scripts/eslint_rules/lib/{lit_template_result_or_nothing.js → lit-template-result-or-nothing.js} +44 -26
- package/scripts/eslint_rules/lib/{ban_a_tags_in_lit_html.js → no-a-tags-in-lit.js} +3 -1
- package/scripts/eslint_rules/lib/no-assert-deep-strict-equal.js +61 -0
- package/scripts/eslint_rules/lib/no-assert-equal-boolean-null-undefined.js +125 -0
- package/scripts/eslint_rules/lib/{avoid_assert_equal.js → no-assert-equal.js} +3 -0
- package/scripts/eslint_rules/lib/no-assert-strict-equal-for-arrays-and-objects.js +78 -0
- package/scripts/eslint_rules/lib/{no_bound_component_methods.js → no-bound-component-methods.js} +4 -1
- package/scripts/eslint_rules/lib/{commented_out_console.js → no-commented-out-console.js} +4 -1
- package/scripts/eslint_rules/lib/{commented_out_import.js → no-commented-out-import.js} +4 -1
- package/scripts/eslint_rules/lib/no-customized-builtin-elements.js +123 -0
- package/scripts/eslint_rules/lib/{no_importing_images_from_src.js → no-importing-images-from-src.js} +3 -0
- package/scripts/eslint_rules/lib/{ban_imports_in_directory.js → no-imports-in-directory.js} +5 -2
- package/scripts/eslint_rules/lib/{no_it_screenshot_only_or_repeat.js → no-it-screenshot-only-or-repeat.js} +3 -0
- package/scripts/eslint_rules/lib/{ban_new_lit_element_components.js → no-new-lit-element-components.js} +4 -3
- package/scripts/eslint_rules/lib/{no_only_eslint_tests.js → no-only-eslint-tests.js} +4 -1
- package/scripts/eslint_rules/lib/{ban_screenshot_test_outside_perf_panel.js → no-screenshot-test-outside-perf-panel.js} +8 -3
- package/scripts/eslint_rules/lib/{ban_self_closing_custom_element_tagnames.js → no-self-closing-custom-element-tagnames.js} +3 -0
- package/scripts/eslint_rules/lib/{no_underscored_properties.js → no-underscored-properties.js} +3 -0
- package/scripts/eslint_rules/lib/prefer-assert-instance-of.js +89 -0
- package/scripts/eslint_rules/lib/prefer-assert-is-ok.js +71 -0
- package/scripts/eslint_rules/lib/prefer-assert-length-of.js +79 -0
- package/scripts/eslint_rules/lib/{use_private_class_members.js → prefer-private-class-members.js} +16 -8
- package/scripts/eslint_rules/lib/prefer-readonly-keyword.js +57 -0
- package/scripts/eslint_rules/lib/prefer-url-string.js +95 -0
- package/scripts/eslint_rules/lib/{screenshot_assertion_in_it_screenshot.js → screenshot-assertion-in-it-screenshot.js} +3 -0
- package/scripts/eslint_rules/lib/{set_data_type_reference.js → set-data-type-reference.js} +3 -0
- package/scripts/eslint_rules/lib/{single_screenshot_assertion_per_test.js → single-screenshot-assertion-per-test.js} +3 -0
- package/scripts/eslint_rules/lib/{static_custom_event_names.js → static-custom-event-names.js} +3 -0
- package/scripts/eslint_rules/lib/{trace_engine_test_timeouts.js → trace-engine-test-timeouts.js} +3 -0
- package/scripts/eslint_rules/lib/utils.js +8 -8
- package/scripts/eslint_rules/tests/{canvas_context_tracking_test.js → canvas-context-tracking.test.js} +10 -8
- package/scripts/eslint_rules/tests/{check_css_import_test.js → check-css-import.test.js} +14 -23
- package/scripts/eslint_rules/tests/check-enumerated-histograms.test.js +34 -0
- package/scripts/eslint_rules/tests/{check_license_header_test.js → check-license-header.test.js} +11 -13
- package/scripts/eslint_rules/tests/{check_test_definitions_test.js → check-test-definitions.test.js} +13 -8
- package/scripts/eslint_rules/tests/{check_was_shown_methods_test.js → check-was-shown-methods.test.js} +11 -13
- package/scripts/eslint_rules/tests/{enforce_bound_render_for_schedule_render_test.js → enforce-bound-render-for-schedule-render.test.js} +10 -8
- package/scripts/eslint_rules/tests/{enforce_custom_event_names_test.js → enforce-custom-event-names.test.js} +11 -13
- package/scripts/eslint_rules/tests/{enforce_default_import_name_test.js → enforce-default-import-name.test.js} +24 -8
- package/scripts/eslint_rules/tests/{enforce-optional-properties-last_test.js → enforce-optional-properties-last.test.js} +3 -7
- package/scripts/eslint_rules/tests/{es_modules_import_test.js → es-modules-import.test.js} +109 -66
- package/scripts/eslint_rules/tests/{html_tagged_template_test.js → html-tagged-template.test.js} +27 -28
- package/scripts/eslint_rules/tests/{inject_checkbox_styles_test.js → inject-checkbox-styles.test.js} +26 -22
- package/scripts/eslint_rules/tests/{inline_type_imports_test.js → inline-type-imports.test.js} +4 -7
- package/scripts/eslint_rules/tests/{jslog_context_list_test.js → jslog-context-list.test.js} +47 -36
- package/scripts/eslint_rules/tests/l10n-filename-matches.test.js +138 -0
- package/scripts/eslint_rules/tests/{l10n_i18nString_call_only_with_uistrings_test.js → l10n-i18nString-call-only-with-uistrings.test.js} +7 -8
- package/scripts/eslint_rules/tests/{l10n_no_i18nString_calls_module_instantiation_test.js → l10n-no-i18nString-calls-module-instantiation.test.js} +11 -9
- package/scripts/eslint_rules/tests/{l10n_no_locked_or_placeholder_only_phrase_test.js → l10n-no-locked-or-placeholder-only-phrase.test.js} +13 -8
- package/scripts/eslint_rules/tests/{l10n_no_uistrings_export_test.js → l10n-no-uistrings-export.test.js} +14 -9
- package/scripts/eslint_rules/tests/{l10n_no_unused_message_test.js → l10n-no-unused-message.test.js} +8 -8
- package/scripts/eslint_rules/tests/{lit_html_no_attribute_quotes_test.js → lit-no-attribute-quotes.test.js} +11 -12
- package/scripts/eslint_rules/tests/{lit_template_result_or_nothing_test.js → lit-template-result-or-nothing.test.js} +33 -36
- package/scripts/eslint_rules/tests/no-a-tags-in-lit.test.js +69 -0
- package/scripts/eslint_rules/tests/no-assert-deep-strict-equal.test.js +52 -0
- package/scripts/eslint_rules/tests/no-assert-equal-boolean-null-undefined.test.js +208 -0
- package/scripts/eslint_rules/tests/{avoid_assert_equal_test.js → no-assert-equal.test.js} +4 -5
- package/scripts/eslint_rules/tests/no-assert-strict-equal-for-arrays-and-objects.test.js +88 -0
- package/scripts/eslint_rules/tests/{no_bound_component_methods_test.js → no-bound-component-methods.test.js} +25 -13
- package/scripts/eslint_rules/tests/{commented_out_console_test.js → no-commented-out-console.test.js} +4 -7
- package/scripts/eslint_rules/tests/{commented_out_import_test.js → no-commented-out-import.test.js} +4 -7
- package/scripts/eslint_rules/tests/no-customized-builtin-elements.test.js +151 -0
- package/scripts/eslint_rules/tests/{no_importing_images_from_src_test.js → no-importing-images-from-src.test.js} +13 -12
- package/scripts/eslint_rules/tests/no-imports-in-directory.test.js +121 -0
- package/scripts/eslint_rules/tests/{no_it_screenshot_only_or_repeat_test.js → no-it-screenshot-only-or-repeat.test.js} +4 -7
- package/scripts/eslint_rules/tests/{ban_new_lit_element_components_test.js → no-new-lit-element-components.test.js} +4 -7
- package/scripts/eslint_rules/tests/{no_only_eslint_tests_test.js → no-only-eslint-tests.test.js} +20 -15
- package/scripts/eslint_rules/tests/{ban_screenshot_test_outside_perf_panel_test.js → no-screenshot-test-outside-perf-panel.test.js} +5 -6
- package/scripts/eslint_rules/tests/no-self-closing-custom-element-tagnames.test.js +61 -0
- package/scripts/eslint_rules/tests/{no_underscored_properties_test.js → no-underscored-properties.test.js} +20 -13
- package/scripts/eslint_rules/tests/prefer-assert-instance-of.test.js +196 -0
- package/scripts/eslint_rules/tests/prefer-assert-is-ok.test.js +80 -0
- package/scripts/eslint_rules/tests/prefer-assert-length-of.test.js +144 -0
- package/scripts/eslint_rules/tests/{use_private_class_members_test.js → prefer-private-class-members.test.js} +4 -7
- package/scripts/eslint_rules/tests/prefer-readonly-keyword.test.js +67 -0
- package/scripts/eslint_rules/tests/prefer-url-string.test.js +87 -0
- package/scripts/eslint_rules/tests/{screenshot_assertion_in_it_screenshot_test.js → screenshot-assertion-in-it-screenshot.test.js} +4 -7
- package/scripts/eslint_rules/tests/{set_data_type_reference_test.js → set-data-type-reference.test.js} +19 -11
- package/scripts/eslint_rules/tests/{single_screenshot_assertion_per_test_test.js → single-screenshot-assertion-per-test.test.js} +4 -7
- package/scripts/eslint_rules/tests/{static_custom_event_names_test.js → static-custom-event-names.test.js} +14 -14
- package/scripts/eslint_rules/tests/{trace_engine_test_timeouts_test.js → trace-engine-test-timeouts.test.js} +5 -7
- package/scripts/eslint_rules/tests/utils/utils.js +18 -0
- package/scripts/eslint_rules/tests/{utils_test.js → utils.test.js} +9 -9
- package/scripts/generate_metric_compare_strings.js +1 -1
- package/scripts/javascript_natives/index.js +14 -6
- package/scripts/migration/web-tests-esm/rename-legacy-global.mjs +4 -4
- package/scripts/npm_test.js +1 -0
- package/scripts/reformat-clang-js-ts.js +1 -2
- package/scripts/run_on_target.mjs +1 -1
- package/scripts/search-trace-files.js +1 -1
- package/scripts/stylelint_rules/lib/{use_theme_colors.js → use_theme_colors.mjs} +131 -49
- package/scripts/stylelint_rules/tests/{use_theme_colors_test.js → use_theme_colors.test.js} +116 -44
- package/scripts/utils.js +23 -14
- package/scripts/watch_build.js +19 -76
- package/tsconfig.json +2 -1
- package/.eslintignore +0 -41
- package/.eslintrc.js +0 -315
- package/front_end/.eslintrc.js +0 -96
- package/front_end/Images/whatsnew.avif +0 -0
- package/front_end/core/sdk/CPUProfileDataModel.ts +0 -17
- package/front_end/core/sdk/ProfileTreeModel.ts +0 -17
- package/front_end/legacy_test_runner/.eslintrc.js +0 -13
- package/front_end/models/trace/extras/URLForEntry.ts +0 -56
- package/front_end/models/trace/handlers/.eslintrc.js +0 -18
- package/front_end/models/trace/lantern/.eslintrc.js +0 -16
- package/front_end/panels/application/reportingApiReportsView.css +0 -18
- package/front_end/panels/elements/components/AdornerSettingsPane.ts +0 -132
- package/front_end/panels/elements/components/adornerSettingsPane.css +0 -40
- package/front_end/panels/emulation/deviceModeToolbar.css +0 -14
- package/front_end/panels/freestyler/AiAgent.test.ts +0 -554
- package/front_end/panels/freestyler/AiAgent.ts +0 -639
- package/front_end/panels/freestyler/AiHistoryStorage.ts +0 -73
- package/front_end/panels/freestyler/ChangeManager.test.ts +0 -132
- package/front_end/panels/freestyler/DrJonesNetworkAgent.test.ts +0 -381
- package/front_end/panels/freestyler/DrJonesNetworkAgent.ts +0 -450
- package/front_end/panels/freestyler/components/FreestylerChatUi.ts +0 -1366
- package/front_end/panels/freestyler/components/UserActionRow.test.ts +0 -60
- package/front_end/panels/freestyler/components/UserActionRow.ts +0 -383
- package/front_end/panels/freestyler/components/userActionRow.css +0 -123
- package/front_end/panels/freestyler/freestyler.ts +0 -16
- package/front_end/panels/protocol_monitor/components/Toolbar.ts +0 -91
- package/front_end/panels/protocol_monitor/components/components.ts +0 -11
- package/front_end/panels/protocol_monitor/components/toolbar.css +0 -31
- package/front_end/panels/recorder/components/StartView.ts +0 -133
- package/front_end/panels/recorder/injected/.eslintrc.js +0 -14
- package/front_end/panels/timeline/ExtensionDataGatherer.ts +0 -65
- package/front_end/panels/timeline/TimelineLandingPage.ts +0 -108
- package/front_end/panels/timeline/fixtures/traces/nested-initiators.json.gz +0 -0
- package/front_end/panels/timeline/fixtures/traces/set-timeout-long-task.json.gz +0 -0
- package/front_end/panels/timeline/historyToolbarButton.css +0 -81
- package/front_end/panels/timeline/utils/NetworkRequest.ts +0 -40
- package/front_end/panels/whats_new/resources/whatsnew.avif +0 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts +0 -26
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js +0 -311
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.d.ts +0 -36
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.js +0 -154
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.js.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts +0 -26
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js +0 -307
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.d.ts +0 -36
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.d.ts.map +0 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.js +0 -150
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.js.map +0 -1
- package/front_end/third_party/puppeteer/package/src/cdp/ChromeTargetManager.ts +0 -438
- package/front_end/third_party/puppeteer/package/src/cdp/FirefoxTargetManager.ts +0 -214
- package/front_end/third_party/third-party-web/package/.prettierrc +0 -10
- package/front_end/ui/components/data_grid/DataGrid.test.ts +0 -1058
- package/front_end/ui/components/data_grid/DataGrid.ts +0 -968
- package/front_end/ui/components/data_grid/DataGridContextMenuUtils.ts +0 -67
- package/front_end/ui/components/data_grid/DataGridController.test.ts +0 -433
- package/front_end/ui/components/data_grid/DataGridController.ts +0 -302
- package/front_end/ui/components/data_grid/DataGridControllerIntegrator.ts +0 -49
- package/front_end/ui/components/data_grid/DataGridEvents.ts +0 -121
- package/front_end/ui/components/data_grid/DataGridRenderers.ts +0 -27
- package/front_end/ui/components/data_grid/DataGridUtils.ts +0 -259
- package/front_end/ui/components/data_grid/README.md +0 -118
- package/front_end/ui/components/data_grid/dataGrid.css +0 -188
- package/front_end/ui/components/data_grid/dataGridController.css +0 -11
- package/front_end/ui/components/data_grid/data_grid.ts +0 -18
- package/front_end/ui/components/dialogs/IconDialog.ts +0 -160
- package/front_end/ui/components/dialogs/iconDialog.css +0 -24
- package/front_end/ui/components/docs/.eslintrc.js +0 -19
- package/front_end/ui/components/docs/data_grid/adding-data.html +0 -35
- package/front_end/ui/components/docs/data_grid/adding-data.ts +0 -61
- package/front_end/ui/components/docs/data_grid/basic.ts +0 -27
- package/front_end/ui/components/docs/data_grid/empty.html +0 -31
- package/front_end/ui/components/docs/data_grid/empty.ts +0 -21
- package/front_end/ui/components/docs/data_grid/hide-cols.html +0 -35
- package/front_end/ui/components/docs/data_grid/hide-cols.ts +0 -59
- package/front_end/ui/components/docs/data_grid/large-data.html +0 -30
- package/front_end/ui/components/docs/data_grid/large-data.ts +0 -43
- package/front_end/ui/components/docs/data_grid/sticky-headers.html +0 -30
- package/front_end/ui/components/docs/data_grid/sticky-headers.ts +0 -44
- package/front_end/ui/components/docs/data_grid/three_columns.html +0 -29
- package/front_end/ui/components/docs/data_grid/three_columns.ts +0 -44
- package/front_end/ui/components/docs/data_grid_controller/basic.ts +0 -45
- package/front_end/ui/components/docs/data_grid_controller/custom-context-menu-items.html +0 -28
- package/front_end/ui/components/docs/data_grid_controller/custom-context-menu-items.ts +0 -34
- package/front_end/ui/components/docs/data_grid_controller/filter.html +0 -40
- package/front_end/ui/components/docs/data_grid_controller/filter.ts +0 -298
- package/front_end/ui/components/docs/icon_dialog/basic.ts +0 -46
- package/front_end/ui/components/docs/recorder_start_view/basic.html +0 -20
- package/front_end/ui/components/docs/recorder_start_view/basic.ts +0 -13
- package/front_end/ui/components/docs/shortcut_dialog/basic.html +0 -28
- package/front_end/ui/components/render_coordinator/RenderCoordinator.ts +0 -331
- package/front_end/ui/legacy/HistoryInput.ts +0 -61
- package/front_end/ui/legacy/applicationColorTokens.css +0 -61
- package/front_end/ui/legacy/components/data_grid/DataGridWithPreview.ts +0 -297
- package/front_end/ui/legacy/components/inline_editor/CSSLength.test.ts +0 -75
- package/front_end/ui/legacy/components/inline_editor/CSSLength.ts +0 -156
- package/front_end/ui/legacy/components/inline_editor/cssLength.css +0 -27
- package/front_end/ui/legacy/components/perf_ui/.eslintrc.js +0 -18
- package/front_end/ui/legacy/designTokens.css +0 -115
- package/front_end/ui/legacy/inspectorSyntaxHighlight.css +0 -131
- package/front_end/ui/legacy/radioButton.css +0 -32
- package/front_end/ui/legacy/slider.css +0 -51
- package/front_end/ui/legacy/themeColors.css +0 -774
- package/front_end/ui/legacy/tokens.css +0 -202
- package/front_end/ui/lit-html/static.test.ts +0 -153
- package/front_end/ui/lit-html/static.ts +0 -127
- package/scripts/.eslintrc.js +0 -9
- package/scripts/check_enumerated_histograms.js +0 -101
- package/scripts/eslint_rules/lib/ban_style_tags_in_lit_html.js +0 -40
- package/scripts/eslint_rules/lib/compare_arrays_with_assert_deepequal.js +0 -60
- package/scripts/eslint_rules/lib/lit_html_host_this.js +0 -86
- package/scripts/eslint_rules/lib/lit_no_style_interpolation.js +0 -80
- package/scripts/eslint_rules/lib/migrate_create_shadow_root_with_styles.js +0 -110
- package/scripts/eslint_rules/lib/migrate_register_required_css.js +0 -240
- package/scripts/eslint_rules/lib/no_repeated_tests.js +0 -30
- package/scripts/eslint_rules/lib/prefer_readonly_keyword.js +0 -27
- package/scripts/eslint_rules/lib/static_tag_must_be_static_property.js +0 -71
- package/scripts/eslint_rules/tests/.eslintrc.js +0 -18
- package/scripts/eslint_rules/tests/ban_a_tags_in_lit_html_test.js +0 -64
- package/scripts/eslint_rules/tests/ban_imports_in_directory_test.js +0 -59
- package/scripts/eslint_rules/tests/ban_self_closing_custom_element_tagnames_test.js +0 -64
- package/scripts/eslint_rules/tests/ban_style_tags_in_lit_html_test.js +0 -61
- package/scripts/eslint_rules/tests/check_enumerated_histograms_test.js +0 -32
- package/scripts/eslint_rules/tests/compare_arrays_with_assert_deepequal_test.js +0 -110
- package/scripts/eslint_rules/tests/l10n_filename_matches_test.js +0 -64
- package/scripts/eslint_rules/tests/lit_html_host_this_test.js +0 -48
- package/scripts/eslint_rules/tests/lit_no_style_interpolation_test.js +0 -60
- package/scripts/eslint_rules/tests/migrate_create_shadow_root_with_styles_test.js +0 -265
- package/scripts/eslint_rules/tests/migrate_register_required_css_test.js +0 -473
- package/scripts/eslint_rules/tests/no_repeated_tests_test.js +0 -49
- package/scripts/eslint_rules/tests/prefer_readonly_keyword_test.js +0 -54
- package/scripts/eslint_rules/tests/static_tag_must_be_static_property_test.js +0 -93
- package/scripts/freestyler/README.md +0 -45
- package/scripts/freestyler/auto_freestyler.js +0 -429
- /package/front_end/ui/components/docs/{freestyler → ai_assistance}/basic.html +0 -0
- /package/front_end/ui/components/docs/{freestyler → ai_assistance}/empty_state.html +0 -0
- /package/front_end/ui/{lit-html → lit}/visibility.gni +0 -0
- /package/scripts/{freestyler → ai_assistance}/eval/index.html +0 -0
@@ -796,7 +796,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
796
796
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
797
797
|
* can be passed as-is and a
|
798
798
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
799
|
-
* allows
|
799
|
+
* allows querying by
|
800
800
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
801
801
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
802
802
|
* and
|
@@ -817,7 +817,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
817
817
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
818
818
|
* can be passed as-is and a
|
819
819
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
820
|
-
* allows
|
820
|
+
* allows querying by
|
821
821
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
822
822
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
823
823
|
* and
|
@@ -844,7 +844,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
844
844
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
845
845
|
* can be passed as-is and a
|
846
846
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
847
|
-
* allows
|
847
|
+
* allows querying by
|
848
848
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
849
849
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
850
850
|
* and
|
@@ -869,7 +869,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
869
869
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
870
870
|
* can be passed as-is and a
|
871
871
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
872
|
-
* allows
|
872
|
+
* allows querying by
|
873
873
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
874
874
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
875
875
|
* and
|
@@ -1022,7 +1022,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
1022
1022
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1023
1023
|
* can be passed as-is and a
|
1024
1024
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1025
|
-
* allows
|
1025
|
+
* allows querying by
|
1026
1026
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1027
1027
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1028
1028
|
* and
|
@@ -1092,7 +1092,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
1092
1092
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1093
1093
|
* can be passed as-is and a
|
1094
1094
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1095
|
-
* allows
|
1095
|
+
* allows querying by
|
1096
1096
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1097
1097
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1098
1098
|
* and
|
@@ -1111,17 +1111,30 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
1111
1111
|
*/
|
1112
1112
|
$$eval<Selector extends string, Params extends unknown[], Func extends EvaluateFuncWith<Array<NodeFor<Selector>>, Params> = EvaluateFuncWith<Array<NodeFor<Selector>>, Params>>(selector: Selector, pageFunction: Func | string, ...args: Params): Promise<Awaited<ReturnType<Func>>>;
|
1113
1113
|
/**
|
1114
|
-
* If no URLs are specified, this method returns cookies for the
|
1115
|
-
* URL. If URLs are specified, only cookies for those
|
1114
|
+
* If no URLs are specified, this method returns cookies for the
|
1115
|
+
* current page URL. If URLs are specified, only cookies for those
|
1116
|
+
* URLs are returned.
|
1117
|
+
*
|
1118
|
+
* @deprecated Page-level cookie API is deprecated. Use
|
1119
|
+
* {@link Browser.cookies} or {@link BrowserContext.cookies} instead.
|
1116
1120
|
*/
|
1117
1121
|
abstract cookies(...urls: string[]): Promise<Cookie[]>;
|
1122
|
+
/**
|
1123
|
+
* @deprecated Page-level cookie API is deprecated. Use
|
1124
|
+
* {@link Browser.deleteCookie} or {@link BrowserContext.deleteCookie}
|
1125
|
+
* instead.
|
1126
|
+
*/
|
1118
1127
|
abstract deleteCookie(...cookies: DeleteCookiesRequest[]): Promise<void>;
|
1119
1128
|
/**
|
1120
1129
|
* @example
|
1121
1130
|
*
|
1122
|
-
|
1131
|
+
*```ts
|
1123
1132
|
* await page.setCookie(cookieObject1, cookieObject2);
|
1124
|
-
|
1133
|
+
*```
|
1134
|
+
*
|
1135
|
+
* @deprecated Page-level cookie API is deprecated. Use
|
1136
|
+
* {@link Browser.setCookie} or {@link BrowserContext.setCookie}
|
1137
|
+
* instead.
|
1125
1138
|
*/
|
1126
1139
|
abstract setCookie(...cookies: CookieParam[]): Promise<void>;
|
1127
1140
|
/**
|
@@ -1652,6 +1665,9 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
1652
1665
|
* await page.emulateVisionDeficiency('blurredVision');
|
1653
1666
|
* await page.screenshot({path: 'blurred-vision.png'});
|
1654
1667
|
*
|
1668
|
+
* await page.emulateVisionDeficiency('reducedContrast');
|
1669
|
+
* await page.screenshot({path: 'reduced-contrast.png'});
|
1670
|
+
*
|
1655
1671
|
* await browser.close();
|
1656
1672
|
* })();
|
1657
1673
|
* ```
|
@@ -1692,8 +1708,8 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
1692
1708
|
*
|
1693
1709
|
* This is either the viewport set with the previous {@link Page.setViewport}
|
1694
1710
|
* call or the default viewport set via
|
1695
|
-
* {@link
|
1696
|
-
*
|
1711
|
+
* {@link ConnectOptions.defaultViewport |
|
1712
|
+
* ConnectOptions.defaultViewport}.
|
1697
1713
|
*/
|
1698
1714
|
abstract viewport(): Viewport | null;
|
1699
1715
|
/**
|
@@ -1936,7 +1952,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
1936
1952
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1937
1953
|
* can be passed as-is and a
|
1938
1954
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1939
|
-
* allows
|
1955
|
+
* allows querying by
|
1940
1956
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1941
1957
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1942
1958
|
* and
|
@@ -1961,7 +1977,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
1961
1977
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1962
1978
|
* can be passed as-is and a
|
1963
1979
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1964
|
-
* allows
|
1980
|
+
* allows querying by
|
1965
1981
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1966
1982
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1967
1983
|
* and
|
@@ -1993,7 +2009,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
1993
2009
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1994
2010
|
* can be passed as-is and a
|
1995
2011
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1996
|
-
* allows
|
2012
|
+
* allows querying by
|
1997
2013
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1998
2014
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1999
2015
|
* and
|
@@ -2030,7 +2046,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
2030
2046
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
2031
2047
|
* can be passed as-is and a
|
2032
2048
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
2033
|
-
* allows
|
2049
|
+
* allows querying by
|
2034
2050
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
2035
2051
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
2036
2052
|
* and
|
@@ -2060,7 +2076,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
2060
2076
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
2061
2077
|
* can be passed as-is and a
|
2062
2078
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
2063
|
-
* allows
|
2079
|
+
* allows querying by
|
2064
2080
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
2065
2081
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
2066
2082
|
* and
|
@@ -2096,7 +2112,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
2096
2112
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
2097
2113
|
* can be passed as-is and a
|
2098
2114
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
2099
|
-
* allows
|
2115
|
+
* allows querying by
|
2100
2116
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
2101
2117
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
2102
2118
|
* and
|
@@ -2146,7 +2162,7 @@ export declare abstract class Page extends EventEmitter<PageEvents> {
|
|
2146
2162
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
2147
2163
|
* can be passed as-is and a
|
2148
2164
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
2149
|
-
* allows
|
2165
|
+
* allows querying by
|
2150
2166
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
2151
2167
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
2152
2168
|
* and
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Page.d.ts","sourceRoot":"","sources":["../../../../src/api/Page.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"Page.d.ts","sourceRoot":"","sources":["../../../../src/api/Page.ts"],"names":[],"mappings":"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"}
|
@@ -270,7 +270,7 @@ let Page = (() => {
|
|
270
270
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
271
271
|
* can be passed as-is and a
|
272
272
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
273
|
-
* allows
|
273
|
+
* allows querying by
|
274
274
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
275
275
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
276
276
|
* and
|
@@ -297,7 +297,7 @@ let Page = (() => {
|
|
297
297
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
298
298
|
* can be passed as-is and a
|
299
299
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
300
|
-
* allows
|
300
|
+
* allows querying by
|
301
301
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
302
302
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
303
303
|
* and
|
@@ -431,7 +431,7 @@ let Page = (() => {
|
|
431
431
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
432
432
|
* can be passed as-is and a
|
433
433
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
434
|
-
* allows
|
434
|
+
* allows querying by
|
435
435
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
436
436
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
437
437
|
* and
|
@@ -504,7 +504,7 @@ let Page = (() => {
|
|
504
504
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
505
505
|
* can be passed as-is and a
|
506
506
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
507
|
-
* allows
|
507
|
+
* allows querying by
|
508
508
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
509
509
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
510
510
|
* and
|
@@ -982,7 +982,6 @@ let Page = (() => {
|
|
982
982
|
const env_2 = { stack: [], error: void 0, hasError: false };
|
983
983
|
try {
|
984
984
|
const _guard = __addDisposableResource(env_2, await this.browserContext().startScreenshot(), false);
|
985
|
-
await this.bringToFront();
|
986
985
|
const options = {
|
987
986
|
...userOptions,
|
988
987
|
clip: userOptions.clip
|
@@ -1119,7 +1118,7 @@ let Page = (() => {
|
|
1119
1118
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1120
1119
|
* can be passed as-is and a
|
1121
1120
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1122
|
-
* allows
|
1121
|
+
* allows querying by
|
1123
1122
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1124
1123
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1125
1124
|
* and
|
@@ -1146,7 +1145,7 @@ let Page = (() => {
|
|
1146
1145
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1147
1146
|
* can be passed as-is and a
|
1148
1147
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1149
|
-
* allows
|
1148
|
+
* allows querying by
|
1150
1149
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1151
1150
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1152
1151
|
* and
|
@@ -1180,7 +1179,7 @@ let Page = (() => {
|
|
1180
1179
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1181
1180
|
* can be passed as-is and a
|
1182
1181
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1183
|
-
* allows
|
1182
|
+
* allows querying by
|
1184
1183
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1185
1184
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1186
1185
|
* and
|
@@ -1219,7 +1218,7 @@ let Page = (() => {
|
|
1219
1218
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1220
1219
|
* can be passed as-is and a
|
1221
1220
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1222
|
-
* allows
|
1221
|
+
* allows querying by
|
1223
1222
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1224
1223
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1225
1224
|
* and
|
@@ -1251,7 +1250,7 @@ let Page = (() => {
|
|
1251
1250
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1252
1251
|
* can be passed as-is and a
|
1253
1252
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1254
|
-
* allows
|
1253
|
+
* allows querying by
|
1255
1254
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1256
1255
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1257
1256
|
* and
|
@@ -1289,7 +1288,7 @@ let Page = (() => {
|
|
1289
1288
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1290
1289
|
* can be passed as-is and a
|
1291
1290
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1292
|
-
* allows
|
1291
|
+
* allows querying by
|
1293
1292
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1294
1293
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1295
1294
|
* and
|
@@ -1341,7 +1340,7 @@ let Page = (() => {
|
|
1341
1340
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | CSS selectors}
|
1342
1341
|
* can be passed as-is and a
|
1343
1342
|
* {@link https://pptr.dev/guides/page-interactions#non-css-selectors | Puppeteer-specific selector syntax}
|
1344
|
-
* allows
|
1343
|
+
* allows querying by
|
1345
1344
|
* {@link https://pptr.dev/guides/page-interactions#text-selectors--p-text | text},
|
1346
1345
|
* {@link https://pptr.dev/guides/page-interactions#aria-selectors--p-aria | a11y role and name},
|
1347
1346
|
* and
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Page.js","sourceRoot":"","sources":["../../../../src/api/Page.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"Page.js","sourceRoot":"","sources":["../../../../src/api/Page.ts"],"names":[],"mappings":"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"}
|
@@ -20,13 +20,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
20
20
|
}) : function(o, v) {
|
21
21
|
o["default"] = v;
|
22
22
|
});
|
23
|
-
var __importStar = (this && this.__importStar) || function (
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
};
|
23
|
+
var __importStar = (this && this.__importStar) || (function () {
|
24
|
+
var ownKeys = function(o) {
|
25
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
26
|
+
var ar = [];
|
27
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
28
|
+
return ar;
|
29
|
+
};
|
30
|
+
return ownKeys(o);
|
31
|
+
};
|
32
|
+
return function (mod) {
|
33
|
+
if (mod && mod.__esModule) return mod;
|
34
|
+
var result = {};
|
35
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
36
|
+
__setModuleDefault(result, mod);
|
37
|
+
return result;
|
38
|
+
};
|
39
|
+
})();
|
30
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
31
41
|
exports.connectBidiOverCdp = connectBidiOverCdp;
|
32
42
|
const BidiMapper = __importStar(require("chromium-bidi/lib/cjs/bidiMapper/BidiMapper.js"));
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"BidiOverCdp.js","sourceRoot":"","sources":["../../../../src/bidi/BidiOverCdp.ts"],"names":[],"mappings":";AAAA;;;;GAIG
|
1
|
+
{"version":3,"file":"BidiOverCdp.js","sourceRoot":"","sources":["../../../../src/bidi/BidiOverCdp.ts"],"names":[],"mappings":"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"}
|
@@ -76,15 +76,15 @@ let BidiBrowser = (() => {
|
|
76
76
|
];
|
77
77
|
static subscribeCdpEvents = [
|
78
78
|
// Coverage
|
79
|
-
'cdp.Debugger.scriptParsed',
|
80
|
-
'cdp.CSS.styleSheetAdded',
|
81
|
-
'cdp.Runtime.executionContextsCleared',
|
79
|
+
'goog:cdp.Debugger.scriptParsed',
|
80
|
+
'goog:cdp.CSS.styleSheetAdded',
|
81
|
+
'goog:cdp.Runtime.executionContextsCleared',
|
82
82
|
// Tracing
|
83
|
-
'cdp.Tracing.tracingComplete',
|
83
|
+
'goog:cdp.Tracing.tracingComplete',
|
84
84
|
// TODO: subscribe to all CDP events in the future.
|
85
|
-
'cdp.Network.requestWillBeSent',
|
86
|
-
'cdp.Debugger.scriptParsed',
|
87
|
-
'cdp.Page.screencastFrame',
|
85
|
+
'goog:cdp.Network.requestWillBeSent',
|
86
|
+
'goog:cdp.Debugger.scriptParsed',
|
87
|
+
'goog:cdp.Page.screencastFrame',
|
88
88
|
];
|
89
89
|
static async create(opts) {
|
90
90
|
const session = await Session_js_1.Session.from(opts.connection, {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Browser.js","sourceRoot":"","sources":["../../../../src/bidi/Browser.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAOH,kDAM2B;AAM3B,+DAAuD;AACvD,+CAA6C;AAE7C,yDAA6C;AAE7C,2DAAuD;AAGvD,kDAA0C;AAE1C,2CAA8C;AAe9C;;GAEG;IACU,WAAW;sBAAS,oBAAO;;;;;iBAA3B,WAAY,SAAQ,WAAO;;;kDAmDrC,IAAA,sBAAM,GAAE;YACT,0DAAA,uBAAA,6DAA6D,2BAAA,EAA7D,uBAAA,mEAA6D,2BAAA,yIAApD,eAAe,yBAAf,eAAe,6BAAf,eAAe,uHAAqC;;;QAnDpD,QAAQ,GAAG,eAAe,CAAC;QAEpC,MAAM,CAAU,gBAAgB,GAA0B;YACxD,iBAAiB;YACjB,SAAS;YACT,KAAK;YACL,QAAQ;SACT,CAAC;QACF,MAAM,CAAU,kBAAkB,GAA0B;YAC1D,WAAW;YACX,
|
1
|
+
{"version":3,"file":"Browser.js","sourceRoot":"","sources":["../../../../src/bidi/Browser.ts"],"names":[],"mappings":"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"}
|
package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.d.ts
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
5
5
|
*/
|
6
6
|
import type { ConnectionTransport } from '../common/ConnectionTransport.js';
|
7
|
-
import type {
|
7
|
+
import type { ConnectOptions } from '../common/ConnectOptions.js';
|
8
8
|
import type { BidiBrowser } from './Browser.js';
|
9
9
|
/**
|
10
10
|
* Users should never call this directly; it's called when calling `puppeteer.connect`
|
@@ -14,5 +14,5 @@ import type { BidiBrowser } from './Browser.js';
|
|
14
14
|
*
|
15
15
|
* @internal
|
16
16
|
*/
|
17
|
-
export declare function _connectToBiDiBrowser(connectionTransport: ConnectionTransport, url: string, options:
|
17
|
+
export declare function _connectToBiDiBrowser(connectionTransport: ConnectionTransport, url: string, options: ConnectOptions): Promise<BidiBrowser>;
|
18
18
|
//# sourceMappingURL=BrowserConnector.d.ts.map
|
package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"BrowserConnector.d.ts","sourceRoot":"","sources":["../../../../src/bidi/BrowserConnector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AAC1E,OAAO,KAAK,
|
1
|
+
{"version":3,"file":"BrowserConnector.d.ts","sourceRoot":"","sources":["../../../../src/bidi/BrowserConnector.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AAC1E,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,6BAA6B,CAAC;AAIhE,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,cAAc,CAAC;AAG9C;;;;;;;GAOG;AACH,wBAAsB,qBAAqB,CACzC,mBAAmB,EAAE,mBAAmB,EACxC,GAAG,EAAE,MAAM,EACX,OAAO,EAAE,cAAc,GACtB,OAAO,CAAC,WAAW,CAAC,CAiBtB"}
|
@@ -20,13 +20,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
20
20
|
}) : function(o, v) {
|
21
21
|
o["default"] = v;
|
22
22
|
});
|
23
|
-
var __importStar = (this && this.__importStar) || function (
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
};
|
23
|
+
var __importStar = (this && this.__importStar) || (function () {
|
24
|
+
var ownKeys = function(o) {
|
25
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
26
|
+
var ar = [];
|
27
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
28
|
+
return ar;
|
29
|
+
};
|
30
|
+
return ownKeys(o);
|
31
|
+
};
|
32
|
+
return function (mod) {
|
33
|
+
if (mod && mod.__esModule) return mod;
|
34
|
+
var result = {};
|
35
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
36
|
+
__setModuleDefault(result, mod);
|
37
|
+
return result;
|
38
|
+
};
|
39
|
+
})();
|
30
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
31
41
|
exports._connectToBiDiBrowser = _connectToBiDiBrowser;
|
32
42
|
const Connection_js_1 = require("../cdp/Connection.js");
|
@@ -88,7 +98,8 @@ async function getBiDiConnection(connectionTransport, url, options) {
|
|
88
98
|
// Unbind the connection to avoid memory leaks.
|
89
99
|
pureBidiConnection.unbind();
|
90
100
|
// Fall back to CDP over BiDi reusing the WS connection.
|
91
|
-
const cdpConnection = new Connection_js_1.Connection(url, connectionTransport, slowMo, protocolTimeout
|
101
|
+
const cdpConnection = new Connection_js_1.Connection(url, connectionTransport, slowMo, protocolTimeout,
|
102
|
+
/* rawErrors= */ true);
|
92
103
|
const version = await cdpConnection.send('Browser.getVersion');
|
93
104
|
if (version.product.toLowerCase().includes('firefox')) {
|
94
105
|
throw new Errors_js_1.UnsupportedOperation('Firefox is not supported in BiDi over CDP mode.');
|