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.
Files changed (370) hide show
  1. package/.agents/skills/evaluate-ai-css-completion/SKILL.md +133 -0
  2. package/.agents/skills/evaluate-ai-css-completion/scripts/evaluate.js +76 -0
  3. package/.agents/skills/migrate-chromium-test/SKILL.md +15 -70
  4. package/.agents/skills/ui-eng-vision-orchestrator/SKILL.md +37 -18
  5. package/.agents/skills/version-control/SKILL.md +8 -1
  6. package/AUTHORS +1 -0
  7. package/SECURITY.md +3 -0
  8. package/docs/get_the_code.md +6 -0
  9. package/eslint.config.mjs +7 -0
  10. package/extension-api/ExtensionAPI.d.ts +88 -0
  11. package/front_end/Tests.js +6 -6
  12. package/front_end/core/common/Gzip.ts +12 -5
  13. package/front_end/core/host/AidaClient.ts +35 -9
  14. package/front_end/core/host/GdpClient.ts +10 -7
  15. package/front_end/core/host/InspectorFrontendHost.ts +1 -0
  16. package/front_end/core/host/InspectorFrontendHostStub.ts +2 -0
  17. package/front_end/core/platform/StringUtilities.ts +55 -4
  18. package/front_end/core/sdk/AccessibilityModel.snapshot.txt +17 -0
  19. package/front_end/core/sdk/AccessibilityModel.ts +132 -2
  20. package/front_end/core/sdk/CPUThrottlingManager.ts +10 -5
  21. package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +2 -5
  22. package/front_end/core/sdk/ConsoleModel.ts +5 -5
  23. package/front_end/core/sdk/DOMDebuggerModel.ts +7 -1
  24. package/front_end/core/sdk/DOMModel.ts +33 -18
  25. package/front_end/core/sdk/DebuggerModel.ts +4 -4
  26. package/front_end/core/sdk/EventBreakpointsModel.ts +2 -0
  27. package/front_end/core/sdk/FrameManager.ts +1 -0
  28. package/front_end/core/sdk/IsolateManager.ts +1 -0
  29. package/front_end/core/sdk/NetworkManager.ts +59 -11
  30. package/front_end/core/sdk/NetworkRequest.ts +38 -1
  31. package/front_end/core/sdk/OverlayModel.ts +45 -6
  32. package/front_end/core/sdk/PageResourceLoader.ts +2 -0
  33. package/front_end/core/sdk/ResourceTreeModel.ts +6 -7
  34. package/front_end/core/sdk/ScreenCaptureModel.ts +2 -2
  35. package/front_end/core/sdk/ServerTiming.ts +17 -13
  36. package/front_end/core/sdk/ServiceWorkerCacheModel.ts +4 -2
  37. package/front_end/core/sdk/ServiceWorkerManager.ts +19 -5
  38. package/front_end/core/sdk/SourceMap.ts +5 -5
  39. package/front_end/core/sdk/SourceMapManager.ts +3 -2
  40. package/front_end/core/sdk/TargetManager.ts +14 -1
  41. package/front_end/core/sdk/TraceObject.ts +4 -2
  42. package/front_end/core/sdk/sdk-meta.ts +170 -0
  43. package/front_end/design_system_tokens.css +0 -5
  44. package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.ts +5 -2
  45. package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +26 -4
  46. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +8 -3
  47. package/front_end/entrypoints/inspector_main/InspectorMain.ts +4 -4
  48. package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +2 -2
  49. package/front_end/entrypoints/inspector_main/RenderingOptions.ts +36 -37
  50. package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +15 -33
  51. package/front_end/entrypoints/js_app/js_app.ts +6 -5
  52. package/front_end/entrypoints/main/GlobalAiButton.ts +4 -4
  53. package/front_end/entrypoints/main/MainImpl.ts +20 -22
  54. package/front_end/entrypoints/main/main-meta.ts +42 -42
  55. package/front_end/entrypoints/node_app/node_app.ts +3 -2
  56. package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
  57. package/front_end/foundation/Universe.ts +44 -1
  58. package/front_end/generated/InspectorBackendCommands.ts +2 -2
  59. package/front_end/generated/SupportedCSSProperties.js +19 -12
  60. package/front_end/generated/protocol.ts +3 -1
  61. package/front_end/models/ai_assistance/AiConversation.ts +19 -17
  62. package/front_end/models/ai_assistance/AiHistoryStorage.ts +37 -14
  63. package/front_end/models/ai_assistance/AiUtils.ts +38 -42
  64. package/front_end/models/ai_assistance/agents/AiAgent.ts +5 -1
  65. package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +3 -2
  66. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +2 -1
  67. package/front_end/models/ai_assistance/agents/StorageAgent.ts +7 -5
  68. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +270 -286
  69. package/front_end/models/ai_assistance/data_formatters/UnitFormatters.ts +20 -0
  70. package/front_end/models/ai_assistance/performance/AICallTree.ts +3 -1
  71. package/front_end/models/ai_assistance/tools/ListNetworkRequests.ts +3 -2
  72. package/front_end/models/autofill_manager/AutofillManager.ts +3 -1
  73. package/front_end/models/bindings/CompilerScriptMapping.ts +7 -7
  74. package/front_end/models/bindings/ContentProviderBasedProject.ts +4 -4
  75. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +5 -5
  76. package/front_end/models/bindings/DefaultScriptMapping.ts +3 -3
  77. package/front_end/models/bindings/NetworkProject.ts +5 -10
  78. package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +2 -1
  79. package/front_end/models/bindings/ResourceMapping.ts +3 -4
  80. package/front_end/models/bindings/ResourceScriptMapping.ts +2 -3
  81. package/front_end/models/bindings/ResourceUtils.ts +1 -1
  82. package/front_end/models/bindings/SASSSourceMapping.ts +11 -9
  83. package/front_end/models/bindings/StylesSourceMapping.ts +3 -3
  84. package/front_end/models/bindings/TempFile.ts +8 -3
  85. package/front_end/models/emulation/EmulatedDevices.ts +389 -8
  86. package/front_end/models/extensions/ExtensionAPI.ts +116 -52
  87. package/front_end/models/extensions/LanguageExtensionEndpoint.ts +13 -12
  88. package/front_end/models/formatter/ScriptFormatter.ts +8 -11
  89. package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -1
  90. package/front_end/models/issues_manager/ClientHintIssue.ts +1 -1
  91. package/front_end/models/issues_manager/ConnectionAllowlistIssue.ts +1 -1
  92. package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +7 -7
  93. package/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts +2 -2
  94. package/front_end/models/issues_manager/CookieIssue.ts +27 -16
  95. package/front_end/models/issues_manager/CorsIssue.ts +3 -3
  96. package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +2 -2
  97. package/front_end/models/issues_manager/DeprecationIssue.ts +3 -3
  98. package/front_end/models/issues_manager/EmailVerificationRequestIssue.ts +1 -1
  99. package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +1 -1
  100. package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +1 -1
  101. package/front_end/models/issues_manager/GenericIssue.ts +7 -7
  102. package/front_end/models/issues_manager/HeavyAdIssue.ts +3 -3
  103. package/front_end/models/issues_manager/Issue.ts +11 -12
  104. package/front_end/models/issues_manager/IssueAggregator.ts +0 -9
  105. package/front_end/models/issues_manager/IssueResolver.ts +2 -2
  106. package/front_end/models/issues_manager/IssuesManager.ts +136 -137
  107. package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
  108. package/front_end/models/issues_manager/PartitioningBlobURLIssue.ts +3 -3
  109. package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
  110. package/front_end/models/issues_manager/SRIMessageSignatureIssue.ts +2 -2
  111. package/front_end/models/issues_manager/SelectivePermissionsInterventionIssue.ts +2 -2
  112. package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +2 -2
  113. package/front_end/models/issues_manager/SharedDictionaryIssue.ts +1 -1
  114. package/front_end/models/issues_manager/UnencodedDigestIssue.ts +3 -3
  115. package/front_end/models/issues_manager/issues_manager.ts +0 -2
  116. package/front_end/models/javascript_metadata/NativeFunctions.js +5 -1
  117. package/front_end/models/persistence/AutomaticFileSystemWorkspaceBinding.ts +5 -0
  118. package/front_end/models/source_map_scopes/FunctionCodeResolver.ts +13 -10
  119. package/front_end/models/stack_trace/StackTraceModel.ts +3 -3
  120. package/front_end/models/text_utils/ContentData.ts +27 -0
  121. package/front_end/models/trace/helpers/SamplesIntegrator.ts +21 -5
  122. package/front_end/models/trace_source_maps_resolver/SourceMapsResolver.ts +29 -14
  123. package/front_end/models/web_mcp/WebMCPModel.ts +24 -6
  124. package/front_end/models/workspace/IgnoreListManager.ts +6 -6
  125. package/front_end/models/workspace/UISourceCode.ts +3 -3
  126. package/front_end/models/workspace/WorkspaceImpl.ts +10 -1
  127. package/front_end/models/workspace_diff/WorkspaceDiff.ts +10 -4
  128. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +25 -22
  129. package/front_end/panels/ai_assistance/ExportConversation.ts +3 -4
  130. package/front_end/panels/ai_assistance/ai_assistance-meta.ts +3 -3
  131. package/front_end/panels/ai_assistance/components/ChatInput.ts +2 -2
  132. package/front_end/panels/ai_assistance/components/ChatMessage.ts +9 -1
  133. package/front_end/panels/ai_assistance/components/DisabledWidget.ts +2 -2
  134. package/front_end/panels/animation/AnimationTimeline.ts +17 -19
  135. package/front_end/panels/animation/AnimationUI.ts +5 -5
  136. package/front_end/panels/animation/animation-meta.ts +2 -2
  137. package/front_end/panels/application/ApplicationPanelSidebar.ts +4 -3
  138. package/front_end/panels/application/DeviceBoundSessionsView.ts +2 -6
  139. package/front_end/panels/application/FrameDetailsView.ts +1 -1
  140. package/front_end/panels/application/IndexedDBViews.ts +220 -266
  141. package/front_end/panels/application/OpenedWindowDetailsView.ts +1 -1
  142. package/front_end/panels/application/ResourcesPanel.ts +9 -2
  143. package/front_end/panels/application/ServiceWorkersView.ts +252 -211
  144. package/front_end/panels/application/StorageView.ts +97 -33
  145. package/front_end/panels/application/WebMCPView.ts +53 -44
  146. package/front_end/panels/application/components/AdsView.ts +201 -30
  147. package/front_end/panels/application/components/adsView.css +25 -0
  148. package/front_end/panels/application/indexedDBViews.css +38 -9
  149. package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +2 -2
  150. package/front_end/panels/application/preloading/helper/PreloadingForward.ts +2 -1
  151. package/front_end/panels/application/storageView.css +26 -9
  152. package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +5 -1
  153. package/front_end/panels/browser_debugger/browser_debugger-meta.ts +8 -6
  154. package/front_end/panels/common/DOMLinkifier.ts +1 -1
  155. package/front_end/panels/common/ExtensionServer.ts +119 -14
  156. package/front_end/panels/console/ConsoleContextSelector.ts +1 -1
  157. package/front_end/panels/console/ConsolePinPane.ts +2 -2
  158. package/front_end/panels/console/ConsolePrompt.ts +2 -2
  159. package/front_end/panels/console/ConsoleView.ts +3 -2
  160. package/front_end/panels/console/PromptBuilder.ts +2 -1
  161. package/front_end/panels/console/SymbolizedErrorWidget.ts +2 -1
  162. package/front_end/panels/console_counters/WarningErrorCounter.ts +2 -2
  163. package/front_end/panels/coverage/CoverageListView.ts +28 -28
  164. package/front_end/panels/coverage/CoverageModel.ts +2 -1
  165. package/front_end/panels/coverage/CoverageView.ts +22 -22
  166. package/front_end/panels/coverage/coverage-meta.ts +5 -5
  167. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +36 -36
  168. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -1
  169. package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +2 -2
  170. package/front_end/panels/css_overview/CSSOverviewStartView.ts +6 -6
  171. package/front_end/panels/css_overview/CSSOverviewUnusedDeclarations.ts +6 -6
  172. package/front_end/panels/css_overview/css_overview-meta.ts +2 -2
  173. package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +1 -1
  174. package/front_end/panels/elements/AccessibilityTreeUtils.ts +8 -102
  175. package/front_end/panels/elements/AccessibilityTreeView.ts +163 -70
  176. package/front_end/panels/elements/ElementsPanel.ts +17 -11
  177. package/front_end/panels/elements/ElementsTreeElement.ts +4 -1
  178. package/front_end/panels/elements/ElementsTreeOutline.ts +4 -4
  179. package/front_end/panels/elements/LayoutPane.ts +1 -1
  180. package/front_end/panels/elements/MetricsSidebarPane.ts +100 -34
  181. package/front_end/panels/elements/StylePropertiesSection.ts +2 -2
  182. package/front_end/panels/elements/StylePropertyTreeElement.ts +8 -2
  183. package/front_end/panels/elements/StylesSidebarPane.ts +1 -1
  184. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +7 -18
  185. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +2 -2
  186. package/front_end/panels/elements/components/QueryContainer.ts +1 -1
  187. package/front_end/panels/emulation/DeviceModeView.ts +52 -70
  188. package/front_end/panels/issues/AffectedDirectivesView.ts +1 -1
  189. package/front_end/panels/issues/AffectedResourcesView.ts +2 -1
  190. package/front_end/panels/issues/IssueView.ts +0 -2
  191. package/front_end/panels/issues/IssuesPane.ts +1 -8
  192. package/front_end/panels/js_timeline/js_timeline-meta.ts +3 -2
  193. package/front_end/panels/layer_viewer/LayerViewHost.ts +1 -1
  194. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +3 -3
  195. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +5 -5
  196. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +4 -4
  197. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +2 -2
  198. package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +6 -6
  199. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +3 -3
  200. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +8 -9
  201. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +2 -2
  202. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +1 -1
  203. package/front_end/panels/linear_memory_inspector/linear_memory_inspector-meta.ts +2 -2
  204. package/front_end/panels/network/NetworkDataGridNode.ts +124 -36
  205. package/front_end/panels/network/NetworkLogView.ts +9 -1
  206. package/front_end/panels/network/NetworkLogViewColumns.ts +18 -0
  207. package/front_end/panels/network/NetworkPanel.ts +2 -1
  208. package/front_end/panels/network/RequestPayloadView.ts +68 -20
  209. package/front_end/panels/network/RequestPreviewView.ts +7 -1
  210. package/front_end/panels/network/RequestTimingView.ts +95 -127
  211. package/front_end/panels/network/components/ResponseHeaderSection.ts +1 -1
  212. package/front_end/panels/network/forward/UIFilter.ts +1 -0
  213. package/front_end/panels/network/requestPayloadView.css +10 -0
  214. package/front_end/panels/performance_monitor/PerformanceMonitor.ts +12 -12
  215. package/front_end/panels/performance_monitor/performance_monitor-meta.ts +7 -7
  216. package/front_end/panels/profiler/HeapDetachedElementsView.ts +2 -2
  217. package/front_end/panels/profiler/HeapProfileView.ts +563 -51
  218. package/front_end/panels/profiler/HeapSnapshotView.ts +14 -9
  219. package/front_end/panels/profiler/ProfilesPanel.ts +13 -7
  220. package/front_end/panels/profiler/WritableProfileHeader.ts +152 -0
  221. package/front_end/panels/profiler/profiler.ts +2 -2
  222. package/front_end/panels/recorder/{components/ControlButton.ts → ControlButton.ts} +9 -10
  223. package/front_end/panels/recorder/{components/CreateRecordingView.ts → CreateRecordingView.ts} +59 -58
  224. package/front_end/panels/recorder/ExtensionView.ts +123 -0
  225. package/front_end/panels/recorder/RecorderController.ts +102 -92
  226. package/front_end/panels/recorder/{components/RecordingListView.ts → RecordingListView.ts} +22 -23
  227. package/front_end/panels/recorder/{components/RecordingView.ts → RecordingView.ts} +99 -96
  228. package/front_end/panels/recorder/{components/ReplaySection.ts → ReplaySection.ts} +20 -20
  229. package/front_end/panels/recorder/{components/SelectorPicker.ts → SelectorPicker.ts} +13 -13
  230. package/front_end/panels/recorder/{components/StepEditor.ts → StepEditor.ts} +367 -336
  231. package/front_end/panels/recorder/{components/StepView.ts → StepView.ts} +48 -49
  232. package/front_end/panels/recorder/{components/TimelineSection.ts → TimelineSection.ts} +2 -2
  233. package/front_end/panels/recorder/models/RecorderSettings.ts +2 -2
  234. package/front_end/panels/recorder/recorder-meta.ts +7 -7
  235. package/front_end/panels/recorder/recorder.ts +23 -1
  236. package/front_end/panels/recorder/{components/recordingView.css → recordingView.css} +1 -1
  237. package/front_end/panels/recorder/util/util.ts +113 -0
  238. package/front_end/panels/screencast/ScreencastApp.ts +1 -1
  239. package/front_end/panels/screencast/ScreencastView.ts +12 -12
  240. package/front_end/panels/search/SearchResultsPane.ts +4 -4
  241. package/front_end/panels/search/SearchView.ts +20 -20
  242. package/front_end/panels/security/SecurityModel.ts +7 -7
  243. package/front_end/panels/security/SecurityPanel.ts +99 -107
  244. package/front_end/panels/security/SecurityPanelSidebar.ts +7 -7
  245. package/front_end/panels/security/security-meta.ts +2 -2
  246. package/front_end/panels/sensors/LocationsSettingsTab.ts +19 -19
  247. package/front_end/panels/sensors/SensorsView.ts +27 -27
  248. package/front_end/panels/sensors/sensors-meta.ts +13 -167
  249. package/front_end/panels/settings/AISettingsTab.ts +98 -56
  250. package/front_end/panels/settings/EditFileSystemView.ts +2 -2
  251. package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +20 -20
  252. package/front_end/panels/settings/KeybindsSettingsTab.ts +20 -21
  253. package/front_end/panels/settings/SettingsScreen.ts +11 -11
  254. package/front_end/panels/settings/WorkspaceSettingsTab.ts +5 -5
  255. package/front_end/panels/settings/components/SyncSection.ts +12 -12
  256. package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +13 -13
  257. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +31 -31
  258. package/front_end/panels/settings/emulation/emulation-meta.ts +1 -1
  259. package/front_end/panels/settings/settings-meta.ts +14 -14
  260. package/front_end/panels/sources/InplaceFormatterEditorAction.ts +2 -2
  261. package/front_end/panels/sources/NavigatorView.ts +7 -6
  262. package/front_end/panels/sources/ScopeChainSidebarPane.ts +83 -37
  263. package/front_end/panels/sources/SourcesNavigator.ts +22 -21
  264. package/front_end/panels/sources/SourcesView.ts +10 -1
  265. package/front_end/panels/sources/TabbedEditorContainer.ts +1 -1
  266. package/front_end/panels/sources/scopeChainSidebarPane.css +12 -4
  267. package/front_end/panels/sources/sources-meta.ts +4 -4
  268. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +5 -2
  269. package/front_end/panels/timeline/IsolateSelector.ts +10 -8
  270. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +2 -1
  271. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +2 -1
  272. package/front_end/panels/timeline/TimelineFlameChartView.ts +1 -1
  273. package/front_end/panels/timeline/TimelinePanel.ts +20 -8
  274. package/front_end/panels/timeline/TimelineUIUtils.ts +149 -131
  275. package/front_end/panels/timeline/components/NetworkRequestDetails.ts +4 -2
  276. package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +4 -2
  277. package/front_end/panels/timeline/components/insights/ImageRef.ts +2 -1
  278. package/front_end/panels/timeline/timeline-meta.ts +3 -2
  279. package/front_end/panels/utils/utils.ts +7 -3
  280. package/front_end/panels/web_audio/WebAudioView.ts +17 -18
  281. package/front_end/panels/web_audio/web_audio-meta.ts +3 -3
  282. package/front_end/panels/whats_new/ReleaseNoteView.ts +1 -1
  283. package/front_end/panels/whats_new/whats_new-meta.ts +11 -11
  284. package/front_end/third_party/chromium/README.chromium +1 -1
  285. package/front_end/third_party/lit/lib/async-directive.d.ts +2 -1
  286. package/front_end/third_party/lit/lib/async-directive.js +1 -1
  287. package/front_end/third_party/lit/lib/async-directive.js.map +1 -1
  288. package/front_end/third_party/lit/lib/decorators.d.ts +2 -1
  289. package/front_end/third_party/lit/lib/decorators.js.map +1 -1
  290. package/front_end/third_party/lit/lib/directive.d.ts +2 -1
  291. package/front_end/third_party/lit/lib/directive.js.map +1 -1
  292. package/front_end/third_party/lit/lib/directives.d.ts +2 -1
  293. package/front_end/third_party/lit/lib/directives.js +8 -8
  294. package/front_end/third_party/lit/lib/directives.js.map +1 -1
  295. package/front_end/third_party/lit/lib/lit.d.ts +2 -1
  296. package/front_end/third_party/lit/lib/lit.js +1 -1
  297. package/front_end/third_party/lit/lib/lit.js.map +1 -1
  298. package/front_end/third_party/lit/lib/static-html.d.ts +2 -1
  299. package/front_end/third_party/lit/lib/static-html.js +1 -1
  300. package/front_end/third_party/lit/lib/static-html.js.map +1 -1
  301. package/front_end/third_party/lit/package.json +2 -2
  302. package/front_end/third_party/lit/rebuild.sh +1 -1
  303. package/front_end/third_party/lit/src/async-directive.ts +5 -0
  304. package/front_end/ui/components/dialogs/Dialog.ts +1 -1
  305. package/front_end/ui/components/dialogs/ShortcutDialog.ts +1 -1
  306. package/front_end/ui/components/diff_view/DiffView.ts +2 -2
  307. package/front_end/ui/components/issue_counter/IssueCounter.ts +3 -3
  308. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +5 -5
  309. package/front_end/ui/components/lists/List.ts +2 -2
  310. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +1 -1
  311. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +5 -5
  312. package/front_end/ui/components/settings/SettingCheckbox.ts +1 -1
  313. package/front_end/ui/components/snackbars/Snackbar.ts +1 -1
  314. package/front_end/ui/components/survey_link/SurveyLink.ts +3 -3
  315. package/front_end/ui/components/text_editor/config.ts +2 -2
  316. package/front_end/ui/components/tree_outline/TreeOutline.ts +34 -1
  317. package/front_end/ui/legacy/ReportView.ts +5 -0
  318. package/front_end/ui/legacy/Treeoutline.ts +6 -0
  319. package/front_end/ui/legacy/View.ts +1 -1
  320. package/front_end/ui/legacy/Widget.ts +14 -15
  321. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +2 -0
  322. package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +8 -3
  323. package/front_end/ui/legacy/components/data_grid/data_grid.ts +1 -0
  324. package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +1 -1
  325. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +106 -38
  326. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +7 -1
  327. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +2 -1
  328. package/front_end/ui/legacy/components/utils/ImagePreview.ts +4 -2
  329. package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +10 -1
  330. package/front_end/ui/legacy/inspectorCommon.css +5 -0
  331. package/front_end/ui/visual_logging/KnownContextValues.ts +3 -0
  332. package/mcp/mcp.ts +2 -0
  333. package/package.json +4 -4
  334. package/front_end/models/issues_manager/AttributionReportingIssue.ts +0 -247
  335. package/front_end/models/issues_manager/descriptions/arInsecureContext.md +0 -7
  336. package/front_end/models/issues_manager/descriptions/arInvalidInfoHeader.md +0 -5
  337. package/front_end/models/issues_manager/descriptions/arInvalidRegisterOsSourceHeader.md +0 -5
  338. package/front_end/models/issues_manager/descriptions/arInvalidRegisterOsTriggerHeader.md +0 -5
  339. package/front_end/models/issues_manager/descriptions/arInvalidRegisterSourceHeader.md +0 -5
  340. package/front_end/models/issues_manager/descriptions/arInvalidRegisterTriggerHeader.md +0 -5
  341. package/front_end/models/issues_manager/descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +0 -5
  342. package/front_end/models/issues_manager/descriptions/arNavigationRegistrationWithoutTransientUserActivation.md +0 -6
  343. package/front_end/models/issues_manager/descriptions/arNoRegisterOsSourceHeader.md +0 -5
  344. package/front_end/models/issues_manager/descriptions/arNoRegisterOsTriggerHeader.md +0 -5
  345. package/front_end/models/issues_manager/descriptions/arNoRegisterSourceHeader.md +0 -5
  346. package/front_end/models/issues_manager/descriptions/arNoRegisterTriggerHeader.md +0 -5
  347. package/front_end/models/issues_manager/descriptions/arNoWebOrOsSupport.md +0 -4
  348. package/front_end/models/issues_manager/descriptions/arOsSourceIgnored.md +0 -18
  349. package/front_end/models/issues_manager/descriptions/arOsTriggerIgnored.md +0 -19
  350. package/front_end/models/issues_manager/descriptions/arPermissionPolicyDisabled.md +0 -8
  351. package/front_end/models/issues_manager/descriptions/arSourceAndTriggerHeaders.md +0 -9
  352. package/front_end/models/issues_manager/descriptions/arSourceIgnored.md +0 -13
  353. package/front_end/models/issues_manager/descriptions/arTriggerIgnored.md +0 -12
  354. package/front_end/models/issues_manager/descriptions/arUntrustworthyReportingOrigin.md +0 -10
  355. package/front_end/models/issues_manager/descriptions/arWebAndOsHeaders.md +0 -11
  356. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +0 -182
  357. package/front_end/panels/profiler/ProfileView.ts +0 -611
  358. package/front_end/panels/recorder/components/ExtensionView.ts +0 -132
  359. package/front_end/panels/recorder/components/components.ts +0 -25
  360. package/front_end/panels/recorder/components/util.ts +0 -116
  361. /package/front_end/panels/recorder/{components/controlButton.css → controlButton.css} +0 -0
  362. /package/front_end/panels/recorder/{components/createRecordingView.css → createRecordingView.css} +0 -0
  363. /package/front_end/panels/recorder/{components/extensionView.css → extensionView.css} +0 -0
  364. /package/front_end/panels/recorder/{components/recordingListView.css → recordingListView.css} +0 -0
  365. /package/front_end/panels/recorder/{components/replaySection.css → replaySection.css} +0 -0
  366. /package/front_end/panels/recorder/{components/selectorPicker.css → selectorPicker.css} +0 -0
  367. /package/front_end/panels/recorder/{components/startView.css → startView.css} +0 -0
  368. /package/front_end/panels/recorder/{components/stepEditor.css → stepEditor.css} +0 -0
  369. /package/front_end/panels/recorder/{components/stepView.css → stepView.css} +0 -0
  370. /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 Summary div text content in Security Panel of the Security panel
