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
package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"BrowserConnector.js","sourceRoot":"","sources":["../../../../src/bidi/BrowserConnector.ts"],"names":[],"mappings":";AAAA;;;;GAIG
|
1
|
+
{"version":3,"file":"BrowserConnector.js","sourceRoot":"","sources":["../../../../src/bidi/BrowserConnector.ts"],"names":[],"mappings":"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"}
|
@@ -8,6 +8,7 @@ import type { BrowserContextEvents } from '../api/BrowserContext.js';
|
|
8
8
|
import { BrowserContext } from '../api/BrowserContext.js';
|
9
9
|
import { type Page } from '../api/Page.js';
|
10
10
|
import type { Target } from '../api/Target.js';
|
11
|
+
import type { Cookie, CookieData } from '../common/Cookie.js';
|
11
12
|
import { EventEmitter } from '../common/EventEmitter.js';
|
12
13
|
import type { Viewport } from '../common/Viewport.js';
|
13
14
|
import type { BidiBrowser } from './Browser.js';
|
@@ -36,5 +37,7 @@ export declare class BidiBrowserContext extends BrowserContext {
|
|
36
37
|
overridePermissions(origin: string, permissions: Permission[]): Promise<void>;
|
37
38
|
clearPermissionOverrides(): Promise<void>;
|
38
39
|
get id(): string | undefined;
|
40
|
+
cookies(): Promise<Cookie[]>;
|
41
|
+
setCookie(...cookies: CookieData[]): Promise<void>;
|
39
42
|
}
|
40
43
|
//# sourceMappingURL=BrowserContext.d.ts.map
|
package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"BrowserContext.d.ts","sourceRoot":"","sources":["../../../../src/bidi/BrowserContext.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAElD,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,0BAA0B,CAAC;AACnE,OAAO,EAAC,cAAc,EAAsB,MAAM,0BAA0B,CAAC;AAC7E,OAAO,EAAY,KAAK,IAAI,EAAC,MAAM,gBAAgB,CAAC;AACpD,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;AAEvD,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,uBAAuB,CAAC;AAIpD,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,cAAc,CAAC;AAE9C,OAAO,EAAC,WAAW,EAAC,MAAM,uBAAuB,CAAC;AAElD,OAAO,
|
1
|
+
{"version":3,"file":"BrowserContext.d.ts","sourceRoot":"","sources":["../../../../src/bidi/BrowserContext.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAElD,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,0BAA0B,CAAC;AACnE,OAAO,EAAC,cAAc,EAAsB,MAAM,0BAA0B,CAAC;AAC7E,OAAO,EAAY,KAAK,IAAI,EAAC,MAAM,gBAAgB,CAAC;AACpD,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,kBAAkB,CAAC;AAC7C,OAAO,KAAK,EAAC,MAAM,EAAE,UAAU,EAAC,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;AAEvD,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,uBAAuB,CAAC;AAIpD,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,cAAc,CAAC;AAE9C,OAAO,EAAC,WAAW,EAAC,MAAM,uBAAuB,CAAC;AAElD,OAAO,EACL,QAAQ,EAMT,MAAM,WAAW,CAAC;AAKnB;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC,eAAe,EAAE,QAAQ,GAAG,IAAI,CAAC;CAClC;AAED;;GAEG;AACH,qBAAa,kBAAmB,SAAQ,cAAc;;IACpD,MAAM,CAAC,IAAI,CACT,OAAO,EAAE,WAAW,EACpB,WAAW,EAAE,WAAW,EACxB,OAAO,EAAE,yBAAyB,GACjC,kBAAkB;IAOrB,QAAQ,CAAC,cAAc,qCAA4C;IAKnE,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAYlC,OAAO;IAqGE,OAAO,IAAI,MAAM,EAAE;IAMb,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAqBxB,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAe5B,OAAO,IAAI,WAAW;IAIhB,KAAK,IAAI,OAAO,CAAC,QAAQ,EAAE,CAAC;IAM5B,mBAAmB,CAChC,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,UAAU,EAAE,GACxB,OAAO,CAAC,IAAI,CAAC;IAmCD,wBAAwB,IAAI,OAAO,CAAC,IAAI,CAAC;IAgBxD,IAAa,EAAE,IAAI,MAAM,GAAG,SAAS,CAKpC;IAEc,OAAO,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IAO5B,SAAS,CAAC,GAAG,OAAO,EAAE,UAAU,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;CAiClE"}
|
@@ -147,17 +147,15 @@ let BidiBrowserContext = (() => {
|
|
147
147
|
const page = this.#createPage(browsingContext);
|
148
148
|
// We need to wait for the DOMContentLoaded as the
|
149
149
|
// browsingContext still may be navigating from the about:blank
|
150
|
-
browsingContext.
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
.trustedEmitter.emit("popup" /* PageEvent.Popup */, page);
|
157
|
-
}
|
150
|
+
if (browsingContext.originalOpener) {
|
151
|
+
for (const context of this.userContext.browsingContexts) {
|
152
|
+
if (context.id === browsingContext.originalOpener) {
|
153
|
+
this.#pages
|
154
|
+
.get(context)
|
155
|
+
.trustedEmitter.emit("popup" /* PageEvent.Popup */, page);
|
158
156
|
}
|
159
157
|
}
|
160
|
-
}
|
158
|
+
}
|
161
159
|
});
|
162
160
|
this.userContext.on('closed', () => {
|
163
161
|
this.trustedEmitter.removeAllListeners();
|
@@ -312,6 +310,34 @@ let BidiBrowserContext = (() => {
|
|
312
310
|
}
|
313
311
|
return this.userContext.id;
|
314
312
|
}
|
313
|
+
async cookies() {
|
314
|
+
const cookies = await this.userContext.getCookies();
|
315
|
+
return cookies.map(cookie => {
|
316
|
+
return (0, Page_js_1.bidiToPuppeteerCookie)(cookie, true);
|
317
|
+
});
|
318
|
+
}
|
319
|
+
async setCookie(...cookies) {
|
320
|
+
await Promise.all(cookies.map(async (cookie) => {
|
321
|
+
const bidiCookie = {
|
322
|
+
domain: cookie.domain,
|
323
|
+
name: cookie.name,
|
324
|
+
value: {
|
325
|
+
type: 'string',
|
326
|
+
value: cookie.value,
|
327
|
+
},
|
328
|
+
...(cookie.path !== undefined ? { path: cookie.path } : {}),
|
329
|
+
...(cookie.httpOnly !== undefined ? { httpOnly: cookie.httpOnly } : {}),
|
330
|
+
...(cookie.secure !== undefined ? { secure: cookie.secure } : {}),
|
331
|
+
...(cookie.sameSite !== undefined
|
332
|
+
? { sameSite: (0, Page_js_1.convertCookiesSameSiteCdpToBiDi)(cookie.sameSite) }
|
333
|
+
: {}),
|
334
|
+
...{ expiry: (0, Page_js_1.convertCookiesExpiryCdpToBiDi)(cookie.expires) },
|
335
|
+
// Chrome-specific properties.
|
336
|
+
...(0, Page_js_1.cdpSpecificCookiePropertiesFromPuppeteerToBidi)(cookie, 'sameParty', 'sourceScheme', 'priority', 'url'),
|
337
|
+
};
|
338
|
+
return await this.userContext.setCookie(bidiCookie, (0, Page_js_1.convertCookiesPartitionKeyFromPuppeteerToBiDi)(cookie.partitionKey));
|
339
|
+
}));
|
340
|
+
}
|
315
341
|
};
|
316
342
|
})();
|
317
343
|
exports.BidiBrowserContext = BidiBrowserContext;
|
package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"BrowserContext.js","sourceRoot":"","sources":["../../../../src/bidi/BrowserContext.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKH,kDAAwE;AAExE,gEAA6E;
|
1
|
+
{"version":3,"file":"BrowserContext.js","sourceRoot":"","sources":["../../../../src/bidi/BrowserContext.ts"],"names":[],"mappings":"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"}
|
@@ -28,7 +28,7 @@ class BidiCdpSession extends CDPSession_js_1.CDPSession {
|
|
28
28
|
else {
|
29
29
|
(async () => {
|
30
30
|
try {
|
31
|
-
const { result } = await connection.send('cdp.getSession', {
|
31
|
+
const { result } = await connection.send('goog:cdp.getSession', {
|
32
32
|
context: frame._id,
|
33
33
|
});
|
34
34
|
this.#sessionId.resolve(result.session);
|
@@ -53,7 +53,7 @@ class BidiCdpSession extends CDPSession_js_1.CDPSession {
|
|
53
53
|
throw new Errors_js_1.TargetCloseError(`Protocol error (${method}): Session closed. Most likely the page has been closed.`);
|
54
54
|
}
|
55
55
|
const session = await this.#sessionId.valueOrThrow();
|
56
|
-
const { result } = await this.#connection.send('cdp.sendCommand', {
|
56
|
+
const { result } = await this.#connection.send('goog:cdp.sendCommand', {
|
57
57
|
method: method,
|
58
58
|
params: params,
|
59
59
|
session,
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"CDPSession.js","sourceRoot":"","sources":["../../../../src/bidi/CDPSession.ts"],"names":[],"mappings":";;;AAQA,wDAAgD;AAEhD,mDAA2E;AAC3E,qDAA6C;AAK7C;;GAEG;AACH,MAAa,cAAe,SAAQ,0BAAU;IAC5C,MAAM,CAAC,QAAQ,GAAG,IAAI,GAAG,EAA0B,CAAC;IAEpD,SAAS,GAAG,KAAK,CAAC;IACT,WAAW,CAAkB;IAC7B,UAAU,GAAG,sBAAQ,CAAC,MAAM,EAAU,CAAC;IACvC,KAAK,CAAY;IAE1B,YAAY,KAAgB,EAAE,SAAkB;QAC9C,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,OAAO,EAAE,CAAC,YAAY,EAAE,CAAC;YAC9C,OAAO;QACT,CAAC;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC;QAC1D,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;QAE9B,IAAI,SAAS,EAAE,CAAC;YACd,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;YACnC,cAAc,CAAC,QAAQ,CAAC,GAAG,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAC/C,CAAC;aAAM,CAAC;YACN,CAAC,KAAK,IAAI,EAAE;gBACV,IAAI,CAAC;oBACH,MAAM,EAAC,MAAM,EAAC,GAAG,MAAM,UAAU,CAAC,IAAI,CAAC,
|
1
|
+
{"version":3,"file":"CDPSession.js","sourceRoot":"","sources":["../../../../src/bidi/CDPSession.ts"],"names":[],"mappings":"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"}
|
@@ -7,20 +7,20 @@ import type * as Bidi from 'chromium-bidi/lib/cjs/protocol/protocol.js';
|
|
7
7
|
import type { ConnectionTransport } from '../common/ConnectionTransport.js';
|
8
8
|
import type { EventsWithWildcard } from '../common/EventEmitter.js';
|
9
9
|
import { EventEmitter } from '../common/EventEmitter.js';
|
10
|
-
import type { Commands as BidiCommands,
|
10
|
+
import type { BidiEvents, Commands as BidiCommands, Connection } from './core/Connection.js';
|
11
11
|
/**
|
12
12
|
* @internal
|
13
13
|
*/
|
14
14
|
export interface Commands extends BidiCommands {
|
15
|
-
'cdp.sendCommand': {
|
15
|
+
'goog:cdp.sendCommand': {
|
16
16
|
params: Bidi.Cdp.SendCommandParameters;
|
17
17
|
returnType: Bidi.Cdp.SendCommandResult;
|
18
18
|
};
|
19
|
-
'cdp.getSession': {
|
19
|
+
'goog:cdp.getSession': {
|
20
20
|
params: Bidi.Cdp.GetSessionParameters;
|
21
21
|
returnType: Bidi.Cdp.GetSessionResult;
|
22
22
|
};
|
23
|
-
'cdp.resolveRealm': {
|
23
|
+
'goog:cdp.resolveRealm': {
|
24
24
|
params: Bidi.Cdp.ResolveRealmParameters;
|
25
25
|
returnType: Bidi.Cdp.ResolveRealmResult;
|
26
26
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Connection.d.ts","sourceRoot":"","sources":["../../../../src/bidi/Connection.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,4CAA4C,CAAC;AAGxE,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AAE1E,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;AAKvD,OAAO,KAAK,EACV,QAAQ,IAAI,YAAY,EACxB,UAAU,
|
1
|
+
{"version":3,"file":"Connection.d.ts","sourceRoot":"","sources":["../../../../src/bidi/Connection.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,4CAA4C,CAAC;AAGxE,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AAE1E,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAC,YAAY,EAAC,MAAM,2BAA2B,CAAC;AAKvD,OAAO,KAAK,EACV,UAAU,EACV,QAAQ,IAAI,YAAY,EACxB,UAAU,EACX,MAAM,sBAAsB,CAAC;AAK9B;;GAEG;AACH,MAAM,WAAW,QAAS,SAAQ,YAAY;IAC5C,sBAAsB,EAAE;QACtB,MAAM,EAAE,IAAI,CAAC,GAAG,CAAC,qBAAqB,CAAC;QACvC,UAAU,EAAE,IAAI,CAAC,GAAG,CAAC,iBAAiB,CAAC;KACxC,CAAC;IACF,qBAAqB,EAAE;QACrB,MAAM,EAAE,IAAI,CAAC,GAAG,CAAC,oBAAoB,CAAC;QACtC,UAAU,EAAE,IAAI,CAAC,GAAG,CAAC,gBAAgB,CAAC;KACvC,CAAC;IACF,uBAAuB,EAAE;QACvB,MAAM,EAAE,IAAI,CAAC,GAAG,CAAC,sBAAsB,CAAC;QACxC,UAAU,EAAE,IAAI,CAAC,GAAG,CAAC,kBAAkB,CAAC;KACzC,CAAC;CACH;AAED;;GAEG;AACH,qBAAa,cACX,SAAQ,YAAY,CAAC,UAAU,CAC/B,YAAW,UAAU;;gBAWnB,GAAG,EAAE,MAAM,EACX,SAAS,EAAE,mBAAmB,EAC9B,KAAK,SAAI,EACT,OAAO,CAAC,EAAE,MAAM;IAYlB,IAAI,MAAM,IAAI,OAAO,CAEpB;IAED,IAAI,GAAG,IAAI,MAAM,CAEhB;IAED,MAAM,CAAC,MAAM,SAAS,UAAU,EAAE,OAAO,EAAE,YAAY,CAAC,MAAM,CAAC,GAAG,IAAI;IAI7D,IAAI,CAAC,GAAG,SAAS,MAAM,kBAAkB,CAAC,UAAU,CAAC,EAC5D,IAAI,EAAE,GAAG,EACT,KAAK,EAAE,kBAAkB,CAAC,UAAU,CAAC,CAAC,GAAG,CAAC,GACzC,OAAO;IAOV,IAAI,CAAC,CAAC,SAAS,MAAM,QAAQ,EAC3B,MAAM,EAAE,CAAC,EACT,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,EAC7B,OAAO,CAAC,EAAE,MAAM,GACf,OAAO,CAAC;QAAC,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAA;KAAC,CAAC;IAc/C;;OAEG;cACa,SAAS,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAkDzD;;;;OAIG;IACH,MAAM,IAAI,IAAI;IAYd;;OAEG;IACH,OAAO,IAAI,IAAI;IAKf,wBAAwB,IAAI,KAAK,EAAE;CAGpC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Connection.js","sourceRoot":"","sources":["../../../../src/bidi/Connection.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"Connection.js","sourceRoot":"","sources":["../../../../src/bidi/Connection.ts"],"names":[],"mappings":"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"}
|
@@ -13,6 +13,7 @@ import type { BidiFrameRealm } from './Realm.js';
|
|
13
13
|
* @internal
|
14
14
|
*/
|
15
15
|
export declare class BidiElementHandle<ElementType extends Node = Element> extends ElementHandle<ElementType> {
|
16
|
+
#private;
|
16
17
|
static from<ElementType extends Node = Element>(value: Bidi.Script.RemoteValue, realm: BidiFrameRealm): BidiElementHandle<ElementType>;
|
17
18
|
handle: BidiJSHandle<ElementType>;
|
18
19
|
constructor(value: Bidi.Script.RemoteValue, realm: BidiFrameRealm);
|
@@ -23,5 +24,6 @@ export declare class BidiElementHandle<ElementType extends Node = Element> exten
|
|
23
24
|
contentFrame(this: BidiElementHandle<HTMLIFrameElement>): Promise<BidiFrame>;
|
24
25
|
uploadFile(this: BidiElementHandle<HTMLInputElement>, ...files: string[]): Promise<void>;
|
25
26
|
queryAXTree(this: BidiElementHandle<HTMLElement>, name?: string | undefined, role?: string | undefined): AwaitableIterable<ElementHandle<Node>>;
|
27
|
+
backendNodeId(): Promise<number>;
|
26
28
|
}
|
27
29
|
//# sourceMappingURL=ElementHandle.d.ts.map
|
package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ElementHandle.d.ts","sourceRoot":"","sources":["../../../../src/bidi/ElementHandle.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,4CAA4C,CAAC;AAExE,OAAO,EAEL,aAAa,EACb,KAAK,YAAY,EAClB,MAAM,yBAAyB,CAAC;
|
1
|
+
{"version":3,"file":"ElementHandle.d.ts","sourceRoot":"","sources":["../../../../src/bidi/ElementHandle.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,KAAK,IAAI,MAAM,4CAA4C,CAAC;AAExE,OAAO,EAEL,aAAa,EACb,KAAK,YAAY,EAClB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,oBAAoB,CAAC;AAK1D,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAC;AAC3C,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,YAAY,CAAC;AAE/C;;GAEG;AACH,qBAAa,iBAAiB,CAC5B,WAAW,SAAS,IAAI,GAAG,OAAO,CAClC,SAAQ,aAAa,CAAC,WAAW,CAAC;;IAGlC,MAAM,CAAC,IAAI,CAAC,WAAW,SAAS,IAAI,GAAG,OAAO,EAC5C,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAC9B,KAAK,EAAE,cAAc,GACpB,iBAAiB,CAAC,WAAW,CAAC;IAIzB,MAAM,EAAE,YAAY,CAAC,WAAW,CAAC,CAAC;gBAE9B,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,WAAW,EAAE,KAAK,EAAE,cAAc;IAIjE,IAAa,KAAK,IAAI,cAAc,CAGnC;IAED,IAAa,KAAK,IAAI,SAAS,CAE9B;IAED,WAAW,IAAI,IAAI,CAAC,MAAM,CAAC,WAAW;IAKvB,QAAQ,CAAC,IAAI,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC;IAc3C,YAAY,CACzB,IAAI,EAAE,iBAAiB,CAAC,iBAAiB,CAAC,GACzC,OAAO,CAAC,SAAS,CAAC;IA2BN,UAAU,CACvB,IAAI,EAAE,iBAAiB,CAAC,gBAAgB,CAAC,EACzC,GAAG,KAAK,EAAE,MAAM,EAAE,GACjB,OAAO,CAAC,IAAI,CAAC;IAeA,WAAW,CACzB,IAAI,EAAE,iBAAiB,CAAC,WAAW,CAAC,EACpC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,EACzB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,GACxB,iBAAiB,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;IAe1B,aAAa,IAAI,OAAO,CAAC,MAAM,CAAC;CAahD"}
|
@@ -93,6 +93,7 @@ var __disposeResources = (this && this.__disposeResources) || (function (Suppres
|
|
93
93
|
Object.defineProperty(exports, "__esModule", { value: true });
|
94
94
|
exports.BidiElementHandle = void 0;
|
95
95
|
const ElementHandle_js_1 = require("../api/ElementHandle.js");
|
96
|
+
const Errors_js_1 = require("../common/Errors.js");
|
96
97
|
const environment_js_1 = require("../environment.js");
|
97
98
|
const AsyncIterableUtil_js_1 = require("../util/AsyncIterableUtil.js");
|
98
99
|
const decorators_js_1 = require("../util/decorators.js");
|
@@ -114,12 +115,12 @@ let BidiElementHandle = (() => {
|
|
114
115
|
__esDecorate(this, null, _contentFrame_decorators, { kind: "method", name: "contentFrame", static: false, private: false, access: { has: obj => "contentFrame" in obj, get: obj => obj.contentFrame }, metadata: _metadata }, null, _instanceExtraInitializers);
|
115
116
|
if (_metadata) Object.defineProperty(this, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
116
117
|
}
|
118
|
+
#backendNodeId = __runInitializers(this, _instanceExtraInitializers);
|
117
119
|
static from(value, realm) {
|
118
120
|
return new BidiElementHandle(value, realm);
|
119
121
|
}
|
120
122
|
constructor(value, realm) {
|
121
123
|
super(JSHandle_js_1.BidiJSHandle.from(value, realm));
|
122
|
-
__runInitializers(this, _instanceExtraInitializers);
|
123
124
|
}
|
124
125
|
get realm() {
|
125
126
|
// SAFETY: See the super call in the constructor.
|
@@ -201,6 +202,19 @@ let BidiElementHandle = (() => {
|
|
201
202
|
return Promise.resolve(BidiElementHandle.from(node, this.realm));
|
202
203
|
});
|
203
204
|
}
|
205
|
+
async backendNodeId() {
|
206
|
+
if (!this.frame.page().browser().cdpSupported) {
|
207
|
+
throw new Errors_js_1.UnsupportedOperation();
|
208
|
+
}
|
209
|
+
if (this.#backendNodeId) {
|
210
|
+
return this.#backendNodeId;
|
211
|
+
}
|
212
|
+
const { node } = await this.frame.client.send('DOM.describeNode', {
|
213
|
+
objectId: this.handle.id,
|
214
|
+
});
|
215
|
+
this.#backendNodeId = node.backendNodeId;
|
216
|
+
return this.#backendNodeId;
|
217
|
+
}
|
204
218
|
};
|
205
219
|
})();
|
206
220
|
exports.BidiElementHandle = BidiElementHandle;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ElementHandle.js","sourceRoot":"","sources":["../../../../src/bidi/ElementHandle.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIH,8DAIiC;
|
1
|
+
{"version":3,"file":"ElementHandle.js","sourceRoot":"","sources":["../../../../src/bidi/ElementHandle.ts"],"names":[],"mappings":"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"}
|
@@ -8,9 +8,9 @@ import type { BidiFrame } from './Frame.js';
|
|
8
8
|
/**
|
9
9
|
* @internal
|
10
10
|
*/
|
11
|
-
export declare class
|
11
|
+
export declare class ExposableFunction<Args extends unknown[], Ret> {
|
12
12
|
#private;
|
13
|
-
static from<Args extends unknown[], Ret>(frame: BidiFrame, name: string, apply: (...args: Args) => Awaitable<Ret>, isolate?: boolean): Promise<
|
13
|
+
static from<Args extends unknown[], Ret>(frame: BidiFrame, name: string, apply: (...args: Args) => Awaitable<Ret>, isolate?: boolean): Promise<ExposableFunction<Args, Ret>>;
|
14
14
|
readonly name: string;
|
15
15
|
constructor(frame: BidiFrame, name: string, apply: (...args: Args) => Awaitable<Ret>, isolate?: boolean);
|
16
16
|
[Symbol.dispose](): void;
|
package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ExposedFunction.d.ts","sourceRoot":"","sources":["../../../../src/bidi/ExposedFunction.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAKH,OAAO,KAAK,EAAC,SAAS,EAAgB,MAAM,oBAAoB,CAAC;AAOjE,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AAW1C;;GAEG;AACH,qBAAa,
|
1
|
+
{"version":3,"file":"ExposedFunction.d.ts","sourceRoot":"","sources":["../../../../src/bidi/ExposedFunction.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAKH,OAAO,KAAK,EAAC,SAAS,EAAgB,MAAM,oBAAoB,CAAC;AAOjE,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AAW1C;;GAEG;AACH,qBAAa,iBAAiB,CAAC,IAAI,SAAS,OAAO,EAAE,EAAE,GAAG;;WAC3C,IAAI,CAAC,IAAI,SAAS,OAAO,EAAE,EAAE,GAAG,EAC3C,KAAK,EAAE,SAAS,EAChB,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,CAAC,GAAG,IAAI,EAAE,IAAI,KAAK,SAAS,CAAC,GAAG,CAAC,EACxC,OAAO,UAAQ,GACd,OAAO,CAAC,iBAAiB,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAQxC,QAAQ,CAAC,IAAI,SAAC;gBAUZ,KAAK,EAAE,SAAS,EAChB,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,CAAC,GAAG,IAAI,EAAE,IAAI,KAAK,SAAS,CAAC,GAAG,CAAC,EACxC,OAAO,UAAQ;IA8KjB,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,IAAI;IAIlB,CAAC,MAAM,CAAC,YAAY,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC;CAuB7C"}
|
@@ -20,13 +20,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
20
20
|
}) : function(o, v) {
|
21
21
|
o["default"] = v;
|
22
22
|
});
|
23
|
-
var __importStar = (this && this.__importStar) || function (
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
};
|
23
|
+
var __importStar = (this && this.__importStar) || (function () {
|
24
|
+
var ownKeys = function(o) {
|
25
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
26
|
+
var ar = [];
|
27
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
28
|
+
return ar;
|
29
|
+
};
|
30
|
+
return ownKeys(o);
|
31
|
+
};
|
32
|
+
return function (mod) {
|
33
|
+
if (mod && mod.__esModule) return mod;
|
34
|
+
var result = {};
|
35
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
36
|
+
__setModuleDefault(result, mod);
|
37
|
+
return result;
|
38
|
+
};
|
39
|
+
})();
|
30
40
|
var __addDisposableResource = (this && this.__addDisposableResource) || function (env, value, async) {
|
31
41
|
if (value !== null && value !== void 0) {
|
32
42
|
if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
|
@@ -80,7 +90,7 @@ var __disposeResources = (this && this.__disposeResources) || (function (Suppres
|
|
80
90
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
81
91
|
});
|
82
92
|
Object.defineProperty(exports, "__esModule", { value: true });
|
83
|
-
exports.
|
93
|
+
exports.ExposableFunction = void 0;
|
84
94
|
const Bidi = __importStar(require("chromium-bidi/lib/cjs/protocol/protocol.js"));
|
85
95
|
const EventEmitter_js_1 = require("../common/EventEmitter.js");
|
86
96
|
const util_js_1 = require("../common/util.js");
|
@@ -91,9 +101,9 @@ const JSHandle_js_1 = require("./JSHandle.js");
|
|
91
101
|
/**
|
92
102
|
* @internal
|
93
103
|
*/
|
94
|
-
class
|
104
|
+
class ExposableFunction {
|
95
105
|
static async from(frame, name, apply, isolate = false) {
|
96
|
-
const func = new
|
106
|
+
const func = new ExposableFunction(frame, name, apply, isolate);
|
97
107
|
await func.#initialize();
|
98
108
|
return func;
|
99
109
|
}
|
@@ -275,5 +285,5 @@ class ExposeableFunction {
|
|
275
285
|
}));
|
276
286
|
}
|
277
287
|
}
|
278
|
-
exports.
|
288
|
+
exports.ExposableFunction = ExposableFunction;
|
279
289
|
//# sourceMappingURL=ExposedFunction.js.map
|
package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ExposedFunction.js","sourceRoot":"","sources":["../../../../src/bidi/ExposedFunction.ts"],"names":[],"mappings":";AAAA;;;;GAIG
|
1
|
+
{"version":3,"file":"ExposedFunction.js","sourceRoot":"","sources":["../../../../src/bidi/ExposedFunction.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Frame.d.ts","sourceRoot":"","sources":["../../../../src/bidi/Frame.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,IAAI,MAAM,4CAA4C,CAAC;
|
1
|
+
{"version":3,"file":"Frame.d.ts","sourceRoot":"","sources":["../../../../src/bidi/Frame.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,IAAI,MAAM,4CAA4C,CAAC;AAgBnE,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,sBAAsB,CAAC;AACrD,OAAO,EACL,KAAK,EAEL,KAAK,WAAW,EAChB,KAAK,cAAc,EACpB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC;AAOtD,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,8BAA8B,CAAC;AAClE,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,oBAAoB,CAAC;AASlD,OAAO,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AAC/C,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,2BAA2B,CAAC;AAK/D,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,oBAAoB,CAAC;AAG1D,OAAO,KAAK,EAAC,gBAAgB,EAAC,MAAM,mBAAmB,CAAC;AAExD,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,WAAW,CAAC;AACxC,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAC,cAAc,EAAC,MAAM,YAAY,CAAC;AAmB1C,qBAAa,SAAU,SAAQ,KAAK;;IAClC,MAAM,CAAC,IAAI,CACT,MAAM,EAAE,QAAQ,GAAG,SAAS,EAC5B,eAAe,EAAE,eAAe,GAC/B,SAAS;IAOZ,QAAQ,CAAC,eAAe,EAAE,eAAe,CAAC;IAE1C,QAAQ,CAAC,MAAM,EAAE;QAAC,OAAO,EAAE,cAAc,CAAC;QAAC,QAAQ,EAAE,cAAc,CAAA;KAAC,CAAC;IAErE,SAAkB,GAAG,EAAE,MAAM,CAAC;IAC9B,SAAkB,MAAM,EAAE,cAAc,CAAC;IACzC,SAAkB,aAAa,EAAE,aAAa,CAAC;IAE/C,OAAO;IAwJP,IAAI,eAAe,IAAI,eAAe,CAErC;IAEQ,SAAS,IAAI,cAAc;IAI3B,aAAa,IAAI,cAAc;IAIxC,KAAK,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS;IAS/B,IAAI,IAAI,QAAQ;IAQhB,GAAG,IAAI,MAAM;IAIb,WAAW,IAAI,SAAS,GAAG,IAAI;IAO/B,WAAW,IAAI,SAAS,EAAE;IAuBpB,IAAI,CACjB,GAAG,EAAE,MAAM,EACX,OAAO,GAAE,WAAgB,GACxB,OAAO,CAAC,gBAAgB,GAAG,IAAI,CAAC;IAyCpB,UAAU,CACvB,IAAI,EAAE,MAAM,EACZ,OAAO,GAAE,cAAmB,GAC3B,OAAO,CAAC,IAAI,CAAC;IAaD,iBAAiB,CAC9B,OAAO,GAAE,cAAmB,GAC3B,OAAO,CAAC,gBAAgB,GAAG,IAAI,CAAC;IAqG1B,mBAAmB,IAAI,KAAK;IAIrC,IAAa,QAAQ,IAAI,OAAO,CAE/B;IAGK,cAAc,CAAC,IAAI,SAAS,OAAO,EAAE,EAAE,GAAG,EAC9C,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,CAAC,GAAG,IAAI,EAAE,IAAI,KAAK,SAAS,CAAC,GAAG,CAAC,GACvC,OAAO,CAAC,IAAI,CAAC;IAUV,qBAAqB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAYlD,gBAAgB,IAAI,OAAO,CAAC,UAAU,CAAC;IAqFvC,QAAQ,CAAC,OAAO,EAAE,iBAAiB,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IASpE,WAAW,CACf,OAAO,EAAE,iBAAiB,EAC1B,OAAO,EAAE,IAAI,CAAC,eAAe,CAAC,OAAO,GACpC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,eAAe,EAAE,CAAC;CAO1C"}
|
@@ -181,7 +181,7 @@ let BidiFrame = (() => {
|
|
181
181
|
default: Realm_js_1.BidiFrameRealm.from(this.browsingContext.defaultRealm, this),
|
182
182
|
internal: Realm_js_1.BidiFrameRealm.from(this.browsingContext.createWindowRealm(`__puppeteer_internal_${Math.ceil(Math.random() * 10000)}`), this),
|
183
183
|
};
|
184
|
-
this.accessibility = new Accessibility_js_1.Accessibility(this.realms.default);
|
184
|
+
this.accessibility = new Accessibility_js_1.Accessibility(this.realms.default, this._id);
|
185
185
|
}
|
186
186
|
#initialize() {
|
187
187
|
for (const browsingContext of this.browsingContext.children) {
|
@@ -345,6 +345,9 @@ let BidiFrame = (() => {
|
|
345
345
|
if (error.message.includes('navigation canceled')) {
|
346
346
|
return;
|
347
347
|
}
|
348
|
+
if (error.message.includes('Navigation was aborted by another navigation')) {
|
349
|
+
return;
|
350
|
+
}
|
348
351
|
throw error;
|
349
352
|
}),
|
350
353
|
]).catch((0, util_js_2.rewriteNavigationError)(url, options.timeout ?? this.timeoutSettings.navigationTimeout()));
|
@@ -365,9 +368,14 @@ let BidiFrame = (() => {
|
|
365
368
|
return frame.#detached$();
|
366
369
|
});
|
367
370
|
return await (0, rxjs_js_1.firstValueFrom)((0, rxjs_js_1.combineLatest)([
|
368
|
-
(0, util_js_1.fromEmitterEvent)(this.browsingContext, 'navigation')
|
371
|
+
(0, rxjs_js_1.race)((0, util_js_1.fromEmitterEvent)(this.browsingContext, 'navigation'), (0, util_js_1.fromEmitterEvent)(this.browsingContext, 'historyUpdated').pipe((0, rxjs_js_1.map)(() => {
|
372
|
+
return { navigation: null };
|
373
|
+
})))
|
369
374
|
.pipe((0, rxjs_js_1.first)())
|
370
375
|
.pipe((0, rxjs_js_1.switchMap)(({ navigation }) => {
|
376
|
+
if (navigation === null) {
|
377
|
+
return (0, rxjs_js_1.of)(null);
|
378
|
+
}
|
371
379
|
return this.#waitForLoad$(options).pipe((0, rxjs_js_1.delayWhen)(() => {
|
372
380
|
if (frames.length === 0) {
|
373
381
|
return (0, rxjs_js_1.of)(undefined);
|
@@ -378,6 +386,9 @@ let BidiFrame = (() => {
|
|
378
386
|
}))), (0, rxjs_js_1.switchMap)(() => {
|
379
387
|
if (navigation.request) {
|
380
388
|
function requestFinished$(request) {
|
389
|
+
if (navigation === null) {
|
390
|
+
return (0, rxjs_js_1.of)(null);
|
391
|
+
}
|
381
392
|
// Reduces flakiness if the response events arrive after
|
382
393
|
// the load event.
|
383
394
|
// Usually, the response or error is already there at this point.
|
@@ -400,6 +411,9 @@ let BidiFrame = (() => {
|
|
400
411
|
})),
|
401
412
|
this.#waitForNetworkIdle$(options),
|
402
413
|
]).pipe((0, rxjs_js_1.map)(([navigation]) => {
|
414
|
+
if (!navigation) {
|
415
|
+
return null;
|
416
|
+
}
|
403
417
|
const request = navigation.request;
|
404
418
|
if (!request) {
|
405
419
|
return null;
|
@@ -422,8 +436,8 @@ let BidiFrame = (() => {
|
|
422
436
|
if (this.#exposedFunctions.has(name)) {
|
423
437
|
throw new Error(`Failed to add page binding with name ${name}: globalThis['${name}'] already exists!`);
|
424
438
|
}
|
425
|
-
const
|
426
|
-
this.#exposedFunctions.set(name,
|
439
|
+
const exposable = await ExposedFunction_js_1.ExposableFunction.from(this, name, apply);
|
440
|
+
this.#exposedFunctions.set(name, exposable);
|
427
441
|
}
|
428
442
|
async removeExposedFunction(name) {
|
429
443
|
const exposedFunction = this.#exposedFunctions.get(name);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Frame.js","sourceRoot":"","sources":["../../../../src/bidi/Frame.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"Frame.js","sourceRoot":"","sources":["../../../../src/bidi/Frame.ts"],"names":[],"mappings":"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"}
|