chrome-devtools-frontend 1.0.937244 → 1.0.939066
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/.stylelintrc.json +15 -11
- package/config/gni/all_devtools_files.gni +0 -19
- package/config/gni/devtools_grd_files.gni +2 -9
- package/front_end/Images/whatsnew.avif +0 -0
- package/front_end/Tests.js +30 -30
- package/front_end/core/host/InspectorFrontendHost.ts +16 -30
- package/front_end/core/host/InspectorFrontendHostAPI.ts +1 -0
- package/front_end/core/host/UserMetrics.ts +25 -0
- package/front_end/core/i18n/locales/en-US.json +4 -1
- package/front_end/core/i18n/locales/en-XL.json +4 -1
- package/front_end/core/platform/string-utilities.ts +23 -0
- package/front_end/core/sdk/DOMModel.ts +1 -1
- package/front_end/core/sdk/EmulationModel.ts +11 -0
- package/front_end/core/sdk/NetworkManager.ts +1 -0
- package/front_end/core/sdk/sdk-meta.ts +30 -1
- package/front_end/entrypoints/devtools_app/devtools_app.json +0 -4
- package/front_end/entrypoints/inspector_main/RenderingOptions.ts +9 -2
- package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +0 -3
- package/front_end/entrypoints/inspector_main/renderingOptions.css +2 -2
- package/front_end/entrypoints/lighthouse_worker/LighthouseService.ts +3 -1
- package/front_end/entrypoints/main/MainImpl.ts +15 -0
- package/front_end/entrypoints/main/main-meta.ts +0 -2
- package/front_end/entrypoints/node_app/node_app-meta.ts +0 -3
- package/front_end/entrypoints/node_app/node_app.js +3 -0
- package/front_end/entrypoints/node_main/nodeConnectionsPanel.css +2 -2
- package/front_end/entrypoints/shell/shell.json +3 -7
- package/front_end/entrypoints/worker_app/worker_app.json +0 -2
- package/front_end/generated/InspectorBackendCommands.js +14 -5
- package/front_end/generated/SupportedCSSProperties.js +8 -4
- package/front_end/generated/protocol-mapping.d.ts +10 -0
- package/front_end/generated/protocol-proxy-api.d.ts +19 -0
- package/front_end/generated/protocol.d.ts +56 -1
- package/front_end/legacy_test_runner/test_runner/test_runner.js +2 -4
- package/front_end/models/issues_manager/DeprecationIssue.ts +67 -0
- package/front_end/models/issues_manager/IssuesManager.ts +5 -0
- package/front_end/models/issues_manager/descriptions/deprecation.md +3 -0
- package/front_end/models/issues_manager/issues_manager.ts +2 -0
- package/front_end/models/persistence/editFileSystemView.css +1 -1
- package/front_end/models/persistence/workspaceSettingsTab.css +1 -1
- package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +8 -1
- package/front_end/panels/accessibility/accessibility-meta.ts +0 -3
- package/front_end/panels/accessibility/accessibilityNode.css +2 -2
- package/front_end/panels/accessibility/axBreadcrumbs.css +1 -1
- package/front_end/panels/animation/animationTimeline.css +5 -5
- package/front_end/panels/application/components/ReportsGrid.ts +38 -4
- package/front_end/panels/application/components/frameDetailsReportView.css +1 -1
- package/front_end/panels/application/components/reportingApiGrid.css +4 -0
- package/front_end/panels/application/module.json +1 -3
- package/front_end/panels/application/resourcesPanel.css +1 -1
- package/front_end/panels/application/resourcesSidebar.css +1 -1
- package/front_end/panels/browser_debugger/browser_debugger-meta.ts +0 -5
- package/front_end/panels/browser_debugger/xhrBreakpointsSidebarPane.css +2 -5
- package/front_end/panels/changes/changesSidebar.css +1 -1
- package/front_end/panels/changes/changesView.css +2 -2
- package/front_end/panels/console/console-meta.ts +1 -3
- package/front_end/panels/console/consolePrompt.css +1 -1
- package/front_end/panels/console/consoleSidebar.css +4 -4
- package/front_end/panels/console/consoleView.css +2 -2
- package/front_end/panels/coverage/coverage-meta.ts +0 -3
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +18 -17
- package/front_end/panels/css_overview/CSSOverviewPanel.ts +31 -10
- package/front_end/panels/css_overview/components/cssOverviewStartView.css +1 -1
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +8 -8
- package/front_end/panels/elements/StylePropertyTreeElement.ts +3 -0
- package/front_end/panels/elements/classesPaneWidget.css +1 -1
- package/front_end/panels/elements/components/adornerSettingsPane.css +1 -1
- package/front_end/panels/elements/computedStyleWidgetTree.css +1 -1
- package/front_end/panels/elements/elements-meta.ts +0 -2
- package/front_end/panels/elements/elementsPanel.css +1 -1
- package/front_end/panels/elements/elementsTreeOutline.css +1 -1
- package/front_end/panels/elements/layoutPane.css +1 -1
- package/front_end/panels/elements/platformFontsWidget.css +1 -1
- package/front_end/panels/elements/stylesSectionTree.css +1 -1
- package/front_end/panels/elements/stylesSidebarPane.css +8 -0
- package/front_end/panels/event_listeners/EventListenersView.ts +5 -4
- package/front_end/panels/event_listeners/eventListenersView.css +3 -2
- package/front_end/panels/help/ReleaseNoteText.ts +28 -0
- package/front_end/panels/issues/IssueKindView.ts +0 -6
- package/front_end/panels/issues/IssueView.ts +19 -27
- package/front_end/panels/issues/components/HideIssuesMenu.ts +7 -11
- package/front_end/panels/issues/components/hideIssuesMenu.css +8 -0
- package/front_end/panels/issues/issuesTree.css +28 -5
- package/front_end/panels/lighthouse/lighthouseStartView.css +2 -2
- package/front_end/panels/lighthouse/module.json +0 -1
- package/front_end/panels/media/module.json +0 -1
- package/front_end/panels/media/playerListView.css +1 -1
- package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +1 -1
- package/front_end/panels/network/NetworkSearchScope.ts +3 -1
- package/front_end/panels/network/blockedURLsPane.css +1 -1
- package/front_end/panels/network/module.json +0 -1
- package/front_end/panels/network/networkConfigView.css +1 -1
- package/front_end/panels/network/networkLogView.css +3 -3
- package/front_end/panels/profiler/profileLauncherView.css +3 -3
- package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +3 -0
- package/front_end/panels/protocol_monitor/protocol_monitor-meta.ts +0 -2
- package/front_end/panels/security/mainView.css +2 -2
- package/front_end/panels/security/originView.css +1 -1
- package/front_end/panels/sensors/sensors.css +2 -2
- package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +1 -1
- package/front_end/panels/settings/emulation/devicesSettingsTab.css +4 -4
- package/front_end/panels/settings/frameworkIgnoreListSettingsTab.css +1 -1
- package/front_end/panels/settings/settingsScreen.css +2 -2
- package/front_end/panels/sources/CoveragePlugin.ts +7 -2
- package/front_end/panels/sources/JavaScriptBreakpointsSidebarPane.ts +14 -17
- package/front_end/panels/sources/callStackSidebarPane.css +1 -1
- package/front_end/panels/sources/dialog.css +1 -1
- package/front_end/panels/sources/javaScriptBreakpointsSidebarPane.css +19 -45
- package/front_end/panels/sources/navigatorTree.css +4 -4
- package/front_end/panels/sources/sources-meta.ts +0 -2
- package/front_end/panels/sources/sourcesPanel.css +2 -2
- package/front_end/panels/sources/threadsSidebarPane.css +1 -1
- package/front_end/panels/timeline/components/WebVitalsTooltip.css +1 -1
- package/front_end/panels/timeline/historyToolbarButton.css +1 -1
- package/front_end/panels/timeline/module.json +0 -1
- package/front_end/panels/timeline/timelineStatusDialog.css +1 -1
- package/front_end/panels/webauthn/webauthnPane.css +2 -2
- package/front_end/third_party/puppeteer/package/CHANGELOG.md +29 -0
- package/front_end/third_party/puppeteer/package/README.md +12 -14
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Browser.d.ts +2 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Browser.js +13 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js +2 -2
- 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/Connection.d.ts +10 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Connection.js +25 -7
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Coverage.js +6 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Coverage.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.d.ts +3 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.js +16 -12
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Dialog.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Dialog.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.d.ts +10 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.js +9 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EventEmitter.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EventEmitter.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ExecutionContext.js +8 -8
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ExecutionContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.d.ts +21 -9
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js +155 -72
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts +5 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js +32 -29
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js +14 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Input.d.ts +2 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Input.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Input.js +3 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Input.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.js +13 -12
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.js +2 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.d.ts +33 -4
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.js +92 -46
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Puppeteer.js +5 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Puppeteer.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Target.d.ts +3 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Target.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Target.js +3 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Target.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TaskQueue.d.ts +21 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TaskQueue.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TaskQueue.js +30 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TaskQueue.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Tracing.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Tracing.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/helper.js +5 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/helper.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.js +14 -14
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.js +11 -5
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts +4 -0
- 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/Launcher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js +30 -15
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Puppeteer.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Puppeteer.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node-puppeteer-core.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node-puppeteer-core.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/web.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/web.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts +2 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.js +9 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts +10 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.js +22 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts +3 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js +6 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts +10 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts +21 -9
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js +150 -68
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts +5 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js +22 -19
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js +15 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts +2 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.js +2 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts +3 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js +2 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js +1 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts +33 -4
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js +69 -23
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts +3 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.js +3 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TaskQueue.d.ts +21 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TaskQueue.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TaskQueue.js +26 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TaskQueue.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js +7 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +4 -0
- 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/Launcher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js +27 -12
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/types.d.ts +3862 -3771
- package/front_end/third_party/puppeteer/package/package.json +33 -40
- package/front_end/ui/components/adorners/adorner.css +1 -1
- package/front_end/ui/components/data_grid/DataGrid.ts +3 -1
- package/front_end/ui/components/data_grid/DataGridUtils.ts +8 -5
- package/front_end/ui/components/data_grid/dataGrid.css +0 -5
- package/front_end/ui/components/expandable_list/expandableList.css +1 -1
- package/front_end/ui/components/icon_button/iconButton.css +1 -0
- package/front_end/ui/components/linear_memory_inspector/valueInterpreterDisplay.css +1 -2
- package/front_end/ui/components/linear_memory_inspector/valueInterpreterSettings.css +1 -1
- package/front_end/ui/components/report_view/reportKey.css +1 -1
- package/front_end/ui/components/report_view/reportValue.css +1 -1
- package/front_end/ui/components/settings/settingCheckbox.css +1 -1
- package/front_end/ui/legacy/ContextMenu.ts +10 -3
- package/front_end/ui/legacy/ListWidget.ts +2 -4
- package/front_end/ui/legacy/SoftContextMenu.ts +9 -2
- package/front_end/ui/legacy/XLink.ts +6 -6
- package/front_end/ui/legacy/checkboxTextLabel.css +2 -2
- package/front_end/ui/legacy/components/color_picker/spectrum.css +9 -9
- package/front_end/ui/legacy/components/data_grid/dataGrid.css +2 -2
- package/front_end/ui/legacy/components/inline_editor/cssAngleEditor.css +3 -3
- package/front_end/ui/legacy/components/inline_editor/cssLength.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/cssShadowEditor.css +1 -1
- package/front_end/ui/legacy/components/inline_editor/fontEditor.css +1 -1
- package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +2 -2
- package/front_end/ui/legacy/components/perf_ui/module.json +1 -3
- package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +13 -7
- package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +2 -2
- package/front_end/ui/legacy/components/source_frame/imageView.css +1 -1
- package/front_end/ui/legacy/components/source_frame/module.json +0 -1
- package/front_end/ui/legacy/components/text_editor/cmdevtools.css +6 -14
- package/front_end/ui/legacy/emptyWidget.css +1 -1
- package/front_end/ui/legacy/filter.css +1 -1
- package/front_end/ui/legacy/infobar.css +2 -2
- package/front_end/ui/legacy/inspectorCommon.css +46 -46
- package/front_end/ui/legacy/inspectorSyntaxHighlight.css +4 -4
- package/front_end/ui/legacy/inspectorSyntaxHighlightDark.css +1 -1
- package/front_end/ui/legacy/inspectorViewTabbedPane.css +1 -1
- package/front_end/ui/legacy/searchableView.css +1 -1
- package/front_end/ui/legacy/softContextMenu.css +11 -1
- package/front_end/ui/legacy/tabbedPane.css +5 -0
- package/front_end/ui/legacy/textPrompt.css +1 -1
- package/front_end/ui/legacy/themeColors.css +1 -0
- package/front_end/ui/legacy/toolbar.css +8 -8
- package/front_end/ui/legacy/treeoutline.css +20 -4
- package/front_end/ui/legacy/viewContainers.css +6 -1
- package/inspector_overlay/common.css +2 -2
- package/inspector_overlay/tool_highlight.css +1 -1
- package/inspector_overlay/tool_paused.css +2 -2
- package/package.json +1 -1
- package/scripts/build/ninja/copy-file.js +10 -1
- package/scripts/build/ninja/copy-files.js +10 -1
- package/scripts/eslint_rules/lib/check_test_definitions.js +2 -1
- package/scripts/eslint_rules/lib/es_modules_import.js +21 -20
- package/scripts/eslint_rules/lib/l10n_filename_matches.js +4 -3
- package/scripts/eslint_rules/lib/migrate_create_shadow_root_with_styles.js +2 -2
- package/scripts/eslint_rules/lib/migrate_register_required_css.js +1 -1
- package/scripts/eslint_rules/tests/check_test_definitions_test.js +34 -0
- package/scripts/eslint_rules/tests/es_modules_import_test.js +3 -2
- package/scripts/eslint_rules/tests/migrate_create_shadow_root_with_styles_test.js +1 -1
- package/scripts/eslint_rules/tests/migrate_register_required_css_test.js +1 -1
- package/front_end/entrypoints/inspector_main/module.json +0 -9
- package/front_end/panels/accessibility/module.json +0 -7
- package/front_end/panels/browser_debugger/module.json +0 -7
- package/front_end/panels/console/module.json +0 -6
- package/front_end/panels/coverage/module.json +0 -6
- package/front_end/panels/elements/module.json +0 -6
- package/front_end/panels/protocol_monitor/module.json +0 -6
- package/front_end/panels/sources/module.json +0 -7
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
devtools-text-prompt {
|
|
31
31
|
flex: 0 0 40px;
|
|
32
32
|
font-size: 14px;
|
|
33
|
-
font-family:
|
|
33
|
+
font-family: ".SFNSDisplay-Regular", "Helvetica Neue", "Lucida Grande", sans-serif;
|
|
34
34
|
line-height: 16px;
|
|
35
35
|
padding: 12px;
|
|
36
36
|
}
|
|
@@ -80,7 +80,7 @@ devtools-text-prompt {
|
|
|
80
80
|
color: var(--color-text-primary);
|
|
81
81
|
display: flex;
|
|
82
82
|
border-bottom: 1px solid var(--color-details-hairline-light);
|
|
83
|
-
font-family:
|
|
83
|
+
font-family: ".SFNSDisplay-Regular", "Helvetica Neue", "Lucida Grande", sans-serif;
|
|
84
84
|
padding-left: 8px;
|
|
85
85
|
padding-right: 8px;
|
|
86
86
|
}
|
|
@@ -650,12 +650,8 @@ div.CodeMirror:focus-within span.CodeMirror-nonmatchingbracket {
|
|
|
650
650
|
|
|
651
651
|
.cm-search-highlight::before {
|
|
652
652
|
position: absolute;
|
|
653
|
-
border-top
|
|
654
|
-
border-bottom
|
|
655
|
-
border-top-color: var(--override-search-highlight-border-color);
|
|
656
|
-
border-bottom-color: var(--override-search-highlight-border-color);
|
|
657
|
-
border-top-width: 1px;
|
|
658
|
-
border-bottom-width: 1px;
|
|
653
|
+
border-top: 1px solid var(--override-search-highlight-border-color);
|
|
654
|
+
border-bottom: 1px solid var(--override-search-highlight-border-color);
|
|
659
655
|
top: -1px;
|
|
660
656
|
bottom: 0;
|
|
661
657
|
left: 0;
|
|
@@ -669,19 +665,15 @@ div.CodeMirror:focus-within span.CodeMirror-nonmatchingbracket {
|
|
|
669
665
|
}
|
|
670
666
|
|
|
671
667
|
.cm-search-highlight-start::before {
|
|
672
|
-
border-left
|
|
668
|
+
border-left: 1px solid var(--override-search-highlight-border-color);
|
|
673
669
|
border-top-left-radius: 2px;
|
|
674
670
|
border-bottom-left-radius: 2px;
|
|
675
|
-
border-left-style: solid;
|
|
676
|
-
border-left-color: var(--override-search-highlight-border-color);
|
|
677
671
|
}
|
|
678
672
|
|
|
679
673
|
.cm-search-highlight-end::before {
|
|
680
|
-
border-right
|
|
674
|
+
border-right: 1px solid var(--override-search-highlight-border-color);
|
|
681
675
|
border-top-right-radius: 2px;
|
|
682
676
|
border-bottom-right-radius: 2px;
|
|
683
|
-
border-right-style: solid;
|
|
684
|
-
border-right-color: var(--override-search-highlight-border-color);
|
|
685
677
|
}
|
|
686
678
|
|
|
687
679
|
.cm-line-with-selection .cm-column-with-selection.cm-search-highlight-full::before {
|
|
@@ -701,7 +693,7 @@ div.CodeMirror:focus-within span.CodeMirror-nonmatchingbracket {
|
|
|
701
693
|
.cm-line-with-selection .cm-column-with-selection.cm-search-highlight::before {
|
|
702
694
|
--override-auto-gen-cmlinewithselectioncmcolumnwithselectioncmsearchhighlightbefore-backgroundcolor: rgb(241 234 0);
|
|
703
695
|
|
|
704
|
-
margin: -1px
|
|
696
|
+
margin: -1px;
|
|
705
697
|
background-color: var(--override-auto-gen-cmlinewithselectioncmcolumnwithselectioncmsearchhighlightbefore-backgroundcolor);
|
|
706
698
|
z-index: -1;
|
|
707
699
|
}
|
|
@@ -933,7 +925,7 @@ div.CodeMirror:focus-within span.CodeMirror-nonmatchingbracket {
|
|
|
933
925
|
}
|
|
934
926
|
|
|
935
927
|
.CodeMirror-foldmarker::before {
|
|
936
|
-
content:
|
|
928
|
+
content: "\2026";
|
|
937
929
|
font-size: 13px;
|
|
938
930
|
color: var(--color-text-secondary);
|
|
939
931
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
border-bottom: 1px solid var(--color-details-hairline);
|
|
12
12
|
flex-direction: column;
|
|
13
13
|
position: relative;
|
|
14
|
-
padding: 1px 6px
|
|
14
|
+
padding: 1px 6px;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.infobar:focus {
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.infobar-details-rows {
|
|
58
|
-
padding: 5px 5px 0
|
|
58
|
+
padding: 5px 5px 0;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
.infobar-details-row {
|
|
@@ -85,7 +85,7 @@ body {
|
|
|
85
85
|
overflow: hidden;
|
|
86
86
|
margin: 0;
|
|
87
87
|
cursor: default;
|
|
88
|
-
font-family:
|
|
88
|
+
font-family: ".SFNSDisplay-Regular", "Helvetica Neue", "Lucida Grande", sans-serif;
|
|
89
89
|
font-size: 12px;
|
|
90
90
|
tab-size: 4;
|
|
91
91
|
user-select: none;
|
|
@@ -99,7 +99,7 @@ body {
|
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
.platform-mac {
|
|
102
|
-
font-family:
|
|
102
|
+
font-family: ".SFNSDisplay-Regular", "Helvetica Neue", "Lucida Grande", sans-serif;
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
.platform-mac,
|
|
@@ -110,7 +110,7 @@ body {
|
|
|
110
110
|
}
|
|
111
111
|
|
|
112
112
|
.platform-windows {
|
|
113
|
-
font-family:
|
|
113
|
+
font-family: "Segoe UI", Tahoma, sans-serif;
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
:focus {
|
|
@@ -288,12 +288,12 @@ input::placeholder {
|
|
|
288
288
|
}
|
|
289
289
|
|
|
290
290
|
:host-context(.-theme-with-dark-background) input[type="checkbox"]:not(.-theme-preserve) {
|
|
291
|
-
|
|
291
|
+
accent-color: var(--color-checkbox-accent-color);
|
|
292
292
|
}
|
|
293
293
|
|
|
294
294
|
.harmony-input:not([type]),
|
|
295
|
-
.harmony-input[type=number],
|
|
296
|
-
.harmony-input[type=text] {
|
|
295
|
+
.harmony-input[type="number"],
|
|
296
|
+
.harmony-input[type="text"] {
|
|
297
297
|
padding: 3px 6px;
|
|
298
298
|
height: 24px;
|
|
299
299
|
border: none;
|
|
@@ -301,23 +301,23 @@ input::placeholder {
|
|
|
301
301
|
}
|
|
302
302
|
|
|
303
303
|
.harmony-input:not([type]).error-input,
|
|
304
|
-
.harmony-input[type=number].error-input,
|
|
305
|
-
.harmony-input[type=text].error-input,
|
|
304
|
+
.harmony-input[type="number"].error-input,
|
|
305
|
+
.harmony-input[type="text"].error-input,
|
|
306
306
|
.harmony-input:not([type]):invalid,
|
|
307
|
-
.harmony-input[type=number]:invalid,
|
|
308
|
-
.harmony-input[type=text]:invalid {
|
|
307
|
+
.harmony-input[type="number"]:invalid,
|
|
308
|
+
.harmony-input[type="text"]:invalid {
|
|
309
309
|
box-shadow: 0 0 0 1px var(--color-red);
|
|
310
310
|
}
|
|
311
311
|
|
|
312
312
|
.harmony-input:not([type]):not(.error-input):not(:invalid):hover,
|
|
313
|
-
.harmony-input[type=number]:not(.error-input):not(:invalid):hover,
|
|
314
|
-
.harmony-input[type=text]:not(.error-input):not(:invalid):hover {
|
|
313
|
+
.harmony-input[type="number"]:not(.error-input):not(:invalid):hover,
|
|
314
|
+
.harmony-input[type="text"]:not(.error-input):not(:invalid):hover {
|
|
315
315
|
box-shadow: var(--legacy-focus-ring-inactive-shadow);
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
.harmony-input:not([type]):not(.error-input):not(:invalid):focus,
|
|
319
|
-
.harmony-input[type=number]:not(.error-input):not(:invalid):focus,
|
|
320
|
-
.harmony-input[type=text]:not(.error-input):not(:invalid):focus {
|
|
319
|
+
.harmony-input[type="number"]:not(.error-input):not(:invalid):focus,
|
|
320
|
+
.harmony-input[type="text"]:not(.error-input):not(:invalid):focus {
|
|
321
321
|
box-shadow: var(--legacy-focus-ring-active-shadow);
|
|
322
322
|
}
|
|
323
323
|
|
|
@@ -426,7 +426,7 @@ input::placeholder {
|
|
|
426
426
|
/* This class is used outside of the settings screen in the "Renderer" and
|
|
427
427
|
"Sensors" panel. As such we need to override their style globally */
|
|
428
428
|
.settings-select {
|
|
429
|
-
margin: 0
|
|
429
|
+
margin: 0;
|
|
430
430
|
}
|
|
431
431
|
|
|
432
432
|
.chrome-select optgroup,
|
|
@@ -443,7 +443,7 @@ input::placeholder {
|
|
|
443
443
|
white-space: nowrap;
|
|
444
444
|
}
|
|
445
445
|
|
|
446
|
-
span[is=dt-icon-label] {
|
|
446
|
+
span[is="dt-icon-label"] {
|
|
447
447
|
flex: none;
|
|
448
448
|
}
|
|
449
449
|
|
|
@@ -469,29 +469,29 @@ span[is=dt-icon-label] {
|
|
|
469
469
|
z-index: 500;
|
|
470
470
|
}
|
|
471
471
|
|
|
472
|
-
[is=ui-icon] {
|
|
472
|
+
[is="ui-icon"] {
|
|
473
473
|
display: inline-block;
|
|
474
474
|
flex-shrink: 0;
|
|
475
475
|
}
|
|
476
476
|
|
|
477
|
-
.-theme-with-dark-background [is=ui-icon].icon-invert,
|
|
478
|
-
:host-context(.-theme-with-dark-background) [is=ui-icon].icon-invert {
|
|
477
|
+
.-theme-with-dark-background [is="ui-icon"].icon-invert,
|
|
478
|
+
:host-context(.-theme-with-dark-background) [is="ui-icon"].icon-invert {
|
|
479
479
|
filter: invert(80%) hue-rotate(180deg);
|
|
480
480
|
}
|
|
481
481
|
|
|
482
|
-
[is=ui-icon].icon-mask {
|
|
482
|
+
[is="ui-icon"].icon-mask {
|
|
483
483
|
--override-icon-mask-background-color: rgb(110 110 110);
|
|
484
484
|
|
|
485
485
|
background-color: var(--override-icon-mask-background-color);
|
|
486
486
|
-webkit-mask-position: var(--spritesheet-position);
|
|
487
487
|
}
|
|
488
488
|
|
|
489
|
-
.-theme-with-dark-background [is=ui-icon].icon-mask,
|
|
490
|
-
:host-context(.-theme-with-dark-background) [is=ui-icon].icon-mask {
|
|
489
|
+
.-theme-with-dark-background [is="ui-icon"].icon-mask,
|
|
490
|
+
:host-context(.-theme-with-dark-background) [is="ui-icon"].icon-mask {
|
|
491
491
|
--override-icon-mask-background-color: rgb(145 145 145);
|
|
492
492
|
}
|
|
493
493
|
|
|
494
|
-
[is=ui-icon]:not(.icon-mask) {
|
|
494
|
+
[is="ui-icon"]:not(.icon-mask) {
|
|
495
495
|
background-position: var(--spritesheet-position);
|
|
496
496
|
}
|
|
497
497
|
|
|
@@ -523,27 +523,27 @@ span[is=dt-icon-label] {
|
|
|
523
523
|
background-image: var(--image-file-popoverArrows);
|
|
524
524
|
}
|
|
525
525
|
|
|
526
|
-
.force-white-icons [is=ui-icon].spritesheet-smallicons,
|
|
527
|
-
:host-context(.force-white-icons) [is=ui-icon].spritesheet-smallicons,
|
|
528
|
-
[is=ui-icon].force-white-icons.spritesheet-smallicons,
|
|
526
|
+
.force-white-icons [is="ui-icon"].spritesheet-smallicons,
|
|
527
|
+
:host-context(.force-white-icons) [is="ui-icon"].spritesheet-smallicons,
|
|
528
|
+
[is="ui-icon"].force-white-icons.spritesheet-smallicons,
|
|
529
529
|
.-theme-preserve {
|
|
530
530
|
-webkit-mask-image: var(--image-file-smallIcons);
|
|
531
531
|
-webkit-mask-position: var(--spritesheet-position);
|
|
532
532
|
background: var(--override-force-white-icons-background) !important; /* stylelint-disable-line declaration-no-important */
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
-
.force-white-icons [is=ui-icon].spritesheet-largeicons,
|
|
536
|
-
:host-context(.force-white-icons) [is=ui-icon].spritesheet-largeicons,
|
|
537
|
-
[is=ui-icon].force-white-icons.spritesheet-largeicons,
|
|
535
|
+
.force-white-icons [is="ui-icon"].spritesheet-largeicons,
|
|
536
|
+
:host-context(.force-white-icons) [is="ui-icon"].spritesheet-largeicons,
|
|
537
|
+
[is="ui-icon"].force-white-icons.spritesheet-largeicons,
|
|
538
538
|
.-theme-preserve {
|
|
539
539
|
-webkit-mask-image: var(--image-file-largeIcons);
|
|
540
540
|
-webkit-mask-position: var(--spritesheet-position);
|
|
541
541
|
background: var(--override-force-white-icons-background) !important; /* stylelint-disable-line declaration-no-important */
|
|
542
542
|
}
|
|
543
543
|
|
|
544
|
-
.force-white-icons [is=ui-icon].spritesheet-mediumicons,
|
|
545
|
-
:host-context(.force-white-icons) [is=ui-icon].spritesheet-mediumicons,
|
|
546
|
-
[is=ui-icon].force-white-icons.spritesheet-mediumicons,
|
|
544
|
+
.force-white-icons [is="ui-icon"].spritesheet-mediumicons,
|
|
545
|
+
:host-context(.force-white-icons) [is="ui-icon"].spritesheet-mediumicons,
|
|
546
|
+
[is="ui-icon"].force-white-icons.spritesheet-mediumicons,
|
|
547
547
|
.-theme-preserve {
|
|
548
548
|
-webkit-mask-image: var(--image-file-mediumIcons);
|
|
549
549
|
-webkit-mask-position: var(--spritesheet-position);
|
|
@@ -635,30 +635,30 @@ button.link:focus-visible {
|
|
|
635
635
|
opacity: 100%;
|
|
636
636
|
}
|
|
637
637
|
|
|
638
|
-
[is=ui-icon].icon-mask,
|
|
639
|
-
.force-white-icons [is=ui-icon].spritesheet-smallicons,
|
|
640
|
-
:host-context(.force-white-icons) [is=ui-icon].spritesheet-smallicons,
|
|
641
|
-
[is=ui-icon].force-white-icons.spritesheet-smallicons,
|
|
642
|
-
.force-white-icons [is=ui-icon].spritesheet-largeicons,
|
|
643
|
-
:host-context(.force-white-icons) [is=ui-icon].spritesheet-largeicons,
|
|
644
|
-
[is=ui-icon].force-white-icons.spritesheet-largeicons,
|
|
645
|
-
.force-white-icons [is=ui-icon].spritesheet-mediumicons,
|
|
646
|
-
:host-context(.force-white-icons) [is=ui-icon].spritesheet-mediumicons,
|
|
647
|
-
[is=ui-icon].force-white-icons.spritesheet-mediumicons,
|
|
638
|
+
[is="ui-icon"].icon-mask,
|
|
639
|
+
.force-white-icons [is="ui-icon"].spritesheet-smallicons,
|
|
640
|
+
:host-context(.force-white-icons) [is="ui-icon"].spritesheet-smallicons,
|
|
641
|
+
[is="ui-icon"].force-white-icons.spritesheet-smallicons,
|
|
642
|
+
.force-white-icons [is="ui-icon"].spritesheet-largeicons,
|
|
643
|
+
:host-context(.force-white-icons) [is="ui-icon"].spritesheet-largeicons,
|
|
644
|
+
[is="ui-icon"].force-white-icons.spritesheet-largeicons,
|
|
645
|
+
.force-white-icons [is="ui-icon"].spritesheet-mediumicons,
|
|
646
|
+
:host-context(.force-white-icons) [is="ui-icon"].spritesheet-mediumicons,
|
|
647
|
+
[is="ui-icon"].force-white-icons.spritesheet-mediumicons,
|
|
648
648
|
.-theme-preserve {
|
|
649
649
|
forced-color-adjust: none;
|
|
650
650
|
background-color: ButtonText;
|
|
651
651
|
}
|
|
652
652
|
|
|
653
653
|
.harmony-input:not([type]),
|
|
654
|
-
.harmony-input[type=number],
|
|
655
|
-
.harmony-input[type=text] {
|
|
654
|
+
.harmony-input[type="number"],
|
|
655
|
+
.harmony-input[type="text"] {
|
|
656
656
|
border: 1px solid ButtonText;
|
|
657
657
|
}
|
|
658
658
|
|
|
659
659
|
.harmony-input:not([type]):focus,
|
|
660
|
-
.harmony-input[type=number]:focus,
|
|
661
|
-
.harmony-input[type=text]:focus {
|
|
660
|
+
.harmony-input[type="number"]:focus,
|
|
661
|
+
.harmony-input[type="text"]:focus {
|
|
662
662
|
border: 1px solid Highlight;
|
|
663
663
|
}
|
|
664
664
|
}
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
|
|
114
114
|
.cm-css-property,
|
|
115
115
|
.webkit-css-property {
|
|
116
|
-
color: rgb(200 0 0); /* stylelint-disable-line plugin/use_theme_colors */ /* See: crbug.com/1152736 for color variable migration. */
|
|
116
|
+
color: var(--webkit-css-property-color, rgb(200 0 0)); /* stylelint-disable-line plugin/use_theme_colors */ /* See: crbug.com/1152736 for color variable migration. */
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
.cm-xml-meta {
|
|
@@ -209,15 +209,15 @@
|
|
|
209
209
|
color: var(--color-link);
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
-
.devtools-link [is=ui-icon] {
|
|
212
|
+
.devtools-link [is="ui-icon"] {
|
|
213
213
|
vertical-align: middle;
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
-
.devtools-link [is=ui-icon].icon-mask {
|
|
216
|
+
.devtools-link [is="ui-icon"].icon-mask {
|
|
217
217
|
background-color: var(--color-link);
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
:focus .selected .devtools-link [is=ui-icon].icon-mask {
|
|
220
|
+
:focus .selected .devtools-link [is="ui-icon"].icon-mask {
|
|
221
221
|
background-color: var(--legacy-item-selection-bg-color);
|
|
222
222
|
}
|
|
223
223
|
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
}
|
|
214
214
|
|
|
215
215
|
.webkit-css-property {
|
|
216
|
-
color: rgb(53 212 199); /* stylelint-disable-line plugin/use_theme_colors */ /* See: crbug.com/1152736 for color variable migration. */
|
|
216
|
+
color: var(--webkit-css-property-color, rgb(53 212 199)); /* stylelint-disable-line plugin/use_theme_colors */ /* See: crbug.com/1152736 for color variable migration. */
|
|
217
217
|
}
|
|
218
218
|
|
|
219
219
|
.cm-def {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
overflow-y: auto;
|
|
12
12
|
min-width: 160px !important; /* stylelint-disable-line declaration-no-important */
|
|
13
13
|
/* NOTE: Keep padding in sync with padding adjustment in SoftContextMenu.js */
|
|
14
|
-
padding: 4px 0
|
|
14
|
+
padding: 4px 0;
|
|
15
15
|
border: 1px solid var(--color-details-hairline);
|
|
16
16
|
background-color: var(--color-background);
|
|
17
17
|
box-shadow: var(--drop-shadow);
|
|
@@ -44,6 +44,12 @@
|
|
|
44
44
|
white-space: nowrap;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
.soft-context-menu-item devtools-icon {
|
|
48
|
+
--icon-color: var(--color-text-secondary);
|
|
49
|
+
|
|
50
|
+
pointer-events: none;
|
|
51
|
+
}
|
|
52
|
+
|
|
47
53
|
.soft-context-menu-disabled {
|
|
48
54
|
color: var(--color-text-disabled);
|
|
49
55
|
pointer-events: none;
|
|
@@ -66,6 +72,10 @@
|
|
|
66
72
|
color: var(--override-context-menu-hover-text-color);
|
|
67
73
|
}
|
|
68
74
|
|
|
75
|
+
.soft-context-menu-item-mouse-over devtools-icon {
|
|
76
|
+
--icon-color: var(--override-context-menu-hover-text-color);
|
|
77
|
+
}
|
|
78
|
+
|
|
69
79
|
.-theme-with-dark-background .soft-context-menu-item-mouse-over,
|
|
70
80
|
:host-context(.-theme-with-dark-background) .soft-context-menu-item-mouse-over {
|
|
71
81
|
--override-dark-mode-focus-color: #1a73e8;
|
|
@@ -390,6 +390,11 @@
|
|
|
390
390
|
color: HighlightText;
|
|
391
391
|
}
|
|
392
392
|
|
|
393
|
+
.tabbed-pane-header-tab:hover .tabbed-pane-close-button,
|
|
394
|
+
.tabbed-pane-shadow .tabbed-pane-header-tab:focus-visible .tabbed-pane-close-button {
|
|
395
|
+
--icon-color: HighlightText;
|
|
396
|
+
}
|
|
397
|
+
|
|
393
398
|
.tabbed-pane-header-tabs-drop-down-container {
|
|
394
399
|
opacity: 100%;
|
|
395
400
|
}
|
|
@@ -233,6 +233,7 @@
|
|
|
233
233
|
--color-error-text: hsl(0deg 100% 75%);
|
|
234
234
|
--color-error-border: rgb(92 0 0);
|
|
235
235
|
--color-error-background: hsl(0deg 100% 8%);
|
|
236
|
+
--color-checkbox-accent-color: rgb(255 165 0);
|
|
236
237
|
/* Colors for styling inputs */
|
|
237
238
|
--color-input-outline: rgb(189 193 198);
|
|
238
239
|
--color-input-outline-active: rgb(138 180 248);
|
|
@@ -307,7 +307,7 @@ select.toolbar-item:focus-visible > * {
|
|
|
307
307
|
.toolbar-input {
|
|
308
308
|
width: 120px;
|
|
309
309
|
height: 19px;
|
|
310
|
-
padding: 4px 3px 3px
|
|
310
|
+
padding: 4px 3px 3px;
|
|
311
311
|
margin: 1px 3px;
|
|
312
312
|
background-color: var(--color-background);
|
|
313
313
|
border: 1px solid transparent;
|
|
@@ -389,18 +389,18 @@ select.toolbar-item:focus-visible > * {
|
|
|
389
389
|
left: -2px;
|
|
390
390
|
}
|
|
391
391
|
|
|
392
|
-
input[is=history-input] {
|
|
392
|
+
input[is="history-input"] {
|
|
393
393
|
border: 1px solid transparent;
|
|
394
394
|
line-height: 16px;
|
|
395
395
|
padding: 1px;
|
|
396
396
|
}
|
|
397
397
|
|
|
398
|
-
input[is=history-input]:hover {
|
|
398
|
+
input[is="history-input"]:hover {
|
|
399
399
|
box-shadow: var(--legacy-focus-ring-inactive-shadow);
|
|
400
400
|
}
|
|
401
401
|
|
|
402
|
-
input[is=history-input]:focus,
|
|
403
|
-
input[is=history-input]:not(:placeholder-shown) {
|
|
402
|
+
input[is="history-input"]:focus,
|
|
403
|
+
input[is="history-input"]:not(:placeholder-shown) {
|
|
404
404
|
box-shadow: var(--legacy-focus-ring-active-shadow);
|
|
405
405
|
}
|
|
406
406
|
|
|
@@ -470,7 +470,7 @@ devtools-icon.leading-issue-icon {
|
|
|
470
470
|
color: HighlightText;
|
|
471
471
|
}
|
|
472
472
|
|
|
473
|
-
.toolbar-button:disabled [is=ui-icon].icon-mask {
|
|
473
|
+
.toolbar-button:disabled [is="ui-icon"].icon-mask {
|
|
474
474
|
background-color: GrayText;
|
|
475
475
|
color: GrayText;
|
|
476
476
|
}
|
|
@@ -505,8 +505,8 @@ devtools-icon.leading-issue-icon {
|
|
|
505
505
|
:not(.toolbar-render-as-links) .toolbar-button:enabled:hover .toolbar-glyph,
|
|
506
506
|
:not(.toolbar-render-as-links) .toolbar-button:enabled:focus .toolbar-glyph,
|
|
507
507
|
:not(.toolbar-render-as-links) .toolbar-button:enabled:hover:not(:active) .toolbar-glyph,
|
|
508
|
-
.toolbar-button:enabled:hover [is=ui-icon].icon-mask,
|
|
509
|
-
.toolbar-button:enabled:focus [is=ui-icon].icon-mask {
|
|
508
|
+
.toolbar-button:enabled:hover [is="ui-icon"].icon-mask,
|
|
509
|
+
.toolbar-button:enabled:focus [is="ui-icon"].icon-mask {
|
|
510
510
|
background-color: HighlightText;
|
|
511
511
|
}
|
|
512
512
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
:host {
|
|
8
8
|
flex: 1 1 auto;
|
|
9
|
-
padding: 2px 0 0
|
|
9
|
+
padding: 2px 0 0;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.tree-outline-disclosure:not(.tree-outline-disclosure-hide-overflow) {
|
|
@@ -166,7 +166,7 @@ ol.tree-outline:not(.hide-selection-when-blurred) li.selected:focus * {
|
|
|
166
166
|
@media (forced-colors: active) {
|
|
167
167
|
.tree-outline-disclosure li.parent::before,
|
|
168
168
|
.tree-outline:not(.hide-selection-when-blurred) li.parent:not(.selected)::before,
|
|
169
|
-
.tree-outline li [is=ui-icon].icon-mask {
|
|
169
|
+
.tree-outline li [is="ui-icon"].icon-mask {
|
|
170
170
|
forced-color-adjust: none;
|
|
171
171
|
background-color: ButtonText;
|
|
172
172
|
}
|
|
@@ -200,8 +200,8 @@ ol.tree-outline:not(.hide-selection-when-blurred) li.selected:focus * {
|
|
|
200
200
|
background-color: transparent;
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
-
.tree-outline li.selected [is=ui-icon].icon-mask,
|
|
204
|
-
.tree-outline li.selected:focus [is=ui-icon]:not(.icon-mask) {
|
|
203
|
+
.tree-outline li.selected [is="ui-icon"].icon-mask,
|
|
204
|
+
.tree-outline li.selected:focus [is="ui-icon"]:not(.icon-mask) {
|
|
205
205
|
background-color: HighlightText !important; /* stylelint-disable-line declaration-no-important */
|
|
206
206
|
}
|
|
207
207
|
|
|
@@ -215,4 +215,20 @@ ol.tree-outline:not(.hide-selection-when-blurred) li.selected:focus * {
|
|
|
215
215
|
forced-color-adjust: none;
|
|
216
216
|
color: HighlightText;
|
|
217
217
|
}
|
|
218
|
+
|
|
219
|
+
.tree-outline:not(.hide-selection-when-blurred) li.selected:focus-visible devtools-adorner,
|
|
220
|
+
.tree-outline.hide-selection-when-blurred li.selected:focus-visible devtools-adorner {
|
|
221
|
+
--override-adorner-background-color: Highlight;
|
|
222
|
+
--override-adorner-border-color: HighlightText;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.tree-outline:not(.hide-selection-when-blurred) devtools-icon,
|
|
226
|
+
.tree-outline.hide-selection-when-blurred devtools-icon {
|
|
227
|
+
--icon-color: ButtonText;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.tree-outline:not(.hide-selection-when-blurred) .selected devtools-icon,
|
|
231
|
+
.tree-outline.hide-selection-when-blurred .selected:focus-visible devtools-icon {
|
|
232
|
+
--icon-color: HighlightText;
|
|
233
|
+
}
|
|
218
234
|
}
|
|
@@ -71,7 +71,12 @@
|
|
|
71
71
|
@media (forced-colors: active) {
|
|
72
72
|
.expandable-view-title:focus-visible {
|
|
73
73
|
forced-color-adjust: none;
|
|
74
|
-
|
|
74
|
+
color: HighlightText;
|
|
75
|
+
background-color: Highlight;
|
|
75
76
|
box-shadow: 0 0 0 2px Highlight inset;
|
|
76
77
|
}
|
|
78
|
+
|
|
79
|
+
.expandable-view-title:focus-visible .title-expand-icon {
|
|
80
|
+
background-color: HighlightText;
|
|
81
|
+
}
|
|
77
82
|
}
|
|
@@ -17,11 +17,11 @@ body.platform-linux {
|
|
|
17
17
|
|
|
18
18
|
body.platform-mac {
|
|
19
19
|
color: rgb(48 57 66);
|
|
20
|
-
font-family:
|
|
20
|
+
font-family: ".SFNSDisplay-Regular", "Helvetica Neue", "Lucida Grande", sans-serif;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
body.platform-windows {
|
|
24
|
-
font-family:
|
|
24
|
+
font-family: "Segoe UI", Tahoma, sans-serif;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.fill {
|
|
@@ -157,7 +157,7 @@ body {
|
|
|
157
157
|
margin-right: 2px;
|
|
158
158
|
width: 10px;
|
|
159
159
|
height: 10px;
|
|
160
|
-
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
|
|
160
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==");
|
|
161
161
|
line-height: 10px;
|
|
162
162
|
}
|
|
163
163
|
|
|
@@ -61,12 +61,12 @@ body {
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
#resume-button .glyph {
|
|
64
|
-
-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAKCAYAAABv7tTEAAAAAXNSR0IArs4c6QAAAFJJREFUKM+10bEJgGAMBeEPbR3BLRzEVdzEVRzELRzBVohVwEJ+iODBlQfhBeJhsmHU4C0KnFjQV6J0x1SNAhdWDJUoPTB3PvLLeaUhypM3n3sD/qc7lDrdpIEAAAAASUVORK5CYII=);
|
|
64
|
+
-webkit-mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAKCAYAAABv7tTEAAAAAXNSR0IArs4c6QAAAFJJREFUKM+10bEJgGAMBeEPbR3BLRzEVdzEVRzELRzBVohVwEJ+iODBlQfhBeJhsmHU4C0KnFjQV6J0x1SNAhdWDJUoPTB3PvLLeaUhypM3n3sD/qc7lDrdpIEAAAAASUVORK5CYII=");
|
|
65
65
|
-webkit-mask-size: 13px 10px;
|
|
66
66
|
background-color: rgb(66 129 235);
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
#step-over-button .glyph {
|
|
70
|
-
-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAKCAYAAAC5Sw6hAAAAAXNSR0IArs4c6QAAAOFJREFUKM+N0j8rhXEUB/DPcxW35CqhvIBrtqibkklhV8qkTHe4ZbdblcXgPVhuMdqUTUl5A2KRRCF5LGc4PT1P7qnfcr5/zu/8KdTHLFaxjHnc4RZXKI0QYxjgLQTVd42l/0wmg5iFX3iq5H6w22RS4DyRH7CB8cAXcBTGJT6xUmd0mEwuMdFQcA3fwXvGTAan8BrgPabTL9fRRyfx91PRMwyjGwcJ2EyCfsrfpPw2Pipz24NT/MZciiQYVshzOKnZ5Hturxt3k2MnCpS4SPkeHpPR8Sh3tYgttBoW9II2/AHiaEqvD2Fc0wAAAABJRU5ErkJggg==);
|
|
70
|
+
-webkit-mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAKCAYAAAC5Sw6hAAAAAXNSR0IArs4c6QAAAOFJREFUKM+N0j8rhXEUB/DPcxW35CqhvIBrtqibkklhV8qkTHe4ZbdblcXgPVhuMdqUTUl5A2KRRCF5LGc4PT1P7qnfcr5/zu/8KdTHLFaxjHnc4RZXKI0QYxjgLQTVd42l/0wmg5iFX3iq5H6w22RS4DyRH7CB8cAXcBTGJT6xUmd0mEwuMdFQcA3fwXvGTAan8BrgPabTL9fRRyfx91PRMwyjGwcJ2EyCfsrfpPw2Pipz24NT/MZciiQYVshzOKnZ5Hturxt3k2MnCpS4SPkeHpPR8Sh3tYgttBoW9II2/AHiaEqvD2Fc0wAAAABJRU5ErkJggg==");
|
|
71
71
|
-webkit-mask-size: 18px 10px;
|
|
72
72
|
}
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ const destPath = path.join(process.cwd(), dest);
|
|
|
12
12
|
// is because the file in that location might be a hardlinked file, and
|
|
13
13
|
// overwriting it doesn't change the fact that it's hardlinked.
|
|
14
14
|
const srcContents = fs.readFileSync(srcPath);
|
|
15
|
-
if (
|
|
15
|
+
if (fileExists(destPath)) {
|
|
16
16
|
// Check contents, return early if match
|
|
17
17
|
const destContents = fs.readFileSync(destPath);
|
|
18
18
|
if (srcContents.equals(destContents)) {
|
|
@@ -24,3 +24,12 @@ if (fs.existsSync(destPath)) {
|
|
|
24
24
|
// toolchain will create a hardlink, which in turn reflects changes in
|
|
25
25
|
// gen and resources/inspector back to //front_end.
|
|
26
26
|
fs.writeFileSync(destPath, srcContents);
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Case sensitive implementation of a file look up.
|
|
30
|
+
*/
|
|
31
|
+
function fileExists(filePath) {
|
|
32
|
+
const dir = path.dirname(filePath);
|
|
33
|
+
const files = fs.readdirSync(dir);
|
|
34
|
+
return files.includes(path.basename(filePath));
|
|
35
|
+
}
|