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
@@ -23,27 +23,27 @@ export type LowerCasePaperFormat = 'letter' | 'legal' | 'tabloid' | 'ledger' | '
|
|
23
23
|
*
|
24
24
|
* The sizes of each format are as follows:
|
25
25
|
*
|
26
|
-
* - `Letter`: 8.5in x 11in
|
26
|
+
* - `Letter`: 8.5in x 11in / 21.59cm x 27.94cm
|
27
27
|
*
|
28
|
-
* - `Legal`: 8.5in x 14in
|
28
|
+
* - `Legal`: 8.5in x 14in / 21.59cm x 35.56cm
|
29
29
|
*
|
30
|
-
* - `Tabloid`: 11in x 17in
|
30
|
+
* - `Tabloid`: 11in x 17in / 27.94cm x 43.18cm
|
31
31
|
*
|
32
|
-
* - `Ledger`: 17in x 11in
|
32
|
+
* - `Ledger`: 17in x 11in / 43.18cm x 27.94cm
|
33
33
|
*
|
34
|
-
* - `A0`: 33.1102in x 46.811in
|
34
|
+
* - `A0`: 33.1102in x 46.811in / 84.1cm x 118.9cm
|
35
35
|
*
|
36
|
-
* - `A1`: 23.3858in x 33.1102in
|
36
|
+
* - `A1`: 23.3858in x 33.1102in / 59.4cm x 84.1cm
|
37
37
|
*
|
38
|
-
* - `A2`: 16.5354in x 23.3858in
|
38
|
+
* - `A2`: 16.5354in x 23.3858in / 42cm x 59.4cm
|
39
39
|
*
|
40
|
-
* - `A3`: 11.6929in x 16.5354in
|
40
|
+
* - `A3`: 11.6929in x 16.5354in / 29.7cm x 42cm
|
41
41
|
*
|
42
|
-
* - `A4`: 8.2677in x 11.6929in
|
42
|
+
* - `A4`: 8.2677in x 11.6929in / 21cm x 29.7cm
|
43
43
|
*
|
44
|
-
* - `A5`: 5.8268in x 8.2677in
|
44
|
+
* - `A5`: 5.8268in x 8.2677in / 14.8cm x 21cm
|
45
45
|
*
|
46
|
-
* - `A6`: 4.1339in x 5.8268in
|
46
|
+
* - `A6`: 4.1339in x 5.8268in / 10.5cm x 14.8cm
|
47
47
|
*
|
48
48
|
* @public
|
49
49
|
*/
|
@@ -195,6 +195,9 @@ export interface ParsedPDFOptionsInterface {
|
|
195
195
|
export type ParsedPDFOptions = Required<Omit<PDFOptions, 'path' | 'format' | 'timeout'> & ParsedPDFOptionsInterface>;
|
196
196
|
/**
|
197
197
|
* @internal
|
198
|
+
*
|
199
|
+
* @remarks All A series paper format sizes in inches are calculated from centimeters
|
200
|
+
* rounded mathematically to four decimal places.
|
198
201
|
*/
|
199
|
-
export declare const paperFormats: Record<LowerCasePaperFormat, PaperFormatDimensions
|
202
|
+
export declare const paperFormats: Record<LowerCasePaperFormat, Record<'cm' | 'in', PaperFormatDimensions>>;
|
200
203
|
//# sourceMappingURL=PDFOptions.d.ts.map
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"PDFOptions.d.ts","sourceRoot":"","sources":["../../../../src/common/PDFOptions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAC5B,QAAQ,GACR,OAAO,GACP,SAAS,GACT,QAAQ,GACR,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,CAAC;AAET;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,MAAM,MAAM,WAAW,GACnB,SAAS,CAAC,oBAAoB,CAAC,GAC/B,UAAU,CAAC,oBAAoB,CAAC,GAChC,oBAAoB,CAAC;AAEzB;;;GAGG;AACH,MAAM,WAAW,UAAU;IACzB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;OAGG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;;;;;;;;;;;;OAaG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B;;;OAGG;IACH,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB;;;;;;;;OAQG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;;;OAKG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE;QACN,GAAG,EAAE,MAAM,CAAC;QACZ,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;KACf,CAAC;CACH;AAED;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,QAAQ,CACrC,IAAI,CAAC,UAAU,EAAE,MAAM,GAAG,QAAQ,GAAG,SAAS,CAAC,GAAG,yBAAyB,CAC5E,CAAC;AAEF
|
1
|
+
{"version":3,"file":"PDFOptions.d.ts","sourceRoot":"","sources":["../../../../src/common/PDFOptions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACtB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAC5B,QAAQ,GACR,OAAO,GACP,SAAS,GACT,QAAQ,GACR,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,CAAC;AAET;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,MAAM,MAAM,WAAW,GACnB,SAAS,CAAC,oBAAoB,CAAC,GAC/B,UAAU,CAAC,oBAAoB,CAAC,GAChC,oBAAoB,CAAC;AAEzB;;;GAGG;AACH,MAAM,WAAW,UAAU;IACzB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;OAGG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;;;;;;;;;;;;OAaG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;;OAGG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;OAGG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B;;;OAGG;IACH,MAAM,CAAC,EAAE,SAAS,CAAC;IACnB;;;;;;;;OAQG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;;;OAKG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;;;OAMG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE;QACN,GAAG,EAAE,MAAM,CAAC;QACZ,MAAM,EAAE,MAAM,CAAC;QACf,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;KACf,CAAC;CACH;AAED;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,QAAQ,CACrC,IAAI,CAAC,UAAU,EAAE,MAAM,GAAG,QAAQ,GAAG,SAAS,CAAC,GAAG,yBAAyB,CAC5E,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,YAAY,EAAE,MAAM,CAC/B,oBAAoB,EACpB,MAAM,CAAC,IAAI,GAAG,IAAI,EAAE,qBAAqB,CAAC,CA8ClC,CAAC"}
|
@@ -5,18 +5,54 @@
|
|
5
5
|
*/
|
6
6
|
/**
|
7
7
|
* @internal
|
8
|
+
*
|
9
|
+
* @remarks All A series paper format sizes in inches are calculated from centimeters
|
10
|
+
* rounded mathematically to four decimal places.
|
8
11
|
*/
|
9
12
|
export const paperFormats = {
|
10
|
-
letter: {
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
13
|
+
letter: {
|
14
|
+
cm: { width: 21.59, height: 27.94 },
|
15
|
+
in: { width: 8.5, height: 11 },
|
16
|
+
},
|
17
|
+
legal: {
|
18
|
+
cm: { width: 21.59, height: 35.56 },
|
19
|
+
in: { width: 8.5, height: 14 },
|
20
|
+
},
|
21
|
+
tabloid: {
|
22
|
+
cm: { width: 27.94, height: 43.18 },
|
23
|
+
in: { width: 11, height: 17 },
|
24
|
+
},
|
25
|
+
ledger: {
|
26
|
+
cm: { width: 43.18, height: 27.94 },
|
27
|
+
in: { width: 17, height: 11 },
|
28
|
+
},
|
29
|
+
a0: {
|
30
|
+
cm: { width: 84.1, height: 118.9 },
|
31
|
+
in: { width: 33.1102, height: 46.811 },
|
32
|
+
},
|
33
|
+
a1: {
|
34
|
+
cm: { width: 59.4, height: 84.1 },
|
35
|
+
in: { width: 23.3858, height: 33.1102 },
|
36
|
+
},
|
37
|
+
a2: {
|
38
|
+
cm: { width: 42, height: 59.4 },
|
39
|
+
in: { width: 16.5354, height: 23.3858 },
|
40
|
+
},
|
41
|
+
a3: {
|
42
|
+
cm: { width: 29.7, height: 42 },
|
43
|
+
in: { width: 11.6929, height: 16.5354 },
|
44
|
+
},
|
45
|
+
a4: {
|
46
|
+
cm: { width: 21, height: 29.7 },
|
47
|
+
in: { width: 8.2677, height: 11.6929 },
|
48
|
+
},
|
49
|
+
a5: {
|
50
|
+
cm: { width: 14.8, height: 21 },
|
51
|
+
in: { width: 5.8268, height: 8.2677 },
|
52
|
+
},
|
53
|
+
a6: {
|
54
|
+
cm: { width: 10.5, height: 14.8 },
|
55
|
+
in: { width: 4.1339, height: 5.8268 },
|
56
|
+
},
|
21
57
|
};
|
22
58
|
//# sourceMappingURL=PDFOptions.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"PDFOptions.js","sourceRoot":"","sources":["../../../../src/common/PDFOptions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAuNH
|
1
|
+
{"version":3,"file":"PDFOptions.js","sourceRoot":"","sources":["../../../../src/common/PDFOptions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAuNH;;;;;GAKG;AACH,MAAM,CAAC,MAAM,YAAY,GAGrB;IACF,MAAM,EAAE;QACN,EAAE,EAAE,EAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAC;QACjC,EAAE,EAAE,EAAC,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,EAAE,EAAC;KAC7B;IACD,KAAK,EAAE;QACL,EAAE,EAAE,EAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAC;QACjC,EAAE,EAAE,EAAC,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,EAAE,EAAC;KAC7B;IACD,OAAO,EAAE;QACP,EAAE,EAAE,EAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAC;QACjC,EAAE,EAAE,EAAC,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAC;KAC5B;IACD,MAAM,EAAE;QACN,EAAE,EAAE,EAAC,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAC;QACjC,EAAE,EAAE,EAAC,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAC;KAC5B;IACD,EAAE,EAAE;QACF,EAAE,EAAE,EAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAC;QAChC,EAAE,EAAE,EAAC,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAC;KACrC;IACD,EAAE,EAAE;QACF,EAAE,EAAE,EAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAC;QAC/B,EAAE,EAAE,EAAC,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAC;KACtC;IACD,EAAE,EAAE;QACF,EAAE,EAAE,EAAC,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAC;QAC7B,EAAE,EAAE,EAAC,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAC;KACtC;IACD,EAAE,EAAE;QACF,EAAE,EAAE,EAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAC;QAC7B,EAAE,EAAE,EAAC,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAC;KACtC;IACD,EAAE,EAAE;QACF,EAAE,EAAE,EAAC,KAAK,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAC;QAC7B,EAAE,EAAE,EAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,EAAC;KACrC;IACD,EAAE,EAAE;QACF,EAAE,EAAE,EAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAC;QAC7B,EAAE,EAAE,EAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAC;KACpC;IACD,EAAE,EAAE;QACF,EAAE,EAAE,EAAC,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAC;QAC/B,EAAE,EAAE,EAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAC;KACpC;CACO,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WaitTask.d.ts","sourceRoot":"","sources":["../../../../src/common/WaitTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;AAE3D,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,iBAAiB,CAAC;AAQ3C,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AAE1C;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,KAAK,GAAG,UAAU,GAAG,MAAM,CAAC;IACrC,IAAI,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB;AAED;;GAEG;AACH,qBAAa,QAAQ,CAAC,CAAC,GAAG,OAAO;;gBAkB7B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,eAAe,EACxB,EAAE,EAAE,CAAC,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EACjD,GAAG,IAAI,EAAE,OAAO,EAAE;IAkCpB,IAAI,MAAM,IAAI,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAElC;IAEK,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IA+EtB,SAAS,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC;IA0B7C;;OAEG;IACH,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,GAAG,SAAS;
|
1
|
+
{"version":3,"file":"WaitTask.d.ts","sourceRoot":"","sources":["../../../../src/common/WaitTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;AAE3D,OAAO,KAAK,EAAC,KAAK,EAAC,MAAM,iBAAiB,CAAC;AAQ3C,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AAE1C;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,KAAK,GAAG,UAAU,GAAG,MAAM,CAAC;IACrC,IAAI,CAAC,EAAE,aAAa,CAAC,IAAI,CAAC,CAAC;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB;AAED;;GAEG;AACH,qBAAa,QAAQ,CAAC,CAAC,GAAG,OAAO;;gBAkB7B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,eAAe,EACxB,EAAE,EAAE,CAAC,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,GAAG,MAAM,EACjD,GAAG,IAAI,EAAE,OAAO,EAAE;IAkCpB,IAAI,MAAM,IAAI,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAElC;IAEK,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IA+EtB,SAAS,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,OAAO,CAAC,IAAI,CAAC;IA0B7C;;OAEG;IACH,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,GAAG,SAAS;CA0C/C;AAED;;GAEG;AACH,qBAAa,WAAW;;IAGtB,GAAG,CAAC,IAAI,EAAE,QAAQ,CAAC,GAAG,CAAC,GAAG,IAAI;IAI9B,MAAM,CAAC,IAAI,EAAE,QAAQ,CAAC,GAAG,CAAC,GAAG,IAAI;IAIjC,YAAY,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI;IAO3B,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;CAOhC"}
|
@@ -120,7 +120,7 @@ export class WaitTask {
|
|
120
120
|
}
|
121
121
|
if (this.#poller) {
|
122
122
|
try {
|
123
|
-
await this.#poller.
|
123
|
+
await this.#poller.evaluate(async (poller) => {
|
124
124
|
await poller.stop();
|
125
125
|
});
|
126
126
|
if (this.#poller) {
|
@@ -156,7 +156,7 @@ export class WaitTask {
|
|
156
156
|
}
|
157
157
|
// Errors coming from WebDriver BiDi. TODO: Adjust messages after
|
158
158
|
// https://github.com/w3c/webdriver-bidi/issues/540 is resolved.
|
159
|
-
if (error.message.includes(
|
159
|
+
if (error.message.includes('DiscardedBrowsingContextError')) {
|
160
160
|
return;
|
161
161
|
}
|
162
162
|
return error;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WaitTask.js","sourceRoot":"","sources":["../../../../src/common/WaitTask.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"WaitTask.js","sourceRoot":"","sources":["../../../../src/common/WaitTask.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../../src/common/util.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../../src/common/util.ts"],"names":[],"mappings":"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"}
|
@@ -276,7 +276,7 @@ export function parsePDFOptions(options = {}, lengthUnit = 'in') {
|
|
276
276
|
let width = 8.5;
|
277
277
|
let height = 11;
|
278
278
|
if (options.format) {
|
279
|
-
const format = paperFormats[options.format.toLowerCase()];
|
279
|
+
const format = paperFormats[options.format.toLowerCase()][lengthUnit];
|
280
280
|
assert(format, 'Unknown paper format: ' + options.format);
|
281
281
|
width = format.width;
|
282
282
|
height = format.height;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"util.js","sourceRoot":"","sources":["../../../../src/common/util.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"util.js","sourceRoot":"","sources":["../../../../src/common/util.ts"],"names":[],"mappings":"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"}
|
@@ -3,7 +3,7 @@ import type { Browser, BrowserCloseCallback } from '../api/Browser.js';
|
|
3
3
|
import { Connection } from '../cdp/Connection.js';
|
4
4
|
import type { SupportedBrowser } from '../common/SupportedBrowser.js';
|
5
5
|
import type { Viewport } from '../common/Viewport.js';
|
6
|
-
import type {
|
6
|
+
import type { ChromeReleaseChannel, LaunchOptions } from './LaunchOptions.js';
|
7
7
|
import type { PuppeteerNode } from './PuppeteerNode.js';
|
8
8
|
/**
|
9
9
|
* @internal
|
@@ -30,13 +30,13 @@ export declare abstract class BrowserLauncher {
|
|
30
30
|
*/
|
31
31
|
constructor(puppeteer: PuppeteerNode, browser: SupportedBrowser);
|
32
32
|
get browser(): SupportedBrowser;
|
33
|
-
launch(options?:
|
34
|
-
abstract executablePath(channel?: ChromeReleaseChannel): string;
|
35
|
-
abstract defaultArgs(object:
|
33
|
+
launch(options?: LaunchOptions): Promise<Browser>;
|
34
|
+
abstract executablePath(channel?: ChromeReleaseChannel, validatePath?: boolean): string;
|
35
|
+
abstract defaultArgs(object: LaunchOptions): string[];
|
36
36
|
/**
|
37
37
|
* @internal
|
38
38
|
*/
|
39
|
-
protected abstract computeLaunchArguments(options:
|
39
|
+
protected abstract computeLaunchArguments(options: LaunchOptions): Promise<ResolvedLaunchArgs>;
|
40
40
|
/**
|
41
41
|
* @internal
|
42
42
|
*/
|
@@ -91,6 +91,6 @@ export declare abstract class BrowserLauncher {
|
|
91
91
|
/**
|
92
92
|
* @internal
|
93
93
|
*/
|
94
|
-
|
94
|
+
resolveExecutablePath(headless?: boolean | 'shell', validatePath?: boolean): string;
|
95
95
|
}
|
96
96
|
//# sourceMappingURL=BrowserLauncher.d.ts.map
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"BrowserLauncher.d.ts","sourceRoot":"","sources":["../../../../src/node/BrowserLauncher.ts"],"names":[],"mappings":"AASA,OAAO,EAGL,MAAM,EAIP,MAAM,qBAAqB,CAAC;AAS7B,OAAO,KAAK,EAAC,OAAO,EAAE,oBAAoB,EAAC,MAAM,mBAAmB,CAAC;AAErE,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAEhD,OAAO,KAAK,EAAC,gBAAgB,EAAC,MAAM,+BAA+B,CAAC;AAEpE,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,uBAAuB,CAAC;AAEpD,OAAO,KAAK,
|
1
|
+
{"version":3,"file":"BrowserLauncher.d.ts","sourceRoot":"","sources":["../../../../src/node/BrowserLauncher.ts"],"names":[],"mappings":"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"}
|
@@ -42,6 +42,9 @@ export class BrowserLauncher {
|
|
42
42
|
if (this.#browser === 'firefox' && protocol === undefined) {
|
43
43
|
protocol = 'webDriverBiDi';
|
44
44
|
}
|
45
|
+
if (this.#browser === 'firefox' && protocol === 'cdp') {
|
46
|
+
throw new Error('Connecting to Firefox using CDP is no longer supported');
|
47
|
+
}
|
45
48
|
const launchArgs = await this.computeLaunchArguments({
|
46
49
|
...options,
|
47
50
|
protocol,
|
@@ -55,17 +58,10 @@ export class BrowserLauncher {
|
|
55
58
|
isTemp: launchArgs.isTempUserDataDir,
|
56
59
|
});
|
57
60
|
};
|
58
|
-
if (this.#browser === 'firefox' &&
|
59
|
-
protocol !== 'webDriverBiDi' &&
|
60
|
-
this.puppeteer.configuration.logLevel === 'warn') {
|
61
|
-
console.warn(`Chrome DevTools Protocol (CDP) support for Firefox is deprecated in Puppeteer ` +
|
62
|
-
`and it will be eventually removed. ` +
|
63
|
-
`Use WebDriver BiDi instead (see https://pptr.dev/webdriver-bidi#get-started).`);
|
64
|
-
}
|
65
61
|
if (this.#browser === 'firefox' &&
|
66
62
|
protocol === 'webDriverBiDi' &&
|
67
63
|
usePipe) {
|
68
|
-
throw new Error('Pipe connections are not supported
|
64
|
+
throw new Error('Pipe connections are not supported with Firefox and WebDriver BiDi');
|
69
65
|
}
|
70
66
|
const browserProcess = launch({
|
71
67
|
executablePath: launchArgs.executablePath,
|
@@ -120,7 +116,7 @@ export class BrowserLauncher {
|
|
120
116
|
});
|
121
117
|
}
|
122
118
|
else {
|
123
|
-
browser = await CdpBrowser._create(
|
119
|
+
browser = await CdpBrowser._create(cdpConnection, [], acceptInsecureCerts, defaultViewport, downloadBehavior, browserProcess.nodeProcess, browserCloseCallback, options.targetFilter);
|
124
120
|
}
|
125
121
|
}
|
126
122
|
}
|
@@ -230,10 +226,10 @@ export class BrowserLauncher {
|
|
230
226
|
/**
|
231
227
|
* @internal
|
232
228
|
*/
|
233
|
-
resolveExecutablePath(headless) {
|
229
|
+
resolveExecutablePath(headless, validatePath = true) {
|
234
230
|
let executablePath = this.puppeteer.configuration.executablePath;
|
235
231
|
if (executablePath) {
|
236
|
-
if (!existsSync(executablePath)) {
|
232
|
+
if (validatePath && !existsSync(executablePath)) {
|
237
233
|
throw new Error(`Tried to find the browser at the configured path (${executablePath}), but no executable was found.`);
|
238
234
|
}
|
239
235
|
return executablePath;
|
@@ -256,7 +252,7 @@ export class BrowserLauncher {
|
|
256
252
|
browser: browserType,
|
257
253
|
buildId: this.puppeteer.browserVersion,
|
258
254
|
});
|
259
|
-
if (!existsSync(executablePath)) {
|
255
|
+
if (validatePath && !existsSync(executablePath)) {
|
260
256
|
const configVersion = this.puppeteer.configuration?.[this.browser]?.version;
|
261
257
|
if (configVersion) {
|
262
258
|
throw new Error(`Tried to find the browser at the configured path (${executablePath}) for version ${configVersion}, but no executable was found.`);
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"BrowserLauncher.js","sourceRoot":"","sources":["../../../../src/node/BrowserLauncher.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,EAAC,UAAU,EAAC,MAAM,IAAI,CAAC;AAC9B,OAAO,EAAC,MAAM,EAAC,MAAM,IAAI,CAAC;AAC1B,OAAO,EAAC,IAAI,EAAC,MAAM,MAAM,CAAC;AAE1B,OAAO,EACL,OAAO,IAAI,gBAAgB,EAC3B,4BAA4B,EAC5B,MAAM,EACN,YAAY,IAAI,oBAAoB,EACpC,uCAAuC,EACvC,qBAAqB,GACtB,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EACL,cAAc,EACd,IAAI,EACJ,GAAG,EACH,IAAI,EACJ,KAAK,GACN,MAAM,gCAAgC,CAAC;AAExC,OAAO,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAC,YAAY,EAAC,MAAM,qBAAqB,CAAC;AAEjD,OAAO,EAAC,UAAU,EAAE,gBAAgB,EAAC,MAAM,mBAAmB,CAAC;
|
1
|
+
{"version":3,"file":"BrowserLauncher.js","sourceRoot":"","sources":["../../../../src/node/BrowserLauncher.ts"],"names":[],"mappings":"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"}
|
@@ -5,26 +5,26 @@
|
|
5
5
|
*/
|
6
6
|
import type { Browser } from '../api/Browser.js';
|
7
7
|
import { BrowserLauncher, type ResolvedLaunchArgs } from './BrowserLauncher.js';
|
8
|
-
import type {
|
8
|
+
import type { ChromeReleaseChannel, LaunchOptions } from './LaunchOptions.js';
|
9
9
|
import type { PuppeteerNode } from './PuppeteerNode.js';
|
10
10
|
/**
|
11
11
|
* @internal
|
12
12
|
*/
|
13
13
|
export declare class ChromeLauncher extends BrowserLauncher {
|
14
14
|
constructor(puppeteer: PuppeteerNode);
|
15
|
-
launch(options?:
|
15
|
+
launch(options?: LaunchOptions): Promise<Browser>;
|
16
16
|
/**
|
17
17
|
* @internal
|
18
18
|
*/
|
19
|
-
computeLaunchArguments(options?:
|
19
|
+
computeLaunchArguments(options?: LaunchOptions): Promise<ResolvedLaunchArgs>;
|
20
20
|
/**
|
21
21
|
* @internal
|
22
22
|
*/
|
23
23
|
cleanUserDataDir(path: string, opts: {
|
24
24
|
isTemp: boolean;
|
25
25
|
}): Promise<void>;
|
26
|
-
defaultArgs(options?:
|
27
|
-
executablePath(channel?: ChromeReleaseChannel,
|
26
|
+
defaultArgs(options?: LaunchOptions): string[];
|
27
|
+
executablePath(channel?: ChromeReleaseChannel, validatePath?: boolean): string;
|
28
28
|
}
|
29
29
|
/**
|
30
30
|
* Extracts all features from the given command-line flag
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ChromeLauncher.d.ts","sourceRoot":"","sources":["../../../../src/node/ChromeLauncher.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAYH,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,mBAAmB,CAAC;AAI/C,OAAO,EAAC,eAAe,EAAE,KAAK,kBAAkB,EAAC,MAAM,sBAAsB,CAAC;AAC9E,OAAO,KAAK,
|
1
|
+
{"version":3,"file":"ChromeLauncher.d.ts","sourceRoot":"","sources":["../../../../src/node/ChromeLauncher.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAYH,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,mBAAmB,CAAC;AAI/C,OAAO,EAAC,eAAe,EAAE,KAAK,kBAAkB,EAAC,MAAM,sBAAsB,CAAC;AAC9E,OAAO,KAAK,EAAC,oBAAoB,EAAE,aAAa,EAAC,MAAM,oBAAoB,CAAC;AAC5E,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,oBAAoB,CAAC;AAGtD;;GAEG;AACH,qBAAa,cAAe,SAAQ,eAAe;gBACrC,SAAS,EAAE,aAAa;IAI3B,MAAM,CAAC,OAAO,GAAE,aAAkB,GAAG,OAAO,CAAC,OAAO,CAAC;IAwB9D;;OAEG;IACY,sBAAsB,CACnC,OAAO,GAAE,aAAkB,GAC1B,OAAO,CAAC,kBAAkB,CAAC;IA4E9B;;OAEG;IACY,gBAAgB,CAC7B,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC,GACtB,OAAO,CAAC,IAAI,CAAC;IAWP,WAAW,CAAC,OAAO,GAAE,aAAkB,GAAG,MAAM,EAAE;IAgHlD,cAAc,CACrB,OAAO,CAAC,EAAE,oBAAoB,EAC9B,YAAY,UAAO,GAClB,MAAM;CAUV;AAiBD;;;;;;;;;;;GAWG;AACH,wBAAgB,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,MAAM,EAAO,GAAG,MAAM,EAAE,CAW1E;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAW3E"}
|
@@ -80,7 +80,9 @@ export class ChromeLauncher extends BrowserLauncher {
|
|
80
80
|
let chromeExecutable = executablePath;
|
81
81
|
if (!chromeExecutable) {
|
82
82
|
assert(channel || !this.puppeteer._isPuppeteerCore, `An \`executablePath\` or \`channel\` must be specified for \`puppeteer-core\``);
|
83
|
-
chromeExecutable =
|
83
|
+
chromeExecutable = channel
|
84
|
+
? this.executablePath(channel)
|
85
|
+
: this.resolveExecutablePath(options.headless ?? true);
|
84
86
|
}
|
85
87
|
return {
|
86
88
|
executablePath: chromeExecutable,
|
@@ -149,6 +151,7 @@ export class ChromeLauncher extends BrowserLauncher {
|
|
149
151
|
'--disable-breakpad',
|
150
152
|
'--disable-client-side-phishing-detection',
|
151
153
|
'--disable-component-extensions-with-background-pages',
|
154
|
+
'--disable-crash-reporter', // No crash reporting in CfT.
|
152
155
|
'--disable-default-apps',
|
153
156
|
'--disable-dev-shm-usage',
|
154
157
|
'--disable-extensions',
|
@@ -162,8 +165,8 @@ export class ChromeLauncher extends BrowserLauncher {
|
|
162
165
|
'--disable-sync',
|
163
166
|
'--enable-automation',
|
164
167
|
'--export-tagged-pdf',
|
165
|
-
'--generate-pdf-document-outline',
|
166
168
|
'--force-color-profile=srgb',
|
169
|
+
'--generate-pdf-document-outline',
|
167
170
|
'--metrics-recording-only',
|
168
171
|
'--no-first-run',
|
169
172
|
'--password-store=basic',
|
@@ -191,7 +194,7 @@ export class ChromeLauncher extends BrowserLauncher {
|
|
191
194
|
chromeArguments.push(...args);
|
192
195
|
return chromeArguments;
|
193
196
|
}
|
194
|
-
executablePath(channel,
|
197
|
+
executablePath(channel, validatePath = true) {
|
195
198
|
if (channel) {
|
196
199
|
return computeSystemExecutablePath({
|
197
200
|
browser: SupportedBrowsers.CHROME,
|
@@ -199,7 +202,7 @@ export class ChromeLauncher extends BrowserLauncher {
|
|
199
202
|
});
|
200
203
|
}
|
201
204
|
else {
|
202
|
-
return this.resolveExecutablePath(
|
205
|
+
return this.resolveExecutablePath(undefined, validatePath);
|
203
206
|
}
|
204
207
|
}
|
205
208
|
}
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ChromeLauncher.js","sourceRoot":"","sources":["../../../../src/node/ChromeLauncher.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAC,OAAO,EAAC,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,OAAO,EACL,2BAA2B,EAC3B,OAAO,IAAI,iBAAiB,EAC5B,oBAAoB,IAAI,4BAA4B,GACrD,MAAM,qBAAqB,CAAC;AAG7B,OAAO,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAC,MAAM,EAAC,MAAM,mBAAmB,CAAC;AAEzC,OAAO,EAAC,eAAe,EAA0B,MAAM,sBAAsB,CAAC;
|
1
|
+
{"version":3,"file":"ChromeLauncher.js","sourceRoot":"","sources":["../../../../src/node/ChromeLauncher.ts"],"names":[],"mappings":"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"}
|
@@ -4,25 +4,25 @@
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
5
5
|
*/
|
6
6
|
import { BrowserLauncher, type ResolvedLaunchArgs } from './BrowserLauncher.js';
|
7
|
-
import type {
|
7
|
+
import type { LaunchOptions } from './LaunchOptions.js';
|
8
8
|
import type { PuppeteerNode } from './PuppeteerNode.js';
|
9
9
|
/**
|
10
10
|
* @internal
|
11
11
|
*/
|
12
12
|
export declare class FirefoxLauncher extends BrowserLauncher {
|
13
13
|
constructor(puppeteer: PuppeteerNode);
|
14
|
-
static getPreferences(extraPrefsFirefox?: Record<string, unknown
|
14
|
+
static getPreferences(extraPrefsFirefox?: Record<string, unknown>): Record<string, unknown>;
|
15
15
|
/**
|
16
16
|
* @internal
|
17
17
|
*/
|
18
|
-
computeLaunchArguments(options?:
|
18
|
+
computeLaunchArguments(options?: LaunchOptions): Promise<ResolvedLaunchArgs>;
|
19
19
|
/**
|
20
20
|
* @internal
|
21
21
|
*/
|
22
22
|
cleanUserDataDir(userDataDir: string, opts: {
|
23
23
|
isTemp: boolean;
|
24
24
|
}): Promise<void>;
|
25
|
-
executablePath(): string;
|
26
|
-
defaultArgs(options?:
|
25
|
+
executablePath(_: unknown, validatePath?: boolean): string;
|
26
|
+
defaultArgs(options?: LaunchOptions): string[];
|
27
27
|
}
|
28
28
|
//# sourceMappingURL=FirefoxLauncher.d.ts.map
|
package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"FirefoxLauncher.d.ts","sourceRoot":"","sources":["../../../../src/node/FirefoxLauncher.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAYH,OAAO,EAAC,eAAe,EAAE,KAAK,kBAAkB,EAAC,MAAM,sBAAsB,CAAC;AAC9E,OAAO,KAAK,
|
1
|
+
{"version":3,"file":"FirefoxLauncher.d.ts","sourceRoot":"","sources":["../../../../src/node/FirefoxLauncher.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAYH,OAAO,EAAC,eAAe,EAAE,KAAK,kBAAkB,EAAC,MAAM,sBAAsB,CAAC;AAC9E,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,oBAAoB,CAAC;AACtD,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,oBAAoB,CAAC;AAGtD;;GAEG;AACH,qBAAa,eAAgB,SAAQ,eAAe;gBACtC,SAAS,EAAE,aAAa;IAIpC,MAAM,CAAC,cAAc,CACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC1C,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IAc1B;;OAEG;IACY,sBAAsB,CACnC,OAAO,GAAE,aAAkB,GAC1B,OAAO,CAAC,kBAAkB,CAAC;IAqF9B;;OAEG;IACY,gBAAgB,CAC7B,WAAW,EAAE,MAAM,EACnB,IAAI,EAAE;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC,GACtB,OAAO,CAAC,IAAI,CAAC;IAkCP,cAAc,CAAC,CAAC,EAAE,OAAO,EAAE,YAAY,UAAO,GAAG,MAAM;IAOvD,WAAW,CAAC,OAAO,GAAE,aAAkB,GAAG,MAAM,EAAE;CAsC5D"}
|