chrome-devtools-frontend 1.0.1022611 → 1.0.1024166
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/.eslintignore +4 -2
- package/.eslintrc.js +1 -0
- package/front_end/core/common/AppProvider.ts +1 -1
- package/front_end/core/common/Object.ts +7 -2
- package/front_end/core/common/SettingRegistration.ts +1 -1
- package/front_end/core/common/Settings.ts +2 -3
- package/front_end/core/host/InspectorFrontendHost.ts +13 -5
- package/front_end/core/host/ResourceLoader.ts +1 -1
- package/front_end/core/i18n/locales/en-US.json +24 -0
- package/front_end/core/i18n/locales/en-XL.json +24 -0
- package/front_end/core/platform/UserVisibleError.ts +1 -1
- package/front_end/core/sdk/AccessibilityModel.ts +3 -4
- package/front_end/core/sdk/CPUProfileDataModel.ts +1 -1
- package/front_end/core/sdk/CPUProfilerModel.ts +3 -3
- package/front_end/core/sdk/CPUThrottlingManager.ts +2 -2
- package/front_end/core/sdk/CSSContainerQuery.ts +2 -2
- package/front_end/core/sdk/CSSLayer.ts +1 -1
- package/front_end/core/sdk/CSSMatchedStyles.ts +3 -3
- package/front_end/core/sdk/CSSMedia.ts +1 -1
- package/front_end/core/sdk/CSSModel.ts +6 -6
- package/front_end/core/sdk/CSSProperty.ts +2 -2
- package/front_end/core/sdk/CSSQuery.ts +2 -3
- package/front_end/core/sdk/CSSRule.ts +2 -2
- package/front_end/core/sdk/CSSScope.ts +1 -1
- package/front_end/core/sdk/CSSStyleDeclaration.ts +3 -3
- package/front_end/core/sdk/CSSStyleSheetHeader.ts +3 -3
- package/front_end/core/sdk/CSSSupports.ts +1 -1
- package/front_end/core/sdk/ChildTargetManager.ts +2 -2
- package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +1 -2
- package/front_end/core/sdk/ConsoleModel.ts +15 -12
- package/front_end/core/sdk/CookieModel.ts +4 -5
- package/front_end/core/sdk/DOMDebuggerModel.ts +7 -7
- package/front_end/core/sdk/DOMModel.ts +3 -3
- package/front_end/core/sdk/DebuggerModel.ts +5 -6
- package/front_end/core/sdk/EmulationModel.ts +2 -2
- package/front_end/core/sdk/EventBreakpointsModel.ts +4 -4
- package/front_end/core/sdk/FilmStripModel.ts +1 -2
- package/front_end/core/sdk/FrameAssociated.ts +1 -1
- package/front_end/core/sdk/FrameManager.ts +6 -6
- package/front_end/core/sdk/HeapProfilerModel.ts +4 -4
- package/front_end/core/sdk/IOModel.ts +2 -2
- package/front_end/core/sdk/IsolateManager.ts +3 -3
- package/front_end/core/sdk/IssuesModel.ts +1 -2
- package/front_end/core/sdk/LayerTreeBase.ts +3 -4
- package/front_end/core/sdk/LogModel.ts +1 -2
- package/front_end/core/sdk/NetworkManager.ts +18 -9
- package/front_end/core/sdk/NetworkRequest.ts +1 -2
- package/front_end/core/sdk/OverlayModel.ts +5 -5
- package/front_end/core/sdk/PageLoad.ts +1 -1
- package/front_end/core/sdk/PageResourceLoader.ts +3 -3
- package/front_end/core/sdk/PaintProfiler.ts +1 -2
- package/front_end/core/sdk/PerformanceMetricsModel.ts +1 -2
- package/front_end/core/sdk/ProfileTreeModel.ts +1 -1
- package/front_end/core/sdk/RemoteObject.ts +3 -3
- package/front_end/core/sdk/Resource.ts +2 -3
- package/front_end/core/sdk/ResourceTreeModel.ts +6 -7
- package/front_end/core/sdk/RuntimeModel.ts +5 -5
- package/front_end/core/sdk/SDKModel.ts +1 -1
- package/front_end/core/sdk/ScreenCaptureModel.ts +2 -2
- package/front_end/core/sdk/Script.ts +5 -6
- package/front_end/core/sdk/SecurityOriginManager.ts +1 -2
- package/front_end/core/sdk/ServerTiming.ts +1 -1
- package/front_end/core/sdk/ServiceWorkerCacheModel.ts +3 -3
- package/front_end/core/sdk/ServiceWorkerManager.ts +3 -4
- package/front_end/core/sdk/SourceMap.ts +2 -2
- package/front_end/core/sdk/SourceMapManager.ts +5 -5
- package/front_end/core/sdk/StorageKeyManager.ts +1 -2
- package/front_end/core/sdk/Target.ts +1 -1
- package/front_end/core/sdk/TargetManager.ts +1 -1
- package/front_end/core/sdk/TracingManager.ts +2 -3
- package/front_end/core/sdk/TracingModel.ts +1 -1
- package/front_end/core/sdk/WebAuthnModel.ts +1 -2
- package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +1 -1
- package/front_end/entrypoints/formatter_worker/CSSRuleParser.ts +1 -2
- package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +1 -1
- package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +1 -1
- package/front_end/entrypoints/formatter_worker/IdentityFormatter.ts +1 -1
- package/front_end/entrypoints/formatter_worker/JSONFormatter.ts +1 -1
- package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +2 -3
- package/front_end/entrypoints/formatter_worker/JavaScriptOutline.ts +1 -1
- package/front_end/entrypoints/formatter_worker/ScopeParser.ts +2 -2
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +1 -1
- package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotLoader.ts +3 -3
- package/front_end/generated/.clang-format +1 -0
- package/front_end/generated/ARIAProperties.js +1515 -517
- package/front_end/generated/InspectorBackendCommands.js +960 -3655
- package/front_end/generated/SupportedCSSProperties.js +5719 -1314
- package/front_end/generated/protocol-mapping.d.ts +1865 -608
- package/front_end/generated/protocol-proxy-api.d.ts +384 -576
- package/front_end/generated/protocol.ts +9 -12
- package/front_end/models/bindings/BreakpointManager.ts +2 -2
- package/front_end/models/bindings/CSSWorkspaceBinding.ts +5 -2
- package/front_end/models/bindings/CompilerScriptMapping.ts +5 -1
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +2 -2
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +4 -4
- package/front_end/models/bindings/DefaultScriptMapping.ts +1 -1
- package/front_end/models/bindings/IgnoreListManager.ts +1 -1
- package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +2 -2
- package/front_end/models/bindings/ResourceScriptMapping.ts +2 -4
- package/front_end/models/bindings/SASSSourceMapping.ts +2 -2
- package/front_end/models/bindings/StylesSourceMapping.ts +1 -1
- package/front_end/models/bindings/TempFile.ts +1 -2
- package/front_end/models/emulation/DeviceModeModel.ts +8 -2
- package/front_end/models/extensions/ExtensionPanel.ts +1 -1
- package/front_end/models/extensions/ExtensionServer.ts +3 -3
- package/front_end/models/extensions/ExtensionView.ts +1 -1
- package/front_end/models/extensions/LanguageExtensionEndpoint.ts +1 -1
- package/front_end/models/extensions/RecorderPluginManager.ts +1 -1
- package/front_end/models/formatter/SourceFormatter.ts +1 -2
- package/front_end/models/har/Importer.ts +1 -1
- package/front_end/models/har/Writer.ts +2 -2
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +1 -1
- package/front_end/models/issues_manager/ClientHintIssue.ts +6 -2
- package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +6 -2
- package/front_end/models/issues_manager/CookieIssue.ts +6 -2
- package/front_end/models/issues_manager/CorsIssue.ts +1 -1
- package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +6 -2
- package/front_end/models/issues_manager/DeprecationIssue.ts +2 -2
- package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +6 -2
- package/front_end/models/issues_manager/GenericIssue.ts +6 -2
- package/front_end/models/issues_manager/HeavyAdIssue.ts +1 -1
- package/front_end/models/issues_manager/Issue.ts +1 -1
- package/front_end/models/issues_manager/IssueResolver.ts +2 -3
- package/front_end/models/issues_manager/IssuesManager.ts +1 -1
- package/front_end/models/issues_manager/LowTextContrastIssue.ts +1 -1
- package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
- package/front_end/models/issues_manager/NavigatorUserAgentIssue.ts +1 -1
- package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
- package/front_end/models/issues_manager/RelatedIssue.ts +1 -1
- package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +1 -1
- package/front_end/models/issues_manager/SourceFrameIssuesManager.ts +3 -3
- package/front_end/models/issues_manager/TrustedWebActivityIssue.ts +6 -2
- package/front_end/models/javascript_metadata/NativeFunctions.js +22 -32
- package/front_end/models/persistence/Automapping.ts +1 -2
- package/front_end/models/persistence/EditFileSystemView.ts +1 -1
- package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +4 -4
- package/front_end/models/persistence/IsolatedFileSystem.ts +1 -2
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +2 -2
- package/front_end/models/persistence/NetworkPersistenceManager.ts +1 -2
- package/front_end/models/persistence/PersistenceImpl.ts +1 -2
- package/front_end/models/persistence/PersistenceUtils.ts +1 -2
- package/front_end/models/persistence/WorkspaceSettingsTab.ts +2 -2
- package/front_end/models/text_utils/StaticContentProvider.ts +1 -1
- package/front_end/models/timeline_model/TimelineFrameModel.ts +2 -2
- package/front_end/models/timeline_model/TimelineProfileTree.ts +1 -1
- package/front_end/models/timeline_model/TracingLayerTree.ts +1 -1
- package/front_end/models/workspace/UISourceCode.ts +1 -2
- package/front_end/models/workspace/WorkspaceImpl.ts +1 -2
- package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +1 -1
- package/front_end/panels/animation/AnimationGroupPreviewUI.ts +1 -1
- package/front_end/panels/animation/AnimationTimeline.ts +7 -2
- package/front_end/panels/animation/AnimationUI.ts +3 -3
- package/front_end/panels/application/ApplicationPanelCacheSection.ts +1 -1
- package/front_end/panels/application/ApplicationPanelSidebar.ts +13 -7
- package/front_end/panels/application/ApplicationPanelTreeElement.ts +1 -1
- package/front_end/panels/application/BackgroundServiceView.ts +1 -2
- package/front_end/panels/application/DatabaseQueryView.ts +1 -1
- package/front_end/panels/application/DatabaseTableView.ts +1 -1
- package/front_end/panels/application/IndexedDBViews.ts +9 -2
- package/front_end/panels/application/InterestGroupTreeElement.ts +1 -1
- package/front_end/panels/application/ReportingApiTreeElement.ts +1 -1
- package/front_end/panels/application/ResourcesPanel.ts +1 -1
- package/front_end/panels/application/TrustTokensTreeElement.ts +1 -1
- package/front_end/panels/application/components/FrameDetailsView.ts +9 -6
- package/front_end/panels/console/ConsoleFilter.ts +1 -1
- package/front_end/panels/console/ConsoleSidebar.ts +2 -3
- package/front_end/panels/console/ConsoleView.ts +2 -4
- package/front_end/panels/console/ConsoleViewMessage.ts +2 -2
- package/front_end/panels/console/ConsoleViewport.ts +1 -1
- package/front_end/panels/coverage/CoverageDecorationManager.ts +1 -1
- package/front_end/panels/coverage/CoverageListView.ts +1 -2
- package/front_end/panels/coverage/CoverageView.ts +1 -2
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +9 -5
- package/front_end/panels/css_overview/CSSOverviewController.ts +2 -2
- package/front_end/panels/css_overview/CSSOverviewModel.ts +3 -3
- package/front_end/panels/css_overview/CSSOverviewPanel.ts +4 -5
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -2
- package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +3 -3
- package/front_end/panels/elements/ComputedStyleWidget.ts +3 -4
- package/front_end/panels/elements/DOMLinkifier.ts +5 -1
- package/front_end/panels/elements/ElementsPanel.ts +7 -4
- package/front_end/panels/elements/ElementsSidebarPane.ts +1 -2
- package/front_end/panels/elements/ElementsTreeElement.ts +3 -4
- package/front_end/panels/elements/ElementsTreeOutline.ts +1 -1
- package/front_end/panels/elements/PlatformFontsWidget.ts +1 -2
- package/front_end/panels/elements/StyleEditorWidget.ts +2 -2
- package/front_end/panels/elements/StylePropertiesSection.ts +1 -2
- package/front_end/panels/elements/StylePropertyHighlighter.ts +2 -2
- package/front_end/panels/elements/StylePropertyTreeElement.ts +2 -3
- package/front_end/panels/elements/StylesSidebarPane.ts +39 -8
- package/front_end/panels/elements/TopLayerContainer.ts +1 -1
- package/front_end/panels/elements/components/AdornerSettingsPane.ts +1 -1
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +2 -3
- package/front_end/panels/elements/components/ElementsBreadcrumbsUtils.ts +1 -1
- package/front_end/panels/elements/components/LayoutPane.ts +1 -2
- package/front_end/panels/elements/components/QueryContainer.ts +1 -1
- package/front_end/panels/elements/components/StylePropertyEditor.ts +1 -2
- package/front_end/panels/emulation/AdvancedApp.ts +2 -2
- package/front_end/panels/emulation/DeviceModeWrapper.ts +1 -1
- package/front_end/panels/event_listeners/EventListenersView.ts +1 -2
- package/front_end/panels/issues/AffectedResourcesView.ts +2 -2
- package/front_end/panels/issues/CorsIssueDetailsView.ts +2 -2
- package/front_end/panels/issues/IssueView.ts +2 -2
- package/front_end/panels/issues/IssuesPane.ts +6 -2
- package/front_end/panels/layer_viewer/LayerDetailsView.ts +8 -2
- package/front_end/panels/layer_viewer/LayerTreeOutline.ts +7 -2
- package/front_end/panels/layer_viewer/Layers3DView.ts +9 -2
- package/front_end/panels/lighthouse/LighthouseController.ts +1 -1
- package/front_end/panels/lighthouse/LighthousePanel.ts +10 -6
- package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +5 -1
- package/front_end/panels/lighthouse/LighthouseStartView.ts +1 -2
- package/front_end/panels/lighthouse/LighthouseStatusView.ts +1 -2
- package/front_end/panels/lighthouse/LighthouseTimespanView.ts +1 -2
- package/front_end/panels/media/EventDisplayTable.ts +1 -1
- package/front_end/panels/media/EventTimelineView.ts +9 -3
- package/front_end/panels/media/MainView.ts +1 -2
- package/front_end/panels/media/PlayerDetailView.ts +4 -3
- package/front_end/panels/media/PlayerListView.ts +2 -2
- package/front_end/panels/media/PlayerMessagesView.ts +76 -0
- package/front_end/panels/media/playerMessagesView.css +15 -0
- package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +6 -2
- package/front_end/panels/mobile_throttling/NetworkThrottlingSelector.ts +1 -2
- package/front_end/panels/mobile_throttling/ThrottlingManager.ts +7 -4
- package/front_end/panels/network/NetworkDataGridNode.ts +1 -1
- package/front_end/panels/network/NetworkFrameGrouper.ts +1 -1
- package/front_end/panels/network/NetworkItemView.ts +1 -1
- package/front_end/panels/network/NetworkLogView.ts +10 -3
- package/front_end/panels/network/NetworkLogViewColumns.ts +7 -6
- package/front_end/panels/network/NetworkPanel.ts +3 -4
- package/front_end/panels/network/NetworkWaterfallColumn.ts +4 -4
- package/front_end/panels/network/RequestTimingView.ts +1 -2
- package/front_end/panels/network/components/RequestHeadersView.css +4 -0
- package/front_end/panels/network/components/RequestHeadersView.ts +57 -14
- package/front_end/panels/profiler/BottomUpProfileDataGrid.ts +2 -3
- package/front_end/panels/profiler/CPUProfileView.ts +3 -3
- package/front_end/panels/profiler/HeapProfileView.ts +4 -5
- package/front_end/panels/profiler/HeapProfilerPanel.ts +2 -2
- package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +4 -4
- package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +11 -7
- package/front_end/panels/profiler/HeapSnapshotProxy.ts +1 -1
- package/front_end/panels/profiler/HeapSnapshotView.ts +13 -8
- package/front_end/panels/profiler/ProfileLauncherView.ts +2 -2
- package/front_end/panels/profiler/ProfileSidebarTreeElement.ts +6 -2
- package/front_end/panels/profiler/ProfileView.ts +6 -6
- package/front_end/panels/profiler/ProfilesPanel.ts +6 -2
- package/front_end/panels/profiler/TopDownProfileDataGrid.ts +1 -2
- package/front_end/panels/search/SearchResultsPane.ts +1 -1
- package/front_end/panels/search/SearchView.ts +1 -2
- package/front_end/panels/security/SecurityPanel.ts +7 -2
- package/front_end/panels/settings/SettingsScreen.ts +1 -1
- package/front_end/panels/settings/emulation/utils/UserAgentMetadata.ts +11 -2
- package/front_end/panels/sources/EditingLocationHistoryManager.ts +2 -2
- package/front_end/panels/sources/GoToLineQuickOpen.ts +1 -1
- package/front_end/panels/sources/InplaceFormatterEditorAction.ts +7 -2
- package/front_end/panels/sources/ScriptFormatterEditorAction.ts +7 -2
- package/front_end/panels/sources/SourcesNavigator.ts +1 -2
- package/front_end/panels/sources/SourcesPanel.ts +1 -1
- package/front_end/panels/sources/SourcesSearchScope.ts +3 -0
- package/front_end/panels/sources/SourcesView.ts +6 -2
- package/front_end/panels/sources/UISourceCodeFrame.ts +1 -1
- package/front_end/panels/timeline/CountersGraph.ts +2 -3
- package/front_end/panels/timeline/EventsTimelineTreeView.ts +2 -2
- package/front_end/panels/timeline/ExtensionTracingSession.ts +3 -3
- package/front_end/panels/timeline/TimelineDetailsView.ts +6 -6
- package/front_end/panels/timeline/TimelineEventOverview.ts +3 -3
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +3 -3
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +1 -1
- package/front_end/panels/timeline/TimelineFlameChartView.ts +6 -6
- package/front_end/panels/timeline/TimelineHistoryManager.ts +1 -1
- package/front_end/panels/timeline/TimelinePanel.ts +5 -5
- package/front_end/panels/timeline/TimelineTreeView.ts +2 -2
- package/front_end/panels/timeline/UIDevtoolsController.ts +1 -2
- package/front_end/panels/timeline/components/WebVitalsLane.ts +9 -2
- package/front_end/panels/timeline/components/WebVitalsTimeline.ts +1 -1
- package/front_end/panels/web_audio/graph_visualizer/EdgeView.ts +1 -1
- package/front_end/panels/web_audio/graph_visualizer/GraphView.ts +9 -3
- package/front_end/panels/web_audio/graph_visualizer/NodeRendererUtility.ts +2 -1
- package/front_end/panels/web_audio/graph_visualizer/NodeView.ts +3 -1
- package/front_end/third_party/.clang-format +1 -1
- package/front_end/third_party/i18n/localized-string-set.ts +1 -1
- package/front_end/ui/components/buttons/Button.ts +32 -7
- package/front_end/ui/components/buttons/button.css +16 -0
- package/front_end/ui/components/data_grid/DataGrid.ts +5 -1
- package/front_end/ui/components/data_grid/DataGridContextMenuUtils.ts +2 -2
- package/front_end/ui/components/data_grid/DataGridController.ts +12 -5
- package/front_end/ui/components/data_grid/DataGridControllerIntegrator.ts +1 -2
- package/front_end/ui/components/data_grid/DataGridEvents.ts +1 -1
- package/front_end/ui/components/data_grid/DataGridRenderers.ts +1 -1
- package/front_end/ui/components/docs/building-ui-documentation/CreatingComponents.md +112 -0
- package/front_end/ui/components/docs/building-ui-documentation/README.md +19 -0
- package/front_end/ui/components/docs/button/basic.html +11 -0
- package/front_end/ui/components/docs/button/basic.ts +7 -0
- package/front_end/ui/components/icon_button/IconButton.ts +1 -3
- package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspector.ts +27 -13
- package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorController.ts +9 -4
- package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorPane.ts +10 -5
- package/front_end/ui/components/linear_memory_inspector/LinearMemoryValueInterpreter.ts +8 -7
- package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +1 -1
- package/front_end/ui/components/markdown_view/MarkdownImage.ts +1 -2
- package/front_end/ui/components/markdown_view/MarkdownView.ts +2 -4
- package/front_end/ui/components/tree_outline/TreeOutline.ts +3 -1
- package/front_end/ui/legacy/ActionRegistry.ts +1 -2
- package/front_end/ui/legacy/Context.ts +1 -1
- package/front_end/ui/legacy/ContextMenu.ts +2 -2
- package/front_end/ui/legacy/Dialog.ts +4 -4
- package/front_end/ui/legacy/DockController.ts +4 -4
- package/front_end/ui/legacy/FilterBar.ts +3 -3
- package/front_end/ui/legacy/FilterSuggestionBuilder.ts +1 -1
- package/front_end/ui/legacy/GlassPane.ts +3 -3
- package/front_end/ui/legacy/Infobar.ts +1 -1
- package/front_end/ui/legacy/InspectorView.ts +10 -10
- package/front_end/ui/legacy/ListControl.ts +2 -2
- package/front_end/ui/legacy/Panel.ts +1 -1
- package/front_end/ui/legacy/ShortcutRegistry.ts +2 -3
- package/front_end/ui/legacy/SoftDropDown.ts +4 -4
- package/front_end/ui/legacy/SplitWidget.ts +2 -2
- package/front_end/ui/legacy/SuggestBox.ts +2 -2
- package/front_end/ui/legacy/TabbedPane.ts +2 -2
- package/front_end/ui/legacy/TextPrompt.ts +1 -2
- package/front_end/ui/legacy/Toolbar.ts +2 -3
- package/front_end/ui/legacy/Treeoutline.ts +3 -3
- package/front_end/ui/legacy/UIUtils.ts +2 -3
- package/front_end/ui/legacy/View.ts +4 -4
- package/front_end/ui/legacy/ViewManager.ts +8 -8
- package/front_end/ui/legacy/ViewRegistration.ts +2 -2
- package/front_end/ui/legacy/XLink.ts +1 -1
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +1 -2
- package/front_end/ui/legacy/components/color_picker/ContrastOverlay.ts +1 -2
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +1 -1
- package/front_end/ui/legacy/components/data_grid/SortableDataGrid.ts +1 -2
- package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +1 -2
- package/front_end/ui/legacy/components/data_grid/dataGrid.css +2 -2
- package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +4 -5
- package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +1 -1
- package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +1 -2
- package/front_end/ui/legacy/components/inline_editor/CSSLength.ts +1 -2
- package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +1 -2
- package/front_end/ui/legacy/components/inline_editor/Swatches.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +3 -4
- package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +1 -2
- package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +2 -3
- package/front_end/ui/legacy/components/quick_open/QuickOpen.ts +1 -2
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +1 -2
- package/inspector_overlay/css_grid_label_helpers.ts +1 -2
- package/inspector_overlay/highlight_common.ts +1 -1
- package/inspector_overlay/highlight_container_query.ts +3 -3
- package/inspector_overlay/highlight_flex_common.ts +12 -3
- package/inspector_overlay/highlight_grid_common.ts +3 -3
- package/inspector_overlay/highlight_isolated_element.ts +1 -1
- package/inspector_overlay/highlight_scroll_snap.ts +3 -3
- package/inspector_overlay/main.ts +6 -6
- package/inspector_overlay/tool_highlight.ts +26 -12
- package/inspector_overlay/tool_persistent.ts +13 -14
- package/inspector_overlay/tool_source_order.ts +3 -4
- package/package.json +1 -1
- package/scripts/build/generate_aria.py +2 -1
- package/scripts/build/generate_supported_css.py +6 -3
- package/scripts/protocol_typescript/protocol_dts_generator.ts +1 -1
@@ -10,16 +10,12 @@
|
|
10
10
|
|
11
11
|
export type integer = number;
|
12
12
|
export type binary = string;
|
13
|
-
export type EnumerableEnum<T> = {
|
14
|
-
[K in keyof T]: T[K]
|
15
|
-
};
|
13
|
+
export type EnumerableEnum<T> = {[K in keyof T]: T[K]};
|
16
14
|
export interface ProtocolResponseWithError {
|
17
15
|
/** Returns an error message if the request failed. */
|
18
16
|
getError(): string|undefined;
|
19
17
|
}
|
20
|
-
type OpaqueType<Tag extends string> = {
|
21
|
-
protocolOpaqueTypeTag: Tag
|
22
|
-
};
|
18
|
+
type OpaqueType<Tag extends string> = {protocolOpaqueTypeTag: Tag};
|
23
19
|
type OpaqueIdentifier<RepresentationType, Tag extends string> = RepresentationType&OpaqueType<Tag>;
|
24
20
|
|
25
21
|
export namespace Accessibility {
|
@@ -1059,14 +1055,12 @@ export namespace Audits {
|
|
1059
1055
|
RequestedSubresourceWithEmbeddedCredentials = 'RequestedSubresourceWithEmbeddedCredentials',
|
1060
1056
|
RTCConstraintEnableDtlsSrtpFalse = 'RTCConstraintEnableDtlsSrtpFalse',
|
1061
1057
|
RTCConstraintEnableDtlsSrtpTrue = 'RTCConstraintEnableDtlsSrtpTrue',
|
1062
|
-
RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics =
|
1063
|
-
'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics',
|
1058
|
+
RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics = 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics',
|
1064
1059
|
RTCPeerConnectionSdpSemanticsPlanB = 'RTCPeerConnectionSdpSemanticsPlanB',
|
1065
1060
|
RtcpMuxPolicyNegotiate = 'RtcpMuxPolicyNegotiate',
|
1066
1061
|
SharedArrayBufferConstructedWithoutIsolation = 'SharedArrayBufferConstructedWithoutIsolation',
|
1067
1062
|
TextToSpeech_DisallowedByAutoplay = 'TextToSpeech_DisallowedByAutoplay',
|
1068
|
-
V8SharedArrayBufferConstructedInExtensionWithoutIsolation =
|
1069
|
-
'V8SharedArrayBufferConstructedInExtensionWithoutIsolation',
|
1063
|
+
V8SharedArrayBufferConstructedInExtensionWithoutIsolation = 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation',
|
1070
1064
|
XHRJSONEncodingDetection = 'XHRJSONEncodingDetection',
|
1071
1065
|
XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload = 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload',
|
1072
1066
|
XRSupportsSession = 'XRSupportsSession',
|
@@ -2602,6 +2596,10 @@ export namespace CSS {
|
|
2602
2596
|
* A list of CSS keyframed animations matching this node.
|
2603
2597
|
*/
|
2604
2598
|
cssKeyframesRules?: CSSKeyframesRule[];
|
2599
|
+
/**
|
2600
|
+
* Id of the first parent element that does not have display: contents.
|
2601
|
+
*/
|
2602
|
+
parentLayoutNodeId?: DOM.NodeId;
|
2605
2603
|
}
|
2606
2604
|
|
2607
2605
|
export interface GetMediaQueriesResponse extends ProtocolResponseWithError {
|
@@ -11005,8 +11003,7 @@ export namespace Page {
|
|
11005
11003
|
EmbedderDomDistillerSelfDeletingRequestDelegate = 'EmbedderDomDistillerSelfDeletingRequestDelegate',
|
11006
11004
|
EmbedderOomInterventionTabHelper = 'EmbedderOomInterventionTabHelper',
|
11007
11005
|
EmbedderOfflinePage = 'EmbedderOfflinePage',
|
11008
|
-
EmbedderChromePasswordManagerClientBindCredentialManager =
|
11009
|
-
'EmbedderChromePasswordManagerClientBindCredentialManager',
|
11006
|
+
EmbedderChromePasswordManagerClientBindCredentialManager = 'EmbedderChromePasswordManagerClientBindCredentialManager',
|
11010
11007
|
EmbedderPermissionRequestManager = 'EmbedderPermissionRequestManager',
|
11011
11008
|
EmbedderModalDialog = 'EmbedderModalDialog',
|
11012
11009
|
EmbedderExtensions = 'EmbedderExtensions',
|
@@ -37,8 +37,8 @@ import type * as TextUtils from '../text_utils/text_utils.js';
|
|
37
37
|
import * as Workspace from '../workspace/workspace.js';
|
38
38
|
|
39
39
|
import {DebuggerWorkspaceBinding} from './DebuggerWorkspaceBinding.js';
|
40
|
-
|
41
|
-
import {LiveLocationPool} from './LiveLocation.js';
|
40
|
+
|
41
|
+
import {LiveLocationPool, type LiveLocation} from './LiveLocation.js';
|
42
42
|
import {DefaultScriptMapping} from './DefaultScriptMapping.js';
|
43
43
|
import {ResourceScriptMapping} from './ResourceScriptMapping.js';
|
44
44
|
|
@@ -7,8 +7,11 @@ import * as Platform from '../../core/platform/platform.js';
|
|
7
7
|
import * as SDK from '../../core/sdk/sdk.js';
|
8
8
|
import type * as Workspace from '../workspace/workspace.js';
|
9
9
|
|
10
|
-
import
|
11
|
-
|
10
|
+
import {
|
11
|
+
LiveLocationWithPool,
|
12
|
+
type LiveLocation as LiveLocationInterface,
|
13
|
+
type LiveLocationPool,
|
14
|
+
} from './LiveLocation.js';
|
12
15
|
import {ResourceMapping} from './ResourceMapping.js';
|
13
16
|
import {SASSSourceMapping} from './SASSSourceMapping.js';
|
14
17
|
import {StylesSourceMapping} from './StylesSourceMapping.js';
|
@@ -36,7 +36,11 @@ import * as TextUtils from '../text_utils/text_utils.js';
|
|
36
36
|
import * as Workspace from '../workspace/workspace.js';
|
37
37
|
|
38
38
|
import {ContentProviderBasedProject} from './ContentProviderBasedProject.js';
|
39
|
-
import
|
39
|
+
import {
|
40
|
+
type DebuggerSourceMapping,
|
41
|
+
type DebuggerWorkspaceBinding,
|
42
|
+
type RawLocationRange,
|
43
|
+
} from './DebuggerWorkspaceBinding.js';
|
40
44
|
import {IgnoreListManager} from './IgnoreListManager.js';
|
41
45
|
import {NetworkProject} from './NetworkProject.js';
|
42
46
|
|
@@ -8,11 +8,11 @@ import type * as Platform from '../../core/platform/platform.js';
|
|
8
8
|
import * as SDK from '../../core/sdk/sdk.js';
|
9
9
|
import * as Protocol from '../../generated/protocol.js';
|
10
10
|
import * as Workspace from '../workspace/workspace.js';
|
11
|
-
import type
|
11
|
+
import {type Chrome} from '../../../extension-api/ExtensionAPI.js'; // eslint-disable-line rulesdir/es_modules_import
|
12
12
|
|
13
13
|
import {ContentProviderBasedProject} from './ContentProviderBasedProject.js';
|
14
14
|
|
15
|
-
import type
|
15
|
+
import {type DebuggerWorkspaceBinding} from './DebuggerWorkspaceBinding.js';
|
16
16
|
import {NetworkProject} from './NetworkProject.js';
|
17
17
|
import {assertNotNullOrUndefined} from '../../core/platform/platform.js';
|
18
18
|
|
@@ -12,11 +12,11 @@ import {CompilerScriptMapping} from './CompilerScriptMapping.js';
|
|
12
12
|
import {DebuggerLanguagePluginManager} from './DebuggerLanguagePlugins.js';
|
13
13
|
import {DefaultScriptMapping} from './DefaultScriptMapping.js';
|
14
14
|
import {IgnoreListManager} from './IgnoreListManager.js';
|
15
|
-
|
16
|
-
import {LiveLocationWithPool} from './LiveLocation.js';
|
15
|
+
|
16
|
+
import {LiveLocationWithPool, type LiveLocation, type LiveLocationPool} from './LiveLocation.js';
|
17
17
|
import {ResourceMapping} from './ResourceMapping.js';
|
18
|
-
|
19
|
-
import {ResourceScriptMapping} from './ResourceScriptMapping.js';
|
18
|
+
|
19
|
+
import {ResourceScriptMapping, type ResourceScriptFile} from './ResourceScriptMapping.js';
|
20
20
|
|
21
21
|
let debuggerWorkspaceBindingInstance: DebuggerWorkspaceBinding|undefined;
|
22
22
|
|
@@ -34,7 +34,7 @@ import * as SDK from '../../core/sdk/sdk.js';
|
|
34
34
|
import * as Workspace from '../workspace/workspace.js';
|
35
35
|
|
36
36
|
import {ContentProviderBasedProject} from './ContentProviderBasedProject.js';
|
37
|
-
import type
|
37
|
+
import {type DebuggerSourceMapping, type DebuggerWorkspaceBinding} from './DebuggerWorkspaceBinding.js';
|
38
38
|
|
39
39
|
const uiSourceCodeToScriptsMap = new WeakMap<Workspace.UISourceCode.UISourceCode, Set<SDK.Script.Script>>();
|
40
40
|
const scriptToUISourceCodeMap = new WeakMap<SDK.Script.Script, Workspace.UISourceCode.UISourceCode>();
|
@@ -7,7 +7,7 @@ import * as Platform from '../../core/platform/platform.js';
|
|
7
7
|
import * as SDK from '../../core/sdk/sdk.js';
|
8
8
|
import * as Workspace from '../workspace/workspace.js';
|
9
9
|
|
10
|
-
import type
|
10
|
+
import {type DebuggerWorkspaceBinding} from './DebuggerWorkspaceBinding.js';
|
11
11
|
|
12
12
|
let ignoreListManagerInstance: IgnoreListManager;
|
13
13
|
|
@@ -35,8 +35,8 @@ import * as Workspace from '../workspace/workspace.js';
|
|
35
35
|
import * as Protocol from '../../generated/protocol.js';
|
36
36
|
|
37
37
|
import {DebuggerWorkspaceBinding} from './DebuggerWorkspaceBinding.js';
|
38
|
-
|
39
|
-
import {LiveLocationPool} from './LiveLocation.js';
|
38
|
+
|
39
|
+
import {LiveLocationPool, type LiveLocation} from './LiveLocation.js';
|
40
40
|
|
41
41
|
const debuggerModelToMessageHelperMap =
|
42
42
|
new WeakMap<SDK.DebuggerModel.DebuggerModel, PresentationConsoleMessageHelper>();
|
@@ -35,11 +35,9 @@ import * as SDK from '../../core/sdk/sdk.js';
|
|
35
35
|
import * as Protocol from '../../generated/protocol.js';
|
36
36
|
import * as Workspace from '../workspace/workspace.js';
|
37
37
|
|
38
|
-
import type
|
39
|
-
import {BreakpointManager} from './BreakpointManager.js';
|
38
|
+
import {BreakpointManager, type Breakpoint} from './BreakpointManager.js';
|
40
39
|
import {ContentProviderBasedProject} from './ContentProviderBasedProject.js';
|
41
|
-
import type
|
42
|
-
import {DebuggerWorkspaceBinding} from './DebuggerWorkspaceBinding.js';
|
40
|
+
import {DebuggerWorkspaceBinding, type DebuggerSourceMapping} from './DebuggerWorkspaceBinding.js';
|
43
41
|
import {NetworkProject} from './NetworkProject.js';
|
44
42
|
import {metadataForURL} from './ResourceUtils.js';
|
45
43
|
|
@@ -35,8 +35,8 @@ import type * as Platform from '../../core/platform/platform.js';
|
|
35
35
|
import * as Workspace from '../workspace/workspace.js';
|
36
36
|
|
37
37
|
import {ContentProviderBasedProject} from './ContentProviderBasedProject.js';
|
38
|
-
|
39
|
-
import {CSSWorkspaceBinding} from './CSSWorkspaceBinding.js';
|
38
|
+
|
39
|
+
import {CSSWorkspaceBinding, type SourceMapping} from './CSSWorkspaceBinding.js';
|
40
40
|
import {NetworkProject} from './NetworkProject.js';
|
41
41
|
|
42
42
|
export class SASSSourceMapping implements SourceMapping {
|
@@ -35,7 +35,7 @@ import type * as TextUtils from '../text_utils/text_utils.js';
|
|
35
35
|
import * as Workspace from '../workspace/workspace.js';
|
36
36
|
|
37
37
|
import {ContentProviderBasedProject} from './ContentProviderBasedProject.js';
|
38
|
-
import type
|
38
|
+
import {type SourceMapping} from './CSSWorkspaceBinding.js';
|
39
39
|
import {NetworkProject} from './NetworkProject.js';
|
40
40
|
import {metadataForURL} from './ResourceUtils.js';
|
41
41
|
|
@@ -32,8 +32,7 @@ import * as Common from '../../core/common/common.js';
|
|
32
32
|
|
33
33
|
import type * as SDK from '../../core/sdk/sdk.js';
|
34
34
|
|
35
|
-
import type
|
36
|
-
import {ChunkedFileReader} from './FileUtils.js';
|
35
|
+
import {ChunkedFileReader, type ChunkedReader} from './FileUtils.js';
|
37
36
|
|
38
37
|
export class TempFile {
|
39
38
|
#lastBlob: Blob|null;
|
@@ -10,8 +10,14 @@ import * as SDK from '../../core/sdk/sdk.js';
|
|
10
10
|
import * as Protocol from '../../generated/protocol.js';
|
11
11
|
import * as UI from '../../ui/legacy/legacy.js';
|
12
12
|
|
13
|
-
import
|
14
|
-
|
13
|
+
import {
|
14
|
+
Horizontal,
|
15
|
+
HorizontalSpanned,
|
16
|
+
Vertical,
|
17
|
+
VerticalSpanned,
|
18
|
+
type EmulatedDevice,
|
19
|
+
type Mode,
|
20
|
+
} from './EmulatedDevices.js';
|
15
21
|
|
16
22
|
const UIStrings = {
|
17
23
|
/**
|
@@ -34,7 +34,7 @@ import * as SDK from '../../core/sdk/sdk.js';
|
|
34
34
|
import * as UI from '../../ui/legacy/legacy.js';
|
35
35
|
|
36
36
|
import * as ExtensionAPI from './ExtensionAPI.js';
|
37
|
-
import type
|
37
|
+
import {type ExtensionServer} from './ExtensionServer.js';
|
38
38
|
import {ExtensionNotifierView, ExtensionView} from './ExtensionView.js';
|
39
39
|
|
40
40
|
export class ExtensionPanel extends UI.Panel.Panel implements UI.SearchableView.Searchable {
|
@@ -49,13 +49,13 @@ import * as Workspace from '../workspace/workspace.js';
|
|
49
49
|
import type * as Protocol from '../../generated/protocol.js';
|
50
50
|
|
51
51
|
import {ExtensionButton, ExtensionPanel, ExtensionSidebarPane} from './ExtensionPanel.js';
|
52
|
-
|
53
|
-
import {ExtensionTraceProvider} from './ExtensionTraceProvider.js';
|
52
|
+
|
53
|
+
import {ExtensionTraceProvider, type TracingSession} from './ExtensionTraceProvider.js';
|
54
54
|
import {LanguageExtensionEndpoint} from './LanguageExtensionEndpoint.js';
|
55
55
|
import {RecorderExtensionEndpoint} from './RecorderExtensionEndpoint.js';
|
56
56
|
import {PrivateAPI} from './ExtensionAPI.js';
|
57
57
|
import {RecorderPluginManager} from './RecorderPluginManager.js';
|
58
|
-
import type
|
58
|
+
import {type Chrome} from '../../../extension-api/ExtensionAPI.js'; // eslint-disable-line rulesdir/es_modules_import
|
59
59
|
|
60
60
|
const extensionOrigins: WeakMap<MessagePort, Platform.DevToolsPath.UrlString> = new WeakMap();
|
61
61
|
|
@@ -30,7 +30,7 @@
|
|
30
30
|
|
31
31
|
import * as UI from '../../ui/legacy/legacy.js';
|
32
32
|
|
33
|
-
import type
|
33
|
+
import {type ExtensionServer} from './ExtensionServer.js';
|
34
34
|
|
35
35
|
export class ExtensionView extends UI.Widget.Widget {
|
36
36
|
private readonly server: ExtensionServer;
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
import type * as SDK from '../../core/sdk/sdk.js';
|
6
6
|
import * as Bindings from '../bindings/bindings.js';
|
7
|
-
import type
|
7
|
+
import {type Chrome} from '../../../extension-api/ExtensionAPI.js'; // eslint-disable-line rulesdir/es_modules_import
|
8
8
|
import {ExtensionEndpoint} from './ExtensionEndpoint.js';
|
9
9
|
|
10
10
|
import {PrivateAPI} from './ExtensionAPI.js';
|
@@ -2,7 +2,7 @@
|
|
2
2
|
// Use of this source code is governed by a BSD-style license that can be
|
3
3
|
// found in the LICENSE file.
|
4
4
|
|
5
|
-
import type
|
5
|
+
import {type RecorderExtensionEndpoint} from './RecorderExtensionEndpoint.js';
|
6
6
|
|
7
7
|
let instance: RecorderPluginManager|null = null;
|
8
8
|
|
@@ -8,8 +8,7 @@ import * as Bindings from '../bindings/bindings.js';
|
|
8
8
|
import * as TextUtils from '../text_utils/text_utils.js';
|
9
9
|
import * as Workspace from '../workspace/workspace.js';
|
10
10
|
|
11
|
-
import type
|
12
|
-
import {format} from './ScriptFormatter.js';
|
11
|
+
import {format, type FormatterSourceMapping} from './ScriptFormatter.js';
|
13
12
|
|
14
13
|
const objectToFormattingResult = new WeakMap<Object, SourceFormatData>();
|
15
14
|
|
@@ -6,7 +6,7 @@ import * as Common from '../../core/common/common.js';
|
|
6
6
|
import * as SDK from '../../core/sdk/sdk.js';
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
|
-
import type
|
9
|
+
import {type HAREntry, type HARLog, type HARPage, type HARTimings} from './HARFormat.js';
|
10
10
|
|
11
11
|
export class Importer {
|
12
12
|
static requestsFromHARLog(log: HARLog): SDK.NetworkRequest.NetworkRequest[] {
|
@@ -36,8 +36,8 @@ import * as Common from '../../core/common/common.js';
|
|
36
36
|
import * as i18n from '../../core/i18n/i18n.js';
|
37
37
|
import * as Platform from '../../core/platform/platform.js';
|
38
38
|
import type * as SDK from '../../core/sdk/sdk.js';
|
39
|
-
|
40
|
-
import {Log} from './Log.js';
|
39
|
+
|
40
|
+
import {Log, type EntryDTO} from './Log.js';
|
41
41
|
|
42
42
|
const UIStrings = {
|
43
43
|
/**
|
@@ -6,7 +6,7 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
6
6
|
import * as Protocol from '../../generated/protocol.js';
|
7
7
|
|
8
8
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
9
|
-
import type
|
9
|
+
import {type MarkdownIssueDescription} from './MarkdownIssueDescription.js';
|
10
10
|
|
11
11
|
export const enum IssueCode {
|
12
12
|
PermissionPolicyDisabled = 'AttributionReportingIssue::PermissionPolicyDisabled',
|
@@ -7,8 +7,12 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
|
11
|
-
import {
|
10
|
+
|
11
|
+
import {
|
12
|
+
resolveLazyDescription,
|
13
|
+
type MarkdownIssueDescription,
|
14
|
+
type LazyMarkdownIssueDescription,
|
15
|
+
} from './MarkdownIssueDescription.js';
|
12
16
|
|
13
17
|
const UIStrings = {
|
14
18
|
/**
|
@@ -7,8 +7,12 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
|
11
|
-
import {
|
10
|
+
|
11
|
+
import {
|
12
|
+
resolveLazyDescription,
|
13
|
+
type LazyMarkdownIssueDescription,
|
14
|
+
type MarkdownIssueDescription,
|
15
|
+
} from './MarkdownIssueDescription.js';
|
12
16
|
|
13
17
|
const UIStrings = {
|
14
18
|
/**
|
@@ -9,8 +9,12 @@ import * as SDK from '../../core/sdk/sdk.js';
|
|
9
9
|
import * as Protocol from '../../generated/protocol.js';
|
10
10
|
|
11
11
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
12
|
-
|
13
|
-
import {
|
12
|
+
|
13
|
+
import {
|
14
|
+
resolveLazyDescription,
|
15
|
+
type LazyMarkdownIssueDescription,
|
16
|
+
type MarkdownIssueDescription,
|
17
|
+
} from './MarkdownIssueDescription.js';
|
14
18
|
|
15
19
|
const UIStrings = {
|
16
20
|
/**
|
@@ -7,7 +7,7 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
import type
|
10
|
+
import {type MarkdownIssueDescription} from './MarkdownIssueDescription.js';
|
11
11
|
|
12
12
|
const UIStrings = {
|
13
13
|
/**
|
@@ -7,8 +7,12 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
|
11
|
-
import {
|
10
|
+
|
11
|
+
import {
|
12
|
+
resolveLazyDescription,
|
13
|
+
type LazyMarkdownIssueDescription,
|
14
|
+
type MarkdownIssueDescription,
|
15
|
+
} from './MarkdownIssueDescription.js';
|
12
16
|
|
13
17
|
const UIStrings = {
|
14
18
|
/**
|
@@ -7,8 +7,8 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
|
11
|
-
import {resolveLazyDescription} from './MarkdownIssueDescription.js';
|
10
|
+
|
11
|
+
import {resolveLazyDescription, type MarkdownIssueDescription} from './MarkdownIssueDescription.js';
|
12
12
|
|
13
13
|
// clang-format off
|
14
14
|
const UIStrings = {
|
@@ -7,8 +7,12 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
|
11
|
-
import {
|
10
|
+
|
11
|
+
import {
|
12
|
+
resolveLazyDescription,
|
13
|
+
type MarkdownIssueDescription,
|
14
|
+
type LazyMarkdownIssueDescription,
|
15
|
+
} from './MarkdownIssueDescription.js';
|
12
16
|
|
13
17
|
const UIStrings = {
|
14
18
|
/**
|
@@ -7,8 +7,12 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
|
11
|
-
import {
|
10
|
+
|
11
|
+
import {
|
12
|
+
resolveLazyDescription,
|
13
|
+
type LazyMarkdownIssueDescription,
|
14
|
+
type MarkdownIssueDescription,
|
15
|
+
} from './MarkdownIssueDescription.js';
|
12
16
|
|
13
17
|
const UIStrings = {
|
14
18
|
/**
|
@@ -7,7 +7,7 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
import type
|
10
|
+
import {type MarkdownIssueDescription} from './MarkdownIssueDescription.js';
|
11
11
|
|
12
12
|
const UIStrings = {
|
13
13
|
/**
|
@@ -9,7 +9,7 @@ import type * as Platform from '../../core/platform/platform.js';
|
|
9
9
|
import type * as SDK from '../../core/sdk/sdk.js';
|
10
10
|
import type * as Protocol from '../../generated/protocol.js';
|
11
11
|
|
12
|
-
import type
|
12
|
+
import {type MarkdownIssueDescription} from './MarkdownIssueDescription.js';
|
13
13
|
|
14
14
|
const UIStrings = {
|
15
15
|
/**
|
@@ -5,9 +5,8 @@
|
|
5
5
|
import * as Common from '../../core/common/common.js';
|
6
6
|
import type * as Protocol from '../../generated/protocol.js';
|
7
7
|
|
8
|
-
import type
|
9
|
-
import {IssuesManager, Events as IssueManagerEvents} from './IssuesManager.js';
|
10
|
-
import type {IssueAddedEvent} from './IssuesManager.js';
|
8
|
+
import {type Issue} from './Issue.js';
|
9
|
+
import {IssuesManager, Events as IssueManagerEvents, type IssueAddedEvent} from './IssuesManager.js';
|
11
10
|
|
12
11
|
/**
|
13
12
|
* A class that facilitates resolving an issueId to an issue. See `ResolverBase` for more info.
|
@@ -16,7 +16,7 @@ import {DeprecationIssue} from './DeprecationIssue.js';
|
|
16
16
|
import {FederatedAuthRequestIssue} from './FederatedAuthRequestIssue.js';
|
17
17
|
import {GenericIssue} from './GenericIssue.js';
|
18
18
|
import {HeavyAdIssue} from './HeavyAdIssue.js';
|
19
|
-
import type
|
19
|
+
import {type Issue, type IssueKind} from './Issue.js';
|
20
20
|
import {Events} from './IssuesManagerEvents.js';
|
21
21
|
import {LowTextContrastIssue} from './LowTextContrastIssue.js';
|
22
22
|
import {MixedContentIssue} from './MixedContentIssue.js';
|
@@ -7,7 +7,7 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import type * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
import type
|
10
|
+
import {type MarkdownIssueDescription} from './MarkdownIssueDescription.js';
|
11
11
|
|
12
12
|
const UIStrings = {
|
13
13
|
/**
|
@@ -7,7 +7,7 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
import type
|
10
|
+
import {type MarkdownIssueDescription} from './MarkdownIssueDescription.js';
|
11
11
|
|
12
12
|
const UIStrings = {
|
13
13
|
/**
|
@@ -7,7 +7,7 @@ import * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import type * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
import type
|
10
|
+
import {type MarkdownIssueDescription} from './MarkdownIssueDescription.js';
|
11
11
|
import {isCausedByThirdParty} from './CookieIssue.js';
|
12
12
|
|
13
13
|
const UIStrings = {
|
@@ -7,7 +7,7 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
import type
|
10
|
+
import {type MarkdownIssueDescription} from './MarkdownIssueDescription.js';
|
11
11
|
|
12
12
|
const UIStrings = {
|
13
13
|
/**
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
import * as Common from '../../core/common/common.js';
|
6
6
|
import * as SDK from '../../core/sdk/sdk.js';
|
7
|
-
import type
|
7
|
+
import {type Issue, type IssueCategory} from './Issue.js';
|
8
8
|
import {IssuesManager} from './IssuesManager.js';
|
9
9
|
|
10
10
|
export type IssuesAssociatable = Readonly<SDK.NetworkRequest.NetworkRequest>|SDK.Cookie.Cookie|string;
|
@@ -5,7 +5,7 @@
|
|
5
5
|
import * as i18n from '../../core/i18n/i18n.js';
|
6
6
|
import * as Protocol from '../../generated/protocol.js';
|
7
7
|
|
8
|
-
import type
|
8
|
+
import {type MarkdownIssueDescription} from './MarkdownIssueDescription.js';
|
9
9
|
import {Issue, IssueKind, IssueCategory} from './Issue.js';
|
10
10
|
import type * as SDK from '../../core/sdk/sdk.js';
|
11
11
|
|
@@ -13,9 +13,9 @@ import {
|
|
13
13
|
trustedTypesPolicyViolationCode,
|
14
14
|
trustedTypesSinkViolationCode,
|
15
15
|
} from './ContentSecurityPolicyIssue.js';
|
16
|
-
|
17
|
-
import {toZeroBasedLocation} from './Issue.js';
|
18
|
-
import type
|
16
|
+
|
17
|
+
import {toZeroBasedLocation, type Issue, type IssueKind} from './Issue.js';
|
18
|
+
import {type IssueAddedEvent, type IssuesManager} from './IssuesManager.js';
|
19
19
|
import {Events} from './IssuesManagerEvents.js';
|
20
20
|
import {getIssueTitleFromMarkdownDescription} from './MarkdownIssueDescription.js';
|
21
21
|
|
@@ -7,8 +7,12 @@ import type * as SDK from '../../core/sdk/sdk.js';
|
|
7
7
|
import * as Protocol from '../../generated/protocol.js';
|
8
8
|
|
9
9
|
import {Issue, IssueCategory, IssueKind} from './Issue.js';
|
10
|
-
|
11
|
-
import {
|
10
|
+
|
11
|
+
import {
|
12
|
+
resolveLazyDescription,
|
13
|
+
type LazyMarkdownIssueDescription,
|
14
|
+
type MarkdownIssueDescription,
|
15
|
+
} from './MarkdownIssueDescription.js';
|
12
16
|
|
13
17
|
const UIStrings = {
|
14
18
|
/**
|