36
+ * @description Title of the overview section in the Security panel.
37
37
  */
38
38
  securityOverview: 'Security overview',
39
39
  /**
40
- * @description Text to show something is secure
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 Sdk console message message level info of level Labels in Console View of the Console panel
44
+ * @description Tooltip for the neutral security state icon in the Security panel overview.
45
45
  */
46
46
  info: 'Info',
47
47
  /**
48
- * @description Not secure div text content in Security Panel of the Security panel
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 to view a security certificate
52
+ * @description Text on the button that opens the certificate viewer.
53
53
  */
54
54
  viewCertificate: 'View certificate',
55
55
  /**
56
- * @description Text in Security Panel of the Security panel
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 for page when it has been deemed unsafe by the SafeBrowsing service.
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 Summary phrase for a security problem where the site is deemed unsafe by the SafeBrowsing service.
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 a security problem where the site is deemed unsafe by the SafeBrowsing service.
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\'s status, visit g.co/safebrowsingstatus.',
70
+ toCheckThisPagesStatusVisit: 'To check this pages status, visit g.co/safebrowsingstatus.',
71
71
  /**
72
- * @description Main summary for a non cert error page.
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 for where the site is non-secure HTTP.
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 for where the site has a non-cryptographic secure origin.
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 Message to display in devtools security tab when the page you are on triggered a safety tip.
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 Body of message to display in devtools security tab when you are viewing a page that triggered a safety tip.
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 body of message to display in devtools security tab when you are viewing a page that triggered a safety tip.
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 a warning when the user visits a page that triggered a Safety Tip because the domain looked like another domain.
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 Body of a warning when the user visits a page that triggered a Safety Tip because the domain looked like another domain.
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\'s hostname looks similar to {PH1}. Attackers sometimes mimic sites by making small, hard-to-see changes to the domain name.',
104
+ 'This sites hostname looks similar to {PH1}. Attackers sometimes mimic sites by making small, hard-to-see changes to the domain name.',
106
105
  /**
107
- * @description second part of body of a warning when the user visits a page that triggered a Safety Tip because the domain looked like another domain.
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 please visit https://g.co/chrome/lookalike-warnings.',
109
+ 'If you believe this is shown in error, visit https://g.co/chrome/lookalike-warnings.',
111
110
  /**
112
- * @description Title of the devtools security tab when the page you are on triggered a safety tip.
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 Text for a security certificate
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 for a security problem where the site's certificate chain contains a SHA1 signature.
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 a security problem where the site's certificate chain contains a SHA1 signature.
123
+ * @description Description of the security explanation when the sites 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 a security problem where the site's certificate is missing a subjectAltName extension.
131
+ * @description Description of the security explanation when the sites certificate is missing a Subject Alternative Name extension.
133
132
  */
