chrome-devtools-frontend 1.0.1657855 → 1.0.1661063
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/.agents/skills/evaluate-ai-css-completion/SKILL.md +133 -0
- package/.agents/skills/evaluate-ai-css-completion/scripts/evaluate.js +76 -0
- package/.agents/skills/migrate-chromium-test/SKILL.md +15 -70
- package/.agents/skills/ui-eng-vision-orchestrator/SKILL.md +37 -18
- package/.agents/skills/version-control/SKILL.md +8 -1
- package/AUTHORS +1 -0
- package/SECURITY.md +3 -0
- package/docs/get_the_code.md +6 -0
- package/eslint.config.mjs +7 -0
- package/extension-api/ExtensionAPI.d.ts +88 -0
- package/front_end/Tests.js +6 -6
- package/front_end/core/common/Gzip.ts +12 -5
- package/front_end/core/host/AidaClient.ts +35 -9
- package/front_end/core/host/GdpClient.ts +10 -7
- package/front_end/core/host/InspectorFrontendHost.ts +1 -0
- package/front_end/core/host/InspectorFrontendHostStub.ts +2 -0
- package/front_end/core/platform/StringUtilities.ts +55 -4
- package/front_end/core/sdk/AccessibilityModel.snapshot.txt +17 -0
- package/front_end/core/sdk/AccessibilityModel.ts +132 -2
- package/front_end/core/sdk/CPUThrottlingManager.ts +10 -5
- package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +2 -5
- package/front_end/core/sdk/ConsoleModel.ts +5 -5
- package/front_end/core/sdk/DOMDebuggerModel.ts +7 -1
- package/front_end/core/sdk/DOMModel.ts +33 -18
- package/front_end/core/sdk/DebuggerModel.ts +4 -4
- package/front_end/core/sdk/EventBreakpointsModel.ts +2 -0
- package/front_end/core/sdk/FrameManager.ts +1 -0
- package/front_end/core/sdk/IsolateManager.ts +1 -0
- package/front_end/core/sdk/NetworkManager.ts +59 -11
- package/front_end/core/sdk/NetworkRequest.ts +38 -1
- package/front_end/core/sdk/OverlayModel.ts +45 -6
- package/front_end/core/sdk/PageResourceLoader.ts +2 -0
- package/front_end/core/sdk/ResourceTreeModel.ts +6 -7
- package/front_end/core/sdk/ScreenCaptureModel.ts +2 -2
- package/front_end/core/sdk/ServerTiming.ts +17 -13
- package/front_end/core/sdk/ServiceWorkerCacheModel.ts +4 -2
- package/front_end/core/sdk/ServiceWorkerManager.ts +19 -5
- package/front_end/core/sdk/SourceMap.ts +5 -5
- package/front_end/core/sdk/SourceMapManager.ts +3 -2
- package/front_end/core/sdk/TargetManager.ts +14 -1
- package/front_end/core/sdk/TraceObject.ts +4 -2
- package/front_end/core/sdk/sdk-meta.ts +170 -0
- package/front_end/design_system_tokens.css +0 -5
- package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.ts +5 -2
- package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +26 -4
- package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +8 -3
- package/front_end/entrypoints/inspector_main/InspectorMain.ts +4 -4
- package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +2 -2
- package/front_end/entrypoints/inspector_main/RenderingOptions.ts +36 -37
- package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +15 -33
- package/front_end/entrypoints/js_app/js_app.ts +6 -5
- package/front_end/entrypoints/main/GlobalAiButton.ts +4 -4
- package/front_end/entrypoints/main/MainImpl.ts +20 -22
- package/front_end/entrypoints/main/main-meta.ts +42 -42
- package/front_end/entrypoints/node_app/node_app.ts +3 -2
- package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
- package/front_end/foundation/Universe.ts +44 -1
- package/front_end/generated/InspectorBackendCommands.ts +2 -2
- package/front_end/generated/SupportedCSSProperties.js +19 -12
- package/front_end/generated/protocol.ts +3 -1
- package/front_end/models/ai_assistance/AiConversation.ts +19 -17
- package/front_end/models/ai_assistance/AiHistoryStorage.ts +37 -14
- package/front_end/models/ai_assistance/AiUtils.ts +38 -42
- package/front_end/models/ai_assistance/agents/AiAgent.ts +5 -1
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +3 -2
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +2 -1
- package/front_end/models/ai_assistance/agents/StorageAgent.ts +7 -5
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +270 -286
- package/front_end/models/ai_assistance/data_formatters/UnitFormatters.ts +20 -0
- package/front_end/models/ai_assistance/performance/AICallTree.ts +3 -1
- package/front_end/models/ai_assistance/tools/ListNetworkRequests.ts +3 -2
- package/front_end/models/autofill_manager/AutofillManager.ts +3 -1
- package/front_end/models/bindings/CompilerScriptMapping.ts +7 -7
- package/front_end/models/bindings/ContentProviderBasedProject.ts +4 -4
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +5 -5
- package/front_end/models/bindings/DefaultScriptMapping.ts +3 -3
- package/front_end/models/bindings/NetworkProject.ts +5 -10
- package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +2 -1
- package/front_end/models/bindings/ResourceMapping.ts +3 -4
- package/front_end/models/bindings/ResourceScriptMapping.ts +2 -3
- package/front_end/models/bindings/ResourceUtils.ts +1 -1
- package/front_end/models/bindings/SASSSourceMapping.ts +11 -9
- package/front_end/models/bindings/StylesSourceMapping.ts +3 -3
- package/front_end/models/bindings/TempFile.ts +8 -3
- package/front_end/models/emulation/EmulatedDevices.ts +389 -8
- package/front_end/models/extensions/ExtensionAPI.ts +116 -52
- package/front_end/models/extensions/LanguageExtensionEndpoint.ts +13 -12
- package/front_end/models/formatter/ScriptFormatter.ts +8 -11
- package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -1
- package/front_end/models/issues_manager/ClientHintIssue.ts +1 -1
- package/front_end/models/issues_manager/ConnectionAllowlistIssue.ts +1 -1
- package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +7 -7
- package/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts +2 -2
- package/front_end/models/issues_manager/CookieIssue.ts +27 -16
- package/front_end/models/issues_manager/CorsIssue.ts +3 -3
- package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +2 -2
- package/front_end/models/issues_manager/DeprecationIssue.ts +3 -3
- package/front_end/models/issues_manager/EmailVerificationRequestIssue.ts +1 -1
- package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +1 -1
- package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +1 -1
- package/front_end/models/issues_manager/GenericIssue.ts +7 -7
- package/front_end/models/issues_manager/HeavyAdIssue.ts +3 -3
- package/front_end/models/issues_manager/Issue.ts +11 -12
- package/front_end/models/issues_manager/IssueAggregator.ts +0 -9
- package/front_end/models/issues_manager/IssueResolver.ts +2 -2
- package/front_end/models/issues_manager/IssuesManager.ts +136 -137
- package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
- package/front_end/models/issues_manager/PartitioningBlobURLIssue.ts +3 -3
- package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
- package/front_end/models/issues_manager/SRIMessageSignatureIssue.ts +2 -2
- package/front_end/models/issues_manager/SelectivePermissionsInterventionIssue.ts +2 -2
- package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +2 -2
- package/front_end/models/issues_manager/SharedDictionaryIssue.ts +1 -1
- package/front_end/models/issues_manager/UnencodedDigestIssue.ts +3 -3
- package/front_end/models/issues_manager/issues_manager.ts +0 -2
- package/front_end/models/javascript_metadata/NativeFunctions.js +5 -1
- package/front_end/models/persistence/AutomaticFileSystemWorkspaceBinding.ts +5 -0
- package/front_end/models/source_map_scopes/FunctionCodeResolver.ts +13 -10
- package/front_end/models/stack_trace/StackTraceModel.ts +3 -3
- package/front_end/models/text_utils/ContentData.ts +27 -0
- package/front_end/models/trace/helpers/SamplesIntegrator.ts +21 -5
- package/front_end/models/trace_source_maps_resolver/SourceMapsResolver.ts +29 -14
- package/front_end/models/web_mcp/WebMCPModel.ts +24 -6
- package/front_end/models/workspace/IgnoreListManager.ts +6 -6
- package/front_end/models/workspace/UISourceCode.ts +3 -3
- package/front_end/models/workspace/WorkspaceImpl.ts +10 -1
- package/front_end/models/workspace_diff/WorkspaceDiff.ts +10 -4
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +25 -22
- package/front_end/panels/ai_assistance/ExportConversation.ts +3 -4
- package/front_end/panels/ai_assistance/ai_assistance-meta.ts +3 -3
- package/front_end/panels/ai_assistance/components/ChatInput.ts +2 -2
- package/front_end/panels/ai_assistance/components/ChatMessage.ts +9 -1
- package/front_end/panels/ai_assistance/components/DisabledWidget.ts +2 -2
- package/front_end/panels/animation/AnimationTimeline.ts +17 -19
- package/front_end/panels/animation/AnimationUI.ts +5 -5
- package/front_end/panels/animation/animation-meta.ts +2 -2
- package/front_end/panels/application/ApplicationPanelSidebar.ts +4 -3
- package/front_end/panels/application/DeviceBoundSessionsView.ts +2 -6
- package/front_end/panels/application/FrameDetailsView.ts +1 -1
- package/front_end/panels/application/IndexedDBViews.ts +220 -266
- package/front_end/panels/application/OpenedWindowDetailsView.ts +1 -1
- package/front_end/panels/application/ResourcesPanel.ts +9 -2
- package/front_end/panels/application/ServiceWorkersView.ts +252 -211
- package/front_end/panels/application/StorageView.ts +97 -33
- package/front_end/panels/application/WebMCPView.ts +53 -44
- package/front_end/panels/application/components/AdsView.ts +201 -30
- package/front_end/panels/application/components/adsView.css +25 -0
- package/front_end/panels/application/indexedDBViews.css +38 -9
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +2 -2
- package/front_end/panels/application/preloading/helper/PreloadingForward.ts +2 -1
- package/front_end/panels/application/storageView.css +26 -9
- package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +5 -1
- package/front_end/panels/browser_debugger/browser_debugger-meta.ts +8 -6
- package/front_end/panels/common/DOMLinkifier.ts +1 -1
- package/front_end/panels/common/ExtensionServer.ts +119 -14
- package/front_end/panels/console/ConsoleContextSelector.ts +1 -1
- package/front_end/panels/console/ConsolePinPane.ts +2 -2
- package/front_end/panels/console/ConsolePrompt.ts +2 -2
- package/front_end/panels/console/ConsoleView.ts +3 -2
- package/front_end/panels/console/PromptBuilder.ts +2 -1
- package/front_end/panels/console/SymbolizedErrorWidget.ts +2 -1
- package/front_end/panels/console_counters/WarningErrorCounter.ts +2 -2
- package/front_end/panels/coverage/CoverageListView.ts +28 -28
- package/front_end/panels/coverage/CoverageModel.ts +2 -1
- package/front_end/panels/coverage/CoverageView.ts +22 -22
- package/front_end/panels/coverage/coverage-meta.ts +5 -5
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +36 -36
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +2 -2
- package/front_end/panels/css_overview/CSSOverviewStartView.ts +6 -6
- package/front_end/panels/css_overview/CSSOverviewUnusedDeclarations.ts +6 -6
- package/front_end/panels/css_overview/css_overview-meta.ts +2 -2
- package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +1 -1
- package/front_end/panels/elements/AccessibilityTreeUtils.ts +8 -102
- package/front_end/panels/elements/AccessibilityTreeView.ts +163 -70
- package/front_end/panels/elements/ElementsPanel.ts +17 -11
- package/front_end/panels/elements/ElementsTreeElement.ts +4 -1
- package/front_end/panels/elements/ElementsTreeOutline.ts +4 -4
- package/front_end/panels/elements/LayoutPane.ts +1 -1
- package/front_end/panels/elements/MetricsSidebarPane.ts +100 -34
- package/front_end/panels/elements/StylePropertiesSection.ts +2 -2
- package/front_end/panels/elements/StylePropertyTreeElement.ts +8 -2
- package/front_end/panels/elements/StylesSidebarPane.ts +1 -1
- package/front_end/panels/elements/components/AccessibilityTreeNode.ts +7 -18
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +2 -2
- package/front_end/panels/elements/components/QueryContainer.ts +1 -1
- package/front_end/panels/emulation/DeviceModeView.ts +52 -70
- package/front_end/panels/issues/AffectedDirectivesView.ts +1 -1
- package/front_end/panels/issues/AffectedResourcesView.ts +2 -1
- package/front_end/panels/issues/IssueView.ts +0 -2
- package/front_end/panels/issues/IssuesPane.ts +1 -8
- package/front_end/panels/js_timeline/js_timeline-meta.ts +3 -2
- package/front_end/panels/layer_viewer/LayerViewHost.ts +1 -1
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +3 -3
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +5 -5
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +4 -4
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +2 -2
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +6 -6
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +3 -3
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +8 -9
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +2 -2
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +1 -1
- package/front_end/panels/linear_memory_inspector/linear_memory_inspector-meta.ts +2 -2
- package/front_end/panels/network/NetworkDataGridNode.ts +124 -36
- package/front_end/panels/network/NetworkLogView.ts +9 -1
- package/front_end/panels/network/NetworkLogViewColumns.ts +18 -0
- package/front_end/panels/network/NetworkPanel.ts +2 -1
- package/front_end/panels/network/RequestPayloadView.ts +68 -20
- package/front_end/panels/network/RequestPreviewView.ts +7 -1
- package/front_end/panels/network/RequestTimingView.ts +95 -127
- package/front_end/panels/network/components/ResponseHeaderSection.ts +1 -1
- package/front_end/panels/network/forward/UIFilter.ts +1 -0
- package/front_end/panels/network/requestPayloadView.css +10 -0
- package/front_end/panels/performance_monitor/PerformanceMonitor.ts +12 -12
- package/front_end/panels/performance_monitor/performance_monitor-meta.ts +7 -7
- package/front_end/panels/profiler/HeapDetachedElementsView.ts +2 -2
- package/front_end/panels/profiler/HeapProfileView.ts +563 -51
- package/front_end/panels/profiler/HeapSnapshotView.ts +14 -9
- package/front_end/panels/profiler/ProfilesPanel.ts +13 -7
- package/front_end/panels/profiler/WritableProfileHeader.ts +152 -0
- package/front_end/panels/profiler/profiler.ts +2 -2
- package/front_end/panels/recorder/{components/ControlButton.ts → ControlButton.ts} +9 -10
- package/front_end/panels/recorder/{components/CreateRecordingView.ts → CreateRecordingView.ts} +59 -58
- package/front_end/panels/recorder/ExtensionView.ts +123 -0
- package/front_end/panels/recorder/RecorderController.ts +102 -92
- package/front_end/panels/recorder/{components/RecordingListView.ts → RecordingListView.ts} +22 -23
- package/front_end/panels/recorder/{components/RecordingView.ts → RecordingView.ts} +99 -96
- package/front_end/panels/recorder/{components/ReplaySection.ts → ReplaySection.ts} +20 -20
- package/front_end/panels/recorder/{components/SelectorPicker.ts → SelectorPicker.ts} +13 -13
- package/front_end/panels/recorder/{components/StepEditor.ts → StepEditor.ts} +367 -336
- package/front_end/panels/recorder/{components/StepView.ts → StepView.ts} +48 -49
- package/front_end/panels/recorder/{components/TimelineSection.ts → TimelineSection.ts} +2 -2
- package/front_end/panels/recorder/models/RecorderSettings.ts +2 -2
- package/front_end/panels/recorder/recorder-meta.ts +7 -7
- package/front_end/panels/recorder/recorder.ts +23 -1
- package/front_end/panels/recorder/{components/recordingView.css → recordingView.css} +1 -1
- package/front_end/panels/recorder/util/util.ts +113 -0
- package/front_end/panels/screencast/ScreencastApp.ts +1 -1
- package/front_end/panels/screencast/ScreencastView.ts +12 -12
- package/front_end/panels/search/SearchResultsPane.ts +4 -4
- package/front_end/panels/search/SearchView.ts +20 -20
- package/front_end/panels/security/SecurityModel.ts +7 -7
- package/front_end/panels/security/SecurityPanel.ts +99 -107
- package/front_end/panels/security/SecurityPanelSidebar.ts +7 -7
- package/front_end/panels/security/security-meta.ts +2 -2
- package/front_end/panels/sensors/LocationsSettingsTab.ts +19 -19
- package/front_end/panels/sensors/SensorsView.ts +27 -27
- package/front_end/panels/sensors/sensors-meta.ts +13 -167
- package/front_end/panels/settings/AISettingsTab.ts +98 -56
- package/front_end/panels/settings/EditFileSystemView.ts +2 -2
- package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +20 -20
- package/front_end/panels/settings/KeybindsSettingsTab.ts +20 -21
- package/front_end/panels/settings/SettingsScreen.ts +11 -11
- package/front_end/panels/settings/WorkspaceSettingsTab.ts +5 -5
- package/front_end/panels/settings/components/SyncSection.ts +12 -12
- package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +13 -13
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +31 -31
- package/front_end/panels/settings/emulation/emulation-meta.ts +1 -1
- package/front_end/panels/settings/settings-meta.ts +14 -14
- package/front_end/panels/sources/InplaceFormatterEditorAction.ts +2 -2
- package/front_end/panels/sources/NavigatorView.ts +7 -6
- package/front_end/panels/sources/ScopeChainSidebarPane.ts +83 -37
- package/front_end/panels/sources/SourcesNavigator.ts +22 -21
- package/front_end/panels/sources/SourcesView.ts +10 -1
- package/front_end/panels/sources/TabbedEditorContainer.ts +1 -1
- package/front_end/panels/sources/scopeChainSidebarPane.css +12 -4
- package/front_end/panels/sources/sources-meta.ts +4 -4
- package/front_end/panels/timeline/CompatibilityTracksAppender.ts +5 -2
- package/front_end/panels/timeline/IsolateSelector.ts +10 -8
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +2 -1
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +2 -1
- package/front_end/panels/timeline/TimelineFlameChartView.ts +1 -1
- package/front_end/panels/timeline/TimelinePanel.ts +20 -8
- package/front_end/panels/timeline/TimelineUIUtils.ts +149 -131
- package/front_end/panels/timeline/components/NetworkRequestDetails.ts +4 -2
- package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +4 -2
- package/front_end/panels/timeline/components/insights/ImageRef.ts +2 -1
- package/front_end/panels/timeline/timeline-meta.ts +3 -2
- package/front_end/panels/utils/utils.ts +7 -3
- package/front_end/panels/web_audio/WebAudioView.ts +17 -18
- package/front_end/panels/web_audio/web_audio-meta.ts +3 -3
- package/front_end/panels/whats_new/ReleaseNoteView.ts +1 -1
- package/front_end/panels/whats_new/whats_new-meta.ts +11 -11
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/lit/lib/async-directive.d.ts +2 -1
- package/front_end/third_party/lit/lib/async-directive.js +1 -1
- package/front_end/third_party/lit/lib/async-directive.js.map +1 -1
- package/front_end/third_party/lit/lib/decorators.d.ts +2 -1
- package/front_end/third_party/lit/lib/decorators.js.map +1 -1
- package/front_end/third_party/lit/lib/directive.d.ts +2 -1
- package/front_end/third_party/lit/lib/directive.js.map +1 -1
- package/front_end/third_party/lit/lib/directives.d.ts +2 -1
- package/front_end/third_party/lit/lib/directives.js +8 -8
- package/front_end/third_party/lit/lib/directives.js.map +1 -1
- package/front_end/third_party/lit/lib/lit.d.ts +2 -1
- package/front_end/third_party/lit/lib/lit.js +1 -1
- package/front_end/third_party/lit/lib/lit.js.map +1 -1
- package/front_end/third_party/lit/lib/static-html.d.ts +2 -1
- package/front_end/third_party/lit/lib/static-html.js +1 -1
- package/front_end/third_party/lit/lib/static-html.js.map +1 -1
- package/front_end/third_party/lit/package.json +2 -2
- package/front_end/third_party/lit/rebuild.sh +1 -1
- package/front_end/third_party/lit/src/async-directive.ts +5 -0
- package/front_end/ui/components/dialogs/Dialog.ts +1 -1
- package/front_end/ui/components/dialogs/ShortcutDialog.ts +1 -1
- package/front_end/ui/components/diff_view/DiffView.ts +2 -2
- package/front_end/ui/components/issue_counter/IssueCounter.ts +3 -3
- package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +5 -5
- package/front_end/ui/components/lists/List.ts +2 -2
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +1 -1
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +5 -5
- package/front_end/ui/components/settings/SettingCheckbox.ts +1 -1
- package/front_end/ui/components/snackbars/Snackbar.ts +1 -1
- package/front_end/ui/components/survey_link/SurveyLink.ts +3 -3
- package/front_end/ui/components/text_editor/config.ts +2 -2
- package/front_end/ui/components/tree_outline/TreeOutline.ts +34 -1
- package/front_end/ui/legacy/ReportView.ts +5 -0
- package/front_end/ui/legacy/Treeoutline.ts +6 -0
- package/front_end/ui/legacy/View.ts +1 -1
- package/front_end/ui/legacy/Widget.ts +14 -15
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +2 -0
- package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +8 -3
- package/front_end/ui/legacy/components/data_grid/data_grid.ts +1 -0
- package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +106 -38
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +7 -1
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +2 -1
- package/front_end/ui/legacy/components/utils/ImagePreview.ts +4 -2
- package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +10 -1
- package/front_end/ui/legacy/inspectorCommon.css +5 -0
- package/front_end/ui/visual_logging/KnownContextValues.ts +3 -0
- package/mcp/mcp.ts +2 -0
- package/package.json +4 -4
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +0 -247
- package/front_end/models/issues_manager/descriptions/arInsecureContext.md +0 -7
- package/front_end/models/issues_manager/descriptions/arInvalidInfoHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arInvalidRegisterOsSourceHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arInvalidRegisterOsTriggerHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arInvalidRegisterSourceHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arInvalidRegisterTriggerHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNavigationRegistrationWithoutTransientUserActivation.md +0 -6
- package/front_end/models/issues_manager/descriptions/arNoRegisterOsSourceHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNoRegisterOsTriggerHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNoRegisterSourceHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNoRegisterTriggerHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNoWebOrOsSupport.md +0 -4
- package/front_end/models/issues_manager/descriptions/arOsSourceIgnored.md +0 -18
- package/front_end/models/issues_manager/descriptions/arOsTriggerIgnored.md +0 -19
- package/front_end/models/issues_manager/descriptions/arPermissionPolicyDisabled.md +0 -8
- package/front_end/models/issues_manager/descriptions/arSourceAndTriggerHeaders.md +0 -9
- package/front_end/models/issues_manager/descriptions/arSourceIgnored.md +0 -13
- package/front_end/models/issues_manager/descriptions/arTriggerIgnored.md +0 -12
- package/front_end/models/issues_manager/descriptions/arUntrustworthyReportingOrigin.md +0 -10
- package/front_end/models/issues_manager/descriptions/arWebAndOsHeaders.md +0 -11
- package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +0 -182
- package/front_end/panels/profiler/ProfileView.ts +0 -611
- package/front_end/panels/recorder/components/ExtensionView.ts +0 -132
- package/front_end/panels/recorder/components/components.ts +0 -25
- package/front_end/panels/recorder/components/util.ts +0 -116
- /package/front_end/panels/recorder/{components/controlButton.css → controlButton.css} +0 -0
- /package/front_end/panels/recorder/{components/createRecordingView.css → createRecordingView.css} +0 -0
- /package/front_end/panels/recorder/{components/extensionView.css → extensionView.css} +0 -0
- /package/front_end/panels/recorder/{components/recordingListView.css → recordingListView.css} +0 -0
- /package/front_end/panels/recorder/{components/replaySection.css → replaySection.css} +0 -0
- /package/front_end/panels/recorder/{components/selectorPicker.css → selectorPicker.css} +0 -0
- /package/front_end/panels/recorder/{components/startView.css → startView.css} +0 -0
- /package/front_end/panels/recorder/{components/stepEditor.css → stepEditor.css} +0 -0
- /package/front_end/panels/recorder/{components/stepView.css → stepView.css} +0 -0
- /package/front_end/panels/recorder/{components/timelineSection.css → timelineSection.css} +0 -0
|
@@ -33,95 +33,94 @@ const {widget, widgetRef} = UI.Widget;
|
|
|
33
33
|
|
|
34
34
|
const UIStrings = {
|
|
35
35
|
/**
|
|
36
|
-
* @description
|
|
36
|
+
* @description Title of the overview section in the Security panel.
|
|
37
37
|
*/
|
|
38
38
|
securityOverview: 'Security overview',
|
|
39
39
|
/**
|
|
40
|
-
* @description
|
|
40
|
+
* @description Title of the section in the origin view indicating that the origin is secure.
|
|
41
41
|
*/
|
|
42
42
|
secure: 'Secure',
|
|
43
43
|
/**
|
|
44
|
-
* @description
|
|
44
|
+
* @description Tooltip for the neutral security state icon in the Security panel overview.
|
|
45
45
|
*/
|
|
46
46
|
info: 'Info',
|
|
47
47
|
/**
|
|
48
|
-
* @description
|
|
48
|
+
* @description Title of the section in the origin view indicating that the connection is not secure.
|
|
49
49
|
*/
|
|
50
50
|
notSecure: 'Not secure',
|
|
51
51
|
/**
|
|
52
|
-
* @description Text
|
|
52
|
+
* @description Text on the button that opens the certificate viewer.
|
|
53
53
|
*/
|
|
54
54
|
viewCertificate: 'View certificate',
|
|
55
55
|
/**
|
|
56
|
-
* @description
|
|
56
|
+
* @description Tooltip for the broken security state icon in the Security panel.
|
|
57
57
|
*/
|
|
58
58
|
notSecureBroken: 'Not secure (broken)',
|
|
59
59
|
/**
|
|
60
|
-
* @description Main summary
|
|
60
|
+
* @description Main summary in the Security panel when the page has been flagged as unsafe by Google Safe Browsing.
|
|
61
61
|
*/
|
|
62
62
|
thisPageIsDangerousFlaggedBy: 'This page is dangerous (flagged by Google Safe Browsing).',
|
|
63
63
|
/**
|
|
64
|
-
* @description
|
|
64
|
+
* @description Title of the security explanation when the page is flagged by Google Safe Browsing.
|
|
65
65
|
*/
|
|
66
66
|
flaggedByGoogleSafeBrowsing: 'Flagged by Google Safe Browsing',
|
|
67
67
|
/**
|
|
68
|
-
* @description Description of
|
|
68
|
+
* @description Description of the security explanation directing the user to check the page's status on Safe Browsing.
|
|
69
69
|
*/
|
|
70
|
-
toCheckThisPagesStatusVisit: 'To check this page
|
|
70
|
+
toCheckThisPagesStatusVisit: 'To check this page’s status, visit g.co/safebrowsingstatus.',
|
|
71
71
|
/**
|
|
72
|
-
* @description Main summary
|
|
72
|
+
* @description Main summary in the Security panel when the inspected page is an error page.
|
|
73
73
|
*/
|
|
74
74
|
thisIsAnErrorPage: 'This is an error page.',
|
|
75
75
|
/**
|
|
76
|
-
* @description Main summary
|
|
76
|
+
* @description Main summary in the Security panel when the site is accessed over unencrypted HTTP.
|
|
77
77
|
*/
|
|
78
78
|
thisPageIsInsecureUnencrypted: 'This page is insecure (unencrypted HTTP).',
|
|
79
79
|
/**
|
|
80
|
-
* @description Main summary
|
|
80
|
+
* @description Main summary in the Security panel when the page has a secure origin that does not use HTTPS.
|
|
81
81
|
*/
|
|
82
82
|
thisPageHasANonhttpsSecureOrigin: 'This page has a non-HTTPS secure origin.',
|
|
83
83
|
/**
|
|
84
|
-
* @description
|
|
84
|
+
* @description Summary of the security explanation when the page triggered a Chrome Safety Tip.
|
|
85
85
|
*/
|
|
86
86
|
thisPageIsSuspicious: 'This page is suspicious',
|
|
87
87
|
/**
|
|
88
|
-
* @description
|
|
88
|
+
* @description First part of the description in the Security panel when a page triggered a bad reputation Safety Tip.
|
|
89
89
|
*/
|
|
90
90
|
chromeHasDeterminedThatThisSiteS: 'Chrome has determined that this site could be fake or fraudulent.',
|
|
91
91
|
/**
|
|
92
|
-
* @description Second part of the
|
|
92
|
+
* @description Second part of the description in the Security panel when a page triggered a bad reputation Safety Tip.
|
|
93
93
|
*/
|
|
94
|
-
ifYouBelieveThisIsShownIn:
|
|
95
|
-
'If you believe this is shown in error please visit https://g.co/chrome/lookalike-warnings.',
|
|
94
|
+
ifYouBelieveThisIsShownIn: 'If you believe this is shown in error, visit https://g.co/chrome/lookalike-warnings.',
|
|
96
95
|
/**
|
|
97
|
-
* @description Summary of
|
|
96
|
+
* @description Summary of the security explanation when the visited domain looks similar to another known domain.
|
|
98
97
|
*/
|
|
99
98
|
possibleSpoofingUrl: 'Possible spoofing URL',
|
|
100
99
|
/**
|
|
101
|
-
* @description
|
|
100
|
+
* @description Description of the security explanation when the visited domain looks similar to another known domain.
|
|
102
101
|
* @example {wikipedia.org} PH1
|
|
103
102
|
*/
|
|
104
103
|
thisSitesHostnameLooksSimilarToP:
|
|
105
|
-
'This site
|
|
104
|
+
'This site’s hostname looks similar to {PH1}. Attackers sometimes mimic sites by making small, hard-to-see changes to the domain name.',
|
|
106
105
|
/**
|
|
107
|
-
* @description
|
|
106
|
+
* @description Second part of the description in the Security panel when a page triggered a lookalike domain Safety Tip.
|
|
108
107
|
*/
|
|
109
108
|
ifYouBelieveThisIsShownInErrorSafety:
|
|
110
|
-
'If you believe this is shown in error
|
|
109
|
+
'If you believe this is shown in error, visit https://g.co/chrome/lookalike-warnings.',
|
|
111
110
|
/**
|
|
112
|
-
* @description
|
|
111
|
+
* @description Main summary in the Security panel when the page triggered a Chrome Safety Tip.
|
|
113
112
|
*/
|
|
114
113
|
thisPageIsSuspiciousFlaggedBy: 'This page is suspicious (flagged by Chrome).',
|
|
115
114
|
/**
|
|
116
|
-
* @description
|
|
115
|
+
* @description Title of the certificate section in the Security panel explanations and origin view.
|
|
117
116
|
*/
|
|
118
117
|
certificate: 'Certificate',
|
|
119
118
|
/**
|
|
120
|
-
* @description Summary phrase
|
|
119
|
+
* @description Summary phrase in the Security panel when the site's certificate chain contains a SHA-1 signature.
|
|
121
120
|
*/
|
|
122
121
|
insecureSha: 'insecure (SHA-1)',
|
|
123
122
|
/**
|
|
124
|
-
* @description Description of
|
|
123
|
+
* @description Description of the security explanation when the site’s certificate chain contains a certificate signed using SHA-1.
|
|
125
124
|
*/
|
|
126
125
|
theCertificateChainForThisSite: 'The certificate chain for this site contains a certificate signed using SHA-1.',
|
|
127
126
|
/**
|
|
@@ -129,12 +128,12 @@ const UIStrings = {
|
|
|
129
128
|
*/
|
|
130
129
|
subjectAlternativeNameMissing: '`Subject Alternative Name` missing',
|
|
131
130
|
/**
|
|
132
|
-
* @description Description of
|
|
131
|
+
* @description Description of the security explanation when the site’s certificate is missing a Subject Alternative Name extension.
|
|
133
132
|
*/
|
|
134
133
|
theCertificateForThisSiteDoesNot:
|
|
135
|
-
'The certificate for this site
|
|
134
|
+
'The certificate for this site doesn’t contain a `Subject Alternative Name` extension containing a domain name or IP address.',
|
|
136
135
|
/**
|
|
137
|
-
* @description Summary phrase
|
|
136
|
+
* @description Summary phrase in the Security panel when the site's certificate is missing or invalid.
|
|
138
137
|
*/
|
|
139
138
|
missing: 'missing',
|
|
140
139
|
/**
|
|
@@ -143,7 +142,7 @@ const UIStrings = {
|
|
|
143
142
|
*/
|
|
144
143
|
thisSiteIsMissingAValidTrusted: 'This site is missing a valid, trusted certificate ({PH1}).',
|
|
145
144
|
/**
|
|
146
|
-
* @description Summary phrase
|
|
145
|
+
* @description Summary phrase in the Security panel when the site has a valid server certificate.
|
|
147
146
|
*/
|
|
148
147
|
validAndTrusted: 'valid and trusted',
|
|
149
148
|
/**
|
|
@@ -153,28 +152,28 @@ const UIStrings = {
|
|
|
153
152
|
theConnectionToThisSiteIsUsingA:
|
|
154
153
|
'The connection to this site is using a valid, trusted server certificate issued by {PH1}.',
|
|
155
154
|
/**
|
|
156
|
-
* @description Summary phrase
|
|
155
|
+
* @description Summary phrase in the Security panel when Public-Key-Pinning is bypassed due to a local root certificate.
|
|
157
156
|
*/
|
|
158
157
|
publickeypinningBypassed: 'Public-Key-Pinning bypassed',
|
|
159
158
|
/**
|
|
160
|
-
* @description Description of
|
|
159
|
+
* @description Description of the security explanation when Public-Key-Pinning is bypassed by a local root certificate.
|
|
161
160
|
*/
|
|
162
161
|
publickeypinningWasBypassedByA: 'Public-Key-Pinning was bypassed by a local root certificate.',
|
|
163
162
|
/**
|
|
164
|
-
* @description Summary
|
|
163
|
+
* @description Summary of the security explanation when the site's certificate is expiring soon.
|
|
165
164
|
*/
|
|
166
165
|
certificateExpiresSoon: 'Certificate expires soon',
|
|
167
166
|
/**
|
|
168
|
-
* @description Description
|
|
167
|
+
* @description Description of the security explanation when the site's certificate expires in less than 48 hours.
|
|
169
168
|
*/
|
|
170
169
|
theCertificateForThisSiteExpires:
|
|
171
170
|
'The certificate for this site expires in less than 48 hours and needs to be renewed.',
|
|
172
171
|
/**
|
|
173
|
-
* @description
|
|
172
|
+
* @description Title of the connection section in the Security panel explanations and origin view.
|
|
174
173
|
*/
|
|
175
174
|
connection: 'Connection',
|
|
176
175
|
/**
|
|
177
|
-
* @description Summary phrase
|
|
176
|
+
* @description Summary phrase in the Security panel when the site uses modern, secure connection settings.
|
|
178
177
|
*/
|
|
179
178
|
secureConnectionSettings: 'secure connection settings',
|
|
180
179
|
/**
|
|
@@ -186,244 +185,237 @@ const UIStrings = {
|
|
|
186
185
|
theConnectionToThisSiteIs:
|
|
187
186
|
'The connection to this site is encrypted and authenticated using {PH1}, {PH2}, and {PH3}.',
|
|
188
187
|
/**
|
|
189
|
-
* @description A recommendation to the site owner to use a modern TLS protocol
|
|
188
|
+
* @description A recommendation to the site owner to use a modern TLS protocol.
|
|
190
189
|
* @example {TLS 1.0} PH1
|
|
191
190
|
*/
|
|
192
191
|
sIsObsoleteEnableTlsOrLater: '{PH1} is obsolete. Enable TLS 1.2 or later.',
|
|
193
192
|
/**
|
|
194
|
-
* @description
|
|
193
|
+
* @description Recommendation to the site owner to enable an ECDHE-based cipher suite instead of RSA.
|
|
195
194
|
*/
|
|
196
195
|
rsaKeyExchangeIsObsoleteEnableAn: 'RSA key exchange is obsolete. Enable an ECDHE-based cipher suite.',
|
|
197
196
|
/**
|
|
198
|
-
* @description A recommendation to the site owner to use a modern TLS cipher
|
|
197
|
+
* @description A recommendation to the site owner to use a modern TLS cipher.
|
|
199
198
|
* @example {3DES_EDE_CBC} PH1
|
|
200
199
|
*/
|
|
201
200
|
sIsObsoleteEnableAnAesgcmbased: '{PH1} is obsolete. Enable an AES-GCM-based cipher suite.',
|
|
202
201
|
/**
|
|
203
|
-
* @description
|
|
202
|
+
* @description Recommendation to the site owner to enable a SHA-2 server signature algorithm instead of SHA-1.
|
|
204
203
|
*/
|
|
205
204
|
theServerSignatureUsesShaWhichIs:
|
|
206
205
|
'The server signature uses SHA-1, which is obsolete. Enable a SHA-2 signature algorithm instead. (Note this is different from the signature in the certificate.)',
|
|
207
206
|
/**
|
|
208
|
-
* @description Summary phrase
|
|
207
|
+
* @description Summary phrase in the Security panel when the site uses outdated SSL settings (protocol, key exchange, or cipher).
|
|
209
208
|
*/
|
|
210
209
|
obsoleteConnectionSettings: 'obsolete connection settings',
|
|
211
210
|
/**
|
|
212
|
-
* @description
|
|
211
|
+
* @description Title of the resources section in the Security panel explanations.
|
|
213
212
|
*/
|
|
214
213
|
resources: 'Resources',
|
|
215
214
|
/**
|
|
216
|
-
* @description Summary
|
|
215
|
+
* @description Summary phrase in the Security panel when the page ran active mixed content.
|
|
217
216
|
*/
|
|
218
217
|
activeMixedContent: 'active mixed content',
|
|
219
218
|
/**
|
|
220
|
-
* @description Description
|
|
219
|
+
* @description Description of the security explanation when active mixed content (such as scripts or iframes) was allowed to run on the site.
|
|
221
220
|
*/
|
|
222
221
|
youHaveRecentlyAllowedNonsecure:
|
|
223
222
|
'You have recently allowed non-secure content (such as scripts or iframes) to run on this site.',
|
|
224
223
|
/**
|
|
225
|
-
* @description Summary
|
|
224
|
+
* @description Summary phrase in the Security panel when the page displayed passive mixed content.
|
|
226
225
|
*/
|
|
227
226
|
mixedContent: 'mixed content',
|
|
228
227
|
/**
|
|
229
|
-
* @description Description
|
|
228
|
+
* @description Description of the security explanation when the page includes resources loaded over HTTP.
|
|
230
229
|
*/
|
|
231
230
|
thisPageIncludesHttpResources: 'This page includes HTTP resources.',
|
|
232
231
|
/**
|
|
233
|
-
* @description Summary
|
|
232
|
+
* @description Summary phrase in the Security panel when the page contains a form with a non-secure action attribute.
|
|
234
233
|
*/
|
|
235
234
|
nonsecureForm: 'non-secure form',
|
|
236
235
|
/**
|
|
237
|
-
* @description Description
|
|
236
|
+
* @description Description of the security explanation when the page includes a form with a non-secure action attribute.
|
|
238
237
|
*/
|
|
239
|
-
thisPageIncludesAFormWithA: 'This page includes a form with a non-secure
|
|
238
|
+
thisPageIncludesAFormWithA: 'This page includes a form with a non-secure “action” attribute.',
|
|
240
239
|
/**
|
|
241
|
-
* @description Summary
|
|
240
|
+
* @description Summary phrase in the Security panel when active content with certificate errors was run on the site.
|
|
242
241
|
*/
|
|
243
242
|
activeContentWithCertificate: 'active content with certificate errors',
|
|
244
243
|
/**
|
|
245
|
-
* @description Description
|
|
244
|
+
* @description Description of the security explanation when active content loaded with certificate errors was allowed to run on the site.
|
|
246
245
|
*/
|
|
247
246
|
youHaveRecentlyAllowedContent:
|
|
248
247
|
'You have recently allowed content loaded with certificate errors (such as scripts or iframes) to run on this site.',
|
|
249
248
|
/**
|
|
250
|
-
* @description Summary
|
|
249
|
+
* @description Summary phrase in the Security panel when the page displayed content loaded with certificate errors.
|
|
251
250
|
*/
|
|
252
251
|
contentWithCertificateErrors: 'content with certificate errors',
|
|
253
252
|
/**
|
|
254
|
-
* @description Description
|
|
253
|
+
* @description Description of the security explanation when the page includes resources loaded with certificate errors.
|
|
255
254
|
*/
|
|
256
255
|
thisPageIncludesResourcesThat: 'This page includes resources that were loaded with certificate errors.',
|
|
257
256
|
/**
|
|
258
|
-
* @description Summary
|
|
257
|
+
* @description Summary phrase in the Security panel when all resources on the page are served securely.
|
|
259
258
|
*/
|
|
260
259
|
allServedSecurely: 'all served securely',
|
|
261
260
|
/**
|
|
262
|
-
* @description Description
|
|
261
|
+
* @description Description of the security explanation when all resources on the page are served securely.
|
|
263
262
|
*/
|
|
264
263
|
allResourcesOnThisPageAreServed: 'All resources on this page are served securely.',
|
|
265
264
|
/**
|
|
266
|
-
* @description
|
|
265
|
+
* @description Title of the security explanation when mixed content requests were blocked on the page.
|
|
267
266
|
*/
|
|
268
267
|
blockedMixedContent: 'Blocked mixed content',
|
|
269
268
|
/**
|
|
270
|
-
* @description
|
|
269
|
+
* @description Description of the security explanation when non-secure resources requested by the page were blocked.
|
|
271
270
|
*/
|
|
272
271
|
yourPageRequestedNonsecure: 'Your page requested non-secure resources that were blocked.',
|
|
273
272
|
/**
|
|
274
|
-
* @description
|
|
273
|
+
* @description Prompt in the Security panel instructing the user to reload the page to record HTTP requests.
|
|
275
274
|
*/
|
|
276
275
|
reloadThePageToRecordRequestsFor: 'Reload the page to record requests for HTTP resources.',
|
|
277
276
|
/**
|
|
278
|
-
* @description Link text in the Security
|
|
279
|
-
* Network panel. Requests refers to network requests. Each request is a piece of data transmitted
|
|
280
|
-
* from the current user's browser to a remote server.
|
|
277
|
+
* @description Link text in the Security panel. Clicking the link navigates the user to the Network panel. Requests refers to network requests. Each request is a piece of data transmitted from the current user’s browser to a remote server.
|
|
281
278
|
*/
|
|
282
279
|
viewDRequestsInNetworkPanel:
|
|
283
|
-
'{n, plural, =1 {View # request in Network
|
|
280
|
+
'{n, plural, =1 {View # request in Network panel} other {View # requests in Network panel}}',
|
|
284
281
|
/**
|
|
285
|
-
* @description
|
|
282
|
+
* @description Title of the origin header in the origin view of the Security panel.
|
|
286
283
|
*/
|
|
287
284
|
origin: 'Origin',
|
|
288
285
|
/**
|
|
289
|
-
* @description Text in
|
|
286
|
+
* @description Text on the button in the origin view that navigates to the Network panel filtered by origin.
|
|
290
287
|
*/
|
|
291
|
-
viewRequestsInNetworkPanel: 'View requests in Network
|
|
288
|
+
viewRequestsInNetworkPanel: 'View requests in Network panel',
|
|
292
289
|
/**
|
|
293
|
-
* @description
|
|
290
|
+
* @description Label for the protocol row in the connection details table of the Security panel.
|
|
294
291
|
*/
|
|
295
292
|
protocol: 'Protocol',
|
|
296
293
|
/**
|
|
297
|
-
* @description
|
|
298
|
-
*established encryption keys.
|
|
294
|
+
* @description Label for the key exchange row in the connection details table, referring to how the TLS handshake established encryption keys.
|
|
299
295
|
*/
|
|
300
296
|
keyExchange: 'Key exchange',
|
|
301
297
|
/**
|
|
302
|
-
* @description
|
|
303
|
-
*encrypted data.
|
|
298
|
+
* @description Label for the cipher row in the connection details table, referring to how the TLS handshake encrypted data.
|
|
304
299
|
*/
|
|
305
300
|
cipher: 'Cipher',
|
|
306
301
|
/**
|
|
307
|
-
* @description
|
|
308
|
-
*used by the server for authenticate in the TLS handshake.
|
|
302
|
+
* @description Label for the server signature row in the connection details table, referring to the signature algorithm used by the server for authentication in the TLS handshake.
|
|
309
303
|
*/
|
|
310
304
|
serverSignature: 'Server signature',
|
|
311
305
|
/**
|
|
312
|
-
* @description
|
|
313
|
-
*message in the TLS handshake was encrypted.
|
|
306
|
+
* @description Label for the Encrypted ClientHello row in the connection details table, referring to whether the ClientHello message in the TLS handshake was encrypted.
|
|
314
307
|
*/
|
|
315
308
|
encryptedClientHello: 'Encrypted ClientHello',
|
|
316
309
|
/**
|
|
317
|
-
* @description
|
|
310
|
+
* @description Title of the Certificate Transparency section in the origin view of the Security panel.
|
|
318
311
|
*/
|
|
319
312
|
certificateTransparency: 'Certificate Transparency',
|
|
320
313
|
/**
|
|
321
|
-
* @description
|
|
314
|
+
* @description Label for the subject row in the certificate details table of the Security panel.
|
|
322
315
|
*/
|
|
323
316
|
subject: 'Subject',
|
|
324
317
|
/**
|
|
325
|
-
* @description
|
|
318
|
+
* @description Label for the valid from date row in the certificate details table of the Security panel.
|
|
326
319
|
*/
|
|
327
320
|
validFrom: 'Valid from',
|
|
328
321
|
/**
|
|
329
|
-
* @description
|
|
322
|
+
* @description Label for the valid until date row in the certificate details table of the Security panel.
|
|
330
323
|
*/
|
|
331
324
|
validUntil: 'Valid until',
|
|
332
325
|
/**
|
|
333
|
-
* @description
|
|
326
|
+
* @description Label for the issuer row in the certificate details table of the Security panel.
|
|
334
327
|
*/
|
|
335
328
|
issuer: 'Issuer',
|
|
336
329
|
/**
|
|
337
|
-
* @description Text in
|
|
330
|
+
* @description Text on the button in the origin view that opens the full certificate viewer dialog.
|
|
338
331
|
*/
|
|
339
332
|
openFullCertificateDetails: 'Open full certificate details',
|
|
340
333
|
/**
|
|
341
|
-
* @description
|
|
334
|
+
* @description Label for a Signed Certificate Timestamp (SCT) row in the Certificate Transparency summary table.
|
|
342
335
|
*/
|
|
343
336
|
sct: 'SCT',
|
|
344
337
|
/**
|
|
345
|
-
* @description
|
|
338
|
+
* @description Label for the log name row in the Certificate Transparency details table.
|
|
346
339
|
*/
|
|
347
340
|
logName: 'Log name',
|
|
348
341
|
/**
|
|
349
|
-
* @description
|
|
342
|
+
* @description Label for the log ID row in the Certificate Transparency details table.
|
|
350
343
|
*/
|
|
351
344
|
logId: 'Log ID',
|
|
352
345
|
/**
|
|
353
|
-
* @description
|
|
346
|
+
* @description Label for the validation status row in the Certificate Transparency details table.
|
|
354
347
|
*/
|
|
355
348
|
validationStatus: 'Validation status',
|
|
356
349
|
/**
|
|
357
|
-
* @description
|
|
350
|
+
* @description Label for the source row in the Certificate Transparency details table.
|
|
358
351
|
*/
|
|
359
352
|
source: 'Source',
|
|
360
353
|
/**
|
|
361
|
-
* @description Label for a date/time string in the Security panel. It indicates the time at which
|
|
362
|
-
* a security certificate was issued (created by an authority and distributed).
|
|
354
|
+
* @description Label for a date/time string in the Security panel. It indicates the time at which a security certificate was issued (created by an authority and distributed).
|
|
363
355
|
*/
|
|
364
356
|
issuedAt: 'Issued at',
|
|
365
357
|
/**
|
|
366
|
-
* @description
|
|
358
|
+
* @description Label for the hash algorithm row in the Certificate Transparency details table.
|
|
367
359
|
*/
|
|
368
360
|
hashAlgorithm: 'Hash algorithm',
|
|
369
361
|
/**
|
|
370
|
-
* @description
|
|
362
|
+
* @description Label for the signature algorithm row in the Certificate Transparency details table.
|
|
371
363
|
*/
|
|
372
364
|
signatureAlgorithm: 'Signature algorithm',
|
|
373
365
|
/**
|
|
374
|
-
* @description
|
|
366
|
+
* @description Label for the signature data row in the Certificate Transparency details table.
|
|
375
367
|
*/
|
|
376
368
|
signatureData: 'Signature data',
|
|
377
369
|
/**
|
|
378
|
-
* @description
|
|
370
|
+
* @description Text on the button in the Certificate Transparency section to show detailed SCT information.
|
|
379
371
|
*/
|
|
380
372
|
showFullDetails: 'Show full details',
|
|
381
373
|
/**
|
|
382
|
-
* @description
|
|
374
|
+
* @description Text on the button in the Certificate Transparency section to hide detailed SCT information.
|
|
383
375
|
*/
|
|
384
376
|
hideFullDetails: 'Hide full details',
|
|
385
377
|
/**
|
|
386
|
-
* @description
|
|
378
|
+
* @description Note in the Certificate Transparency section indicating that the request complies with Chrome's policy.
|
|
387
379
|
*/
|
|
388
|
-
thisRequestCompliesWithChromes: 'This request complies with
|
|
380
|
+
thisRequestCompliesWithChromes: 'This request complies with Chrome’s Certificate Transparency policy.',
|
|
389
381
|
/**
|
|
390
|
-
* @description
|
|
382
|
+
* @description Note in the Certificate Transparency section indicating that the request does not comply with Chrome's policy.
|
|
391
383
|
*/
|
|
392
|
-
thisRequestDoesNotComplyWith: 'This request
|
|
384
|
+
thisRequestDoesNotComplyWith: 'This request doesn’t comply with Chrome’s Certificate Transparency policy.',
|
|
393
385
|
/**
|
|
394
|
-
* @description
|
|
386
|
+
* @description Note in the origin view warning that the response was loaded from cache and some details may be missing.
|
|
395
387
|
*/
|
|
396
388
|
thisResponseWasLoadedFromCache: 'This response was loaded from cache. Some security details might be missing.',
|
|
397
389
|
/**
|
|
398
|
-
* @description
|
|
390
|
+
* @description Note in the origin view stating that the displayed details are from the first inspected response.
|
|
399
391
|
*/
|
|
400
392
|
theSecurityDetailsAboveAreFrom: 'The security details above are from the first inspected response.',
|
|
401
393
|
/**
|
|
402
|
-
* @description
|
|
394
|
+
* @description Note in the origin view when the origin is secure without using HTTPS (for example, chrome:// or about:).
|
|
403
395
|
*/
|
|
404
396
|
thisOriginIsANonhttpsSecure: 'This origin is a non-HTTPS secure origin.',
|
|
405
397
|
/**
|
|
406
|
-
* @description
|
|
398
|
+
* @description Note in the origin view when the connection to the origin isn't secure.
|
|
407
399
|
*/
|
|
408
|
-
yourConnectionToThisOriginIsNot: 'Your connection to this origin
|
|
400
|
+
yourConnectionToThisOriginIsNot: 'Your connection to this origin isn’t secure.',
|
|
409
401
|
/**
|
|
410
|
-
* @description
|
|
402
|
+
* @description Title of the section in the origin view when no security information is available.
|
|
411
403
|
*/
|
|
412
404
|
noSecurityInformation: 'No security information',
|
|
413
405
|
/**
|
|
414
|
-
* @description
|
|
406
|
+
* @description Note in the origin view indicating that no security details are available for the origin.
|
|
415
407
|
*/
|
|
416
408
|
noSecurityDetailsAreAvailableFor: 'No security details are available for this origin.',
|
|
417
409
|
/**
|
|
418
|
-
* @description
|
|
410
|
+
* @description Text displayed in the Subject Alternative Name (SAN) field when no SANs are present.
|
|
419
411
|
*/
|
|
420
412
|
na: '(n/a)',
|
|
421
413
|
/**
|
|
422
|
-
* @description
|
|
414
|
+
* @description Button text to collapse the Subject Alternative Name list when expanded.
|
|
423
415
|
*/
|
|
424
416
|
showLess: 'Show less',
|
|
425
417
|
/**
|
|
426
|
-
* @description
|
|
418
|
+
* @description Button text to expand the Subject Alternative Name list showing the total count.
|
|
427
419
|
* @example {2} PH1
|
|
428
420
|
*/
|
|
429
421
|
showMoreSTotal: 'Show more ({PH1} total)',
|
|
@@ -23,31 +23,31 @@ import sidebarStyles from './sidebar.css.js';
|
|
|
23
23
|
|
|
24
24
|
const UIStrings = {
|
|
25
25
|
/**
|
|
26
|
-
* @description Section title for the
|
|
26
|
+
* @description Section title for the Security panel's sidebar.
|
|
27
27
|
*/
|
|
28
28
|
security: 'Security',
|
|
29
29
|
/**
|
|
30
|
-
* @description
|
|
30
|
+
* @description Title of the tree item in the Security panel sidebar representing the main origin.
|
|
31
31
|
*/
|
|
32
32
|
mainOrigin: 'Main origin',
|
|
33
33
|
/**
|
|
34
|
-
* @description
|
|
34
|
+
* @description Title of the tree group in the Security panel sidebar for non-secure origins.
|
|
35
35
|
*/
|
|
36
36
|
nonsecureOrigins: 'Non-secure origins',
|
|
37
37
|
/**
|
|
38
|
-
* @description
|
|
38
|
+
* @description Title of the tree group in the Security panel sidebar for secure origins.
|
|
39
39
|
*/
|
|
40
40
|
secureOrigins: 'Secure origins',
|
|
41
41
|
/**
|
|
42
|
-
* @description
|
|
42
|
+
* @description Title of the tree group in the Security panel sidebar for unknown or canceled origins.
|
|
43
43
|
*/
|
|
44
44
|
unknownCanceled: 'Unknown / canceled',
|
|
45
45
|
/**
|
|
46
|
-
* @description Title
|
|
46
|
+
* @description Title of the overview tree item in the Security panel sidebar.
|
|
47
47
|
*/
|
|
48
48
|
overview: 'Overview',
|
|
49
49
|
/**
|
|
50
|
-
* @description
|
|
50
|
+
* @description Message shown in the Security panel sidebar prompting the user to reload the page to record origins.
|
|
51
51
|
*/
|
|
52
52
|
reloadToViewDetails: 'Reload to view details',
|
|
53
53
|
} as const;
|
|
@@ -9,11 +9,11 @@ import type * as Security from './security.js';
|
|
|
9
9
|
|
|
10
10
|
const UIStrings = {
|
|
11
11
|
/**
|
|
12
|
-
* @description
|
|
12
|
+
* @description Title of the Security panel.
|
|
13
13
|
*/
|
|
14
14
|
security: 'Security',
|
|
15
15
|
/**
|
|
16
|
-
* @description
|
|
16
|
+
* @description Command in the Command Menu to show the Security panel.
|
|
17
17
|
*/
|
|
18
18
|
showSecurity: 'Show Security',
|
|
19
19
|
} as const;
|