134
133
  theCertificateForThisSiteDoesNot:
135
- 'The certificate for this site does not contain a `Subject Alternative Name` extension containing a domain name or IP address.',
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 for a security problem with the site's certificate.
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 for a site that has a valid server certificate.
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 for a security state where Private Key Pinning is ignored because the certificate chains to a locally-trusted root.
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 a security state where Private Key Pinning is ignored because the certificate chains to a locally-trusted root.
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 phrase for a site with a certificate that is expiring soon.
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 for a site with a certificate that is expiring soon.
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 Text that refers to the network connection
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 for a site that uses a modern, secure TLS protocol and cipher.
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 A recommendation to the site owner to use a modern TLS key exchange
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 A recommendation to the site owner to use a modern TLS server signature
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 for a site that uses an outdated SSL settings (protocol, key exchange, or cipher).
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 A title of the 'Resources' action category
211
+ * @description Title of the resources section in the Security panel explanations.
213
212
  */
214
213
  resources: 'Resources',
215
214
  /**
216
- * @description Summary for page when there is active mixed content
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 for page when there is active mixed content
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 for page when there is mixed content
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 for page when there is mixed content
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 for page when there is a non-secure form
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 for page when there is a non-secure form
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 "action" attribute.',
238
+ thisPageIncludesAFormWithA: 'This page includes a form with a non-secure action attribute.',
240
239
  /**
241
- * @description Summary for the page when it contains active content with certificate error
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 for the page when it contains active content with certificate error
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 for page when there is active content with certificate errors
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 for page when there is content with certificate errors
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 for page when all resources are served securely
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 for page when all resources are served securely
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 Text in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 Refresh prompt text content in Security Panel of the Security panel
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 Panel. Clicking the link navigates the user to the
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 Panel} other {View # requests in Network Panel}}',
280
+ '{n, plural, =1 {View # request in Network panel} other {View # requests in Network panel}}',
284
281
  /**
285
- * @description Text for the origin of something
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 Security Panel of the Security panel
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 Panel',
288
+ viewRequestsInNetworkPanel: 'View requests in Network panel',
292
289
  /**
293
- * @description Text for security or network protocol
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 Text in the Security panel that refers to how the TLS handshake
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 Text in Security Panel that refers to how the TLS handshake
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 Text in Security Panel that refers to the signature algorithm
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 Text in Security Panel that refers to whether the ClientHello
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 Sct div text content in Security Panel of the Security panel
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 Text that refers to the subject of a security certificate
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 Text to show since when an item is valid
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 Text to indicate the expiry date
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 Text for the issuer of an item
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 Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 Text for the source of something
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 Text in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 Toggle scts details link text content in Security Panel of the Security panel
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 Toggle scts details link text content in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 `Chrome`\'s Certificate Transparency policy.',
380
+ thisRequestCompliesWithChromes: 'This request complies with Chromes Certificate Transparency policy.',
389
381
  /**
390
- * @description Text in Security Panel of the Security panel
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 does not comply with `Chrome`\'s Certificate Transparency policy.',
384
+ thisRequestDoesNotComplyWith: 'This request doesn’t comply with Chromes Certificate Transparency policy.',
393
385
  /**
394
- * @description Text in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 Main summary for where the site has a non-cryptographic secure origin.
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 Text in Security Panel of the Security panel
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 is not secure.',
400
+ yourConnectionToThisOriginIsNot: 'Your connection to this origin isn’t secure.',
409
401
  /**
410
- * @description No info div text content in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 San div text content in Security Panel of the Security panel
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 Text to show less content
414
+ * @description Button text to collapse the Subject Alternative Name list when expanded.
423
415
  */
424
416
  showLess: 'Show less',
425
417
  /**
426
- * @description Truncated santoggle text content in Security Panel of the Security panel
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 the Security Panel's sidebar
26
+ * @description Section title for the Security panel's sidebar.
27
27
  */
28
28
  security: 'Security',
29
29
  /**
30
- * @description Text in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 Text in Security Panel of the Security panel
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 text content in Security Panel of the Security panel
46
+ * @description Title of the overview tree item in the Security panel sidebar.
47
47
  */
48
48
  overview: 'Overview',
49
49
  /**
50
- * @description Text in Security Panel of the Security panel
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 Default Title of the security panel
12
+ * @description Title of the Security panel.
13
13
  */
14
14
  security: 'Security',
15
15
  /**
16
- * @description Default command to open the security panel
16
+ * @description Command in the Command Menu to show the Security panel.
17
17
  */
18
18
  showSecurity: 'Show Security',
19
19
  } as const;