chrome-devtools-frontend 1.0.925655 → 1.0.927419
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/.stylelintignore +1 -0
- package/AUTHORS +1 -0
- package/config/gni/devtools_grd_files.gni +10 -3
- package/front_end/core/common/Color.ts +6 -0
- package/front_end/core/common/SettingRegistration.ts +8 -0
- package/front_end/core/host/InspectorFrontendHost.ts +3 -0
- package/front_end/core/host/InspectorFrontendHostAPI.ts +3 -0
- package/front_end/core/host/UserMetrics.ts +7 -3
- package/front_end/core/i18n/locales/en-US.json +71 -14
- package/front_end/core/i18n/locales/en-XL.json +71 -14
- package/front_end/core/platform/keyboard-utilities.ts +1 -0
- package/front_end/core/root/Runtime.ts +1 -0
- package/front_end/core/sdk/ConsoleModel.ts +3 -0
- package/front_end/core/sdk/DebuggerModel.ts +2 -0
- package/front_end/core/sdk/NetworkManager.ts +12 -2
- package/front_end/core/sdk/NetworkRequest.ts +20 -5
- package/front_end/core/sdk/OverlayModel.ts +21 -0
- package/front_end/core/sdk/OverlayPersistentHighlighter.ts +55 -3
- package/front_end/devtools_compatibility.js +11 -1
- package/front_end/entrypoints/main/MainImpl.ts +4 -2
- package/front_end/entrypoints/main/main-meta.ts +16 -0
- package/front_end/generated/InspectorBackendCommands.js +8 -7
- package/front_end/generated/SupportedCSSProperties.js +7 -1
- package/front_end/generated/protocol-mapping.d.ts +5 -24
- package/front_end/generated/protocol-proxy-api.d.ts +6 -29
- package/front_end/generated/protocol.d.ts +51 -46
- package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +0 -6
- package/front_end/models/issues_manager/CorsIssue.ts +4 -0
- package/front_end/models/logs/LogManager.ts +1 -0
- package/front_end/models/persistence/WorkspaceSettingsTab.ts +6 -4
- package/front_end/models/persistence/workspaceSettingsTab.css +18 -18
- package/front_end/models/timeline_model/TimelineFrameModel.ts +107 -28
- package/front_end/panels/application/ReportingApiReportsView.ts +89 -0
- package/front_end/panels/application/ReportingApiTreeElement.ts +3 -3
- package/front_end/panels/application/ReportingApiView.ts +27 -0
- package/front_end/panels/application/application.ts +2 -0
- package/front_end/panels/application/components/EndpointsGrid.ts +55 -0
- package/front_end/panels/application/components/ReportsGrid.ts +144 -0
- package/front_end/panels/application/components/components.ts +4 -2
- package/front_end/panels/application/components/reportingApiGrid.css +35 -0
- package/front_end/panels/application/reportingApiReportsView.css +13 -0
- package/front_end/panels/console/ConsoleView.ts +17 -0
- package/front_end/panels/console/console-meta.ts +26 -0
- package/front_end/panels/elements/ElementsTreeElement.ts +19 -0
- package/front_end/panels/elements/PropertiesWidget.ts +1 -2
- package/front_end/panels/elements/StylePropertyTreeElement.ts +28 -0
- package/front_end/panels/elements/StylePropertyUtils.ts +13 -0
- package/front_end/panels/elements/components/nodeText.css +4 -4
- package/front_end/panels/elements/elements.ts +2 -0
- package/front_end/panels/elements/layoutPane.css +1 -1
- package/front_end/panels/issues/CorsIssueDetailsView.ts +4 -2
- package/front_end/panels/network/RequestCookiesView.ts +13 -4
- package/front_end/panels/screencast/screencastView.css +2 -6
- package/front_end/panels/search/SearchResultsPane.ts +1 -1
- package/front_end/panels/settings/SettingsScreen.ts +3 -0
- package/front_end/panels/snippets/SnippetsQuickOpen.ts +8 -3
- package/front_end/panels/sources/CallStackSidebarPane.ts +1 -10
- package/front_end/panels/sources/GoToLineQuickOpen.ts +50 -10
- package/front_end/panels/sources/UISourceCodeFrame.ts +0 -13
- package/front_end/panels/sources/sources-legacy.ts +0 -11
- package/front_end/panels/sources/sources-meta.ts +22 -20
- package/front_end/panels/sources/sources.ts +0 -2
- package/front_end/third_party/codemirror.next/LICENSE +21 -0
- package/front_end/third_party/codemirror.next/README.chromium +18 -0
- package/front_end/third_party/codemirror.next/bundle-tsconfig.json +21 -0
- package/front_end/third_party/codemirror.next/bundle.ts +87 -0
- package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -0
- package/front_end/third_party/codemirror.next/chunk/cpp.js +2 -0
- package/front_end/third_party/codemirror.next/chunk/css.js +2 -0
- package/front_end/third_party/codemirror.next/chunk/html.js +4 -0
- package/front_end/third_party/codemirror.next/chunk/java.js +2 -0
- package/front_end/third_party/codemirror.next/chunk/javascript.js +2 -0
- package/front_end/third_party/codemirror.next/chunk/json.js +2 -0
- package/front_end/third_party/codemirror.next/chunk/legacy.js +1 -0
- package/front_end/third_party/codemirror.next/chunk/markdown.js +6 -0
- package/front_end/third_party/codemirror.next/chunk/php.js +6 -0
- package/front_end/third_party/codemirror.next/chunk/python.js +2 -0
- package/front_end/third_party/codemirror.next/chunk/wast.js +2 -0
- package/front_end/third_party/codemirror.next/chunk/xml.js +2 -0
- package/front_end/third_party/codemirror.next/codemirror.next.d.ts +5467 -0
- package/front_end/third_party/codemirror.next/codemirror.next.js +2 -0
- package/front_end/third_party/codemirror.next/package.json +39 -0
- package/front_end/third_party/codemirror.next/rebuild.sh +6 -0
- package/front_end/third_party/codemirror.next/rollup.config.js +45 -0
- package/front_end/ui/components/buttons/Button.ts +33 -5
- package/front_end/ui/components/buttons/button.css +32 -2
- package/front_end/ui/components/code_highlighter/CodeHighlighter.ts +137 -0
- package/front_end/ui/components/code_highlighter/codeHighlighter.css +51 -0
- package/front_end/ui/components/code_highlighter/code_highlighter.ts +11 -0
- package/front_end/ui/components/docs/button/basic.html +1 -0
- package/front_end/ui/components/docs/button/basic.ts +47 -4
- package/front_end/ui/components/docs/text_editor/basic.html +28 -0
- package/front_end/ui/components/docs/text_editor/basic.ts +14 -0
- package/front_end/ui/components/docs/text_prompt/basic.html +35 -0
- package/front_end/ui/components/docs/text_prompt/basic.ts +19 -0
- package/front_end/ui/components/render_coordinator/RenderCoordinator.ts +17 -0
- package/front_end/ui/components/text_editor/TextEditor.ts +161 -0
- package/front_end/ui/components/text_editor/config.ts +264 -0
- package/front_end/ui/components/text_editor/text_editor.ts +6 -0
- package/front_end/ui/components/text_editor/theme.ts +113 -0
- package/front_end/ui/components/text_prompt/TextPrompt.ts +144 -0
- package/front_end/ui/components/text_prompt/textPrompt.css +33 -0
- package/front_end/ui/components/text_prompt/text_prompt.ts +9 -0
- package/front_end/ui/legacy/UIUtils.ts +9 -1
- package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +8 -3
- package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +39 -39
- package/front_end/ui/legacy/components/quick_open/HelpQuickOpen.ts +10 -4
- package/front_end/ui/legacy/components/quick_open/QuickOpen.ts +31 -14
- package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +7 -8
- package/front_end/ui/legacy/components/source_frame/source_frame-legacy.ts +0 -6
- package/front_end/ui/legacy/components/source_frame/source_frame.ts +0 -2
- package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +11 -9
- package/front_end/ui/legacy/filter.css +1 -0
- package/front_end/ui/legacy/inspectorSyntaxHighlight.css +3 -8
- package/front_end/ui/legacy/inspectorSyntaxHighlightDark.css +11 -16
- package/front_end/ui/legacy/themeColors.css +60 -0
- package/inspector_overlay/debug/tool_persistent_isolated_element.html +75 -0
- package/inspector_overlay/drag_resize_handler.ts +142 -0
- package/inspector_overlay/highlight_isolated_element.ts +62 -0
- package/inspector_overlay/main.ts +4 -1
- package/inspector_overlay/tool_highlight.ts +6 -0
- package/inspector_overlay/tool_paused.ts +2 -0
- package/inspector_overlay/tool_persistent.ts +110 -0
- package/inspector_overlay/tool_screenshot.ts +8 -1
- package/package.json +1 -1
- package/front_end/panels/application/components/ReportingApiView.ts +0 -24
- package/front_end/panels/sources/GutterDiffPlugin.ts +0 -282
- package/front_end/ui/legacy/components/source_frame/SourceCodeDiff.ts +0 -140
package/.stylelintignore
CHANGED
package/AUTHORS
CHANGED
|
@@ -33,6 +33,7 @@ Julian Geppert <spctstr@gmail.com>
|
|
|
33
33
|
Karntino Areros <karntino.c.areros@gmail.com>
|
|
34
34
|
Krishnal Ciccolella <ciccolella.krishnal@gmail.com>
|
|
35
35
|
Luke Swiderski <luke.swiderski@gmail.com>
|
|
36
|
+
Marijn Haverbeke <marijnh@gmail.com>
|
|
36
37
|
Michael Brüning <michael.bruning@qt.io>
|
|
37
38
|
Michael Rienstra <mrienstra@gmail.com>
|
|
38
39
|
Per-Olov Jernberg <possan@possan.se>
|
|
@@ -484,6 +484,7 @@ grd_files_release_sources = [
|
|
|
484
484
|
"front_end/ui/components/report_view/report_view.js",
|
|
485
485
|
"front_end/ui/components/request_link_icon/request_link_icon.js",
|
|
486
486
|
"front_end/ui/components/survey_link/survey_link.js",
|
|
487
|
+
"front_end/ui/components/text_prompt/text_prompt.js",
|
|
487
488
|
"front_end/ui/components/tree_outline/tree_outline.js",
|
|
488
489
|
"front_end/ui/legacy/components/color_picker/color_picker-legacy.js",
|
|
489
490
|
"front_end/ui/legacy/components/color_picker/color_picker.js",
|
|
@@ -803,7 +804,9 @@ grd_files_debug_sources = [
|
|
|
803
804
|
"front_end/panels/application/IndexedDBModel.js",
|
|
804
805
|
"front_end/panels/application/IndexedDBViews.js",
|
|
805
806
|
"front_end/panels/application/OpenedWindowDetailsView.js",
|
|
807
|
+
"front_end/panels/application/ReportingApiReportsView.js",
|
|
806
808
|
"front_end/panels/application/ReportingApiTreeElement.js",
|
|
809
|
+
"front_end/panels/application/ReportingApiView.js",
|
|
807
810
|
"front_end/panels/application/ResourcesPanel.js",
|
|
808
811
|
"front_end/panels/application/ServiceWorkerCacheViews.js",
|
|
809
812
|
"front_end/panels/application/ServiceWorkerUpdateCycleView.js",
|
|
@@ -813,10 +816,11 @@ grd_files_debug_sources = [
|
|
|
813
816
|
"front_end/panels/application/TrustTokensTreeElement.js",
|
|
814
817
|
"front_end/panels/application/appManifestView.css.js",
|
|
815
818
|
"front_end/panels/application/backgroundServiceView.css.js",
|
|
819
|
+
"front_end/panels/application/components/EndpointsGrid.js",
|
|
816
820
|
"front_end/panels/application/components/FrameDetailsView.js",
|
|
817
821
|
"front_end/panels/application/components/OriginTrialTreeView.js",
|
|
818
822
|
"front_end/panels/application/components/PermissionsPolicySection.js",
|
|
819
|
-
"front_end/panels/application/components/
|
|
823
|
+
"front_end/panels/application/components/ReportsGrid.js",
|
|
820
824
|
"front_end/panels/application/components/StackTrace.js",
|
|
821
825
|
"front_end/panels/application/components/TrustTokensView.js",
|
|
822
826
|
"front_end/panels/application/components/badge.css.js",
|
|
@@ -824,6 +828,7 @@ grd_files_debug_sources = [
|
|
|
824
828
|
"front_end/panels/application/components/originTrialTokenRows.css.js",
|
|
825
829
|
"front_end/panels/application/components/originTrialTreeView.css.js",
|
|
826
830
|
"front_end/panels/application/components/permissionsPolicySection.css.js",
|
|
831
|
+
"front_end/panels/application/components/reportingApiGrid.css.js",
|
|
827
832
|
"front_end/panels/application/components/stackTraceLinkButton.css.js",
|
|
828
833
|
"front_end/panels/application/components/stackTraceRow.css.js",
|
|
829
834
|
"front_end/panels/application/components/trustTokensView.css.js",
|
|
@@ -831,6 +836,7 @@ grd_files_debug_sources = [
|
|
|
831
836
|
"front_end/panels/application/cookieItemsView.css.js",
|
|
832
837
|
"front_end/panels/application/frameDetailsReportView.css.js",
|
|
833
838
|
"front_end/panels/application/indexedDBViews.css.js",
|
|
839
|
+
"front_end/panels/application/reportingApiReportsView.css.js",
|
|
834
840
|
"front_end/panels/application/resourcesPanel.css.js",
|
|
835
841
|
"front_end/panels/application/resourcesSidebar.css.js",
|
|
836
842
|
"front_end/panels/application/serviceWorkerCacheViews.css.js",
|
|
@@ -919,6 +925,7 @@ grd_files_debug_sources = [
|
|
|
919
925
|
"front_end/panels/elements/StyleEditorWidget.js",
|
|
920
926
|
"front_end/panels/elements/StylePropertyHighlighter.js",
|
|
921
927
|
"front_end/panels/elements/StylePropertyTreeElement.js",
|
|
928
|
+
"front_end/panels/elements/StylePropertyUtils.js",
|
|
922
929
|
"front_end/panels/elements/StylesSidebarPane.js",
|
|
923
930
|
"front_end/panels/elements/classesPaneWidget.css.js",
|
|
924
931
|
"front_end/panels/elements/components/AccessibilityTreeNode.js",
|
|
@@ -1177,7 +1184,6 @@ grd_files_debug_sources = [
|
|
|
1177
1184
|
"front_end/panels/sources/FilePathScoreFunction.js",
|
|
1178
1185
|
"front_end/panels/sources/FilteredUISourceCodeListProvider.js",
|
|
1179
1186
|
"front_end/panels/sources/GoToLineQuickOpen.js",
|
|
1180
|
-
"front_end/panels/sources/GutterDiffPlugin.js",
|
|
1181
1187
|
"front_end/panels/sources/InplaceFormatterEditorAction.js",
|
|
1182
1188
|
"front_end/panels/sources/JavaScriptBreakpointsSidebarPane.js",
|
|
1183
1189
|
"front_end/panels/sources/JavaScriptCompilerPlugin.js",
|
|
@@ -1390,6 +1396,8 @@ grd_files_debug_sources = [
|
|
|
1390
1396
|
"front_end/ui/components/request_link_icon/requestLinkIcon.css.js",
|
|
1391
1397
|
"front_end/ui/components/survey_link/SurveyLink.js",
|
|
1392
1398
|
"front_end/ui/components/survey_link/surveyLink.css.js",
|
|
1399
|
+
"front_end/ui/components/text_prompt/TextPrompt.js",
|
|
1400
|
+
"front_end/ui/components/text_prompt/textPrompt.css.js",
|
|
1393
1401
|
"front_end/ui/components/tree_outline/TreeOutline.js",
|
|
1394
1402
|
"front_end/ui/components/tree_outline/TreeOutlineUtils.js",
|
|
1395
1403
|
"front_end/ui/components/tree_outline/treeOutline.css.js",
|
|
@@ -1514,7 +1522,6 @@ grd_files_debug_sources = [
|
|
|
1514
1522
|
"front_end/ui/legacy/components/source_frame/JSONView.js",
|
|
1515
1523
|
"front_end/ui/legacy/components/source_frame/PreviewFactory.js",
|
|
1516
1524
|
"front_end/ui/legacy/components/source_frame/ResourceSourceFrame.js",
|
|
1517
|
-
"front_end/ui/legacy/components/source_frame/SourceCodeDiff.js",
|
|
1518
1525
|
"front_end/ui/legacy/components/source_frame/SourceFrame.js",
|
|
1519
1526
|
"front_end/ui/legacy/components/source_frame/SourcesTextEditor.js",
|
|
1520
1527
|
"front_end/ui/legacy/components/source_frame/XMLView.js",
|
|
@@ -875,6 +875,12 @@ export const SourceOrderHighlight = {
|
|
|
875
875
|
ChildOutline: Color.fromRGBA([0, 120, 212, 1]),
|
|
876
876
|
};
|
|
877
877
|
|
|
878
|
+
export const IsolationModeHighlight = {
|
|
879
|
+
Resizer: Color.fromRGBA([222, 225, 230, 1]), // --color-background-elevation-2
|
|
880
|
+
ResizerHandle: Color.fromRGBA([166, 166, 166, 1]),
|
|
881
|
+
Mask: Color.fromRGBA([248, 249, 249, 1]),
|
|
882
|
+
};
|
|
883
|
+
|
|
878
884
|
export class Generator {
|
|
879
885
|
private readonly hueSpace: number|{
|
|
880
886
|
min: number,
|
|
@@ -69,6 +69,11 @@ const UIStrings = {
|
|
|
69
69
|
*@description Text for the adorner of the page
|
|
70
70
|
*/
|
|
71
71
|
adorner: 'Adorner',
|
|
72
|
+
/**
|
|
73
|
+
* @description Header for the "Sync" section in the settings UI. The "Sync"
|
|
74
|
+
* section allows users to configure which DevTools data is synced via Chrome Sync.
|
|
75
|
+
*/
|
|
76
|
+
sync: 'Sync',
|
|
72
77
|
};
|
|
73
78
|
const str_ = i18n.i18n.registerUIStrings('core/common/SettingRegistration.ts', UIStrings);
|
|
74
79
|
const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
|
|
@@ -137,6 +142,7 @@ export enum SettingCategory {
|
|
|
137
142
|
MEMORY = 'MEMORY',
|
|
138
143
|
EXTENSIONS = 'EXTENSIONS',
|
|
139
144
|
ADORNER = 'ADORNER',
|
|
145
|
+
SYNC = 'SYNC',
|
|
140
146
|
}
|
|
141
147
|
|
|
142
148
|
export function getLocalizedSettingsCategory(category: SettingCategory): string|Platform.UIString.LocalizedString {
|
|
@@ -175,6 +181,8 @@ export function getLocalizedSettingsCategory(category: SettingCategory): string|
|
|
|
175
181
|
return i18nString(UIStrings.adorner);
|
|
176
182
|
case SettingCategory.NONE:
|
|
177
183
|
return '';
|
|
184
|
+
case SettingCategory.SYNC:
|
|
185
|
+
return i18nString(UIStrings.sync);
|
|
178
186
|
}
|
|
179
187
|
}
|
|
180
188
|
|
|
@@ -247,6 +247,9 @@ export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
|
|
|
247
247
|
});
|
|
248
248
|
}
|
|
249
249
|
|
|
250
|
+
registerPreference(name: string, options: {synced?: boolean}): void {
|
|
251
|
+
}
|
|
252
|
+
|
|
250
253
|
getPreferences(callback: (arg0: {
|
|
251
254
|
[x: string]: string,
|
|
252
255
|
}) => void): void {
|
|
@@ -226,6 +226,8 @@ export interface InspectorFrontendHostAPI {
|
|
|
226
226
|
loadNetworkResource(
|
|
227
227
|
url: string, headers: string, streamId: number, callback: (arg0: LoadNetworkResourceResult) => void): void;
|
|
228
228
|
|
|
229
|
+
registerPreference(name: string, options: {synced?: boolean}): void;
|
|
230
|
+
|
|
229
231
|
getPreferences(callback: (arg0: {
|
|
230
232
|
[x: string]: string,
|
|
231
233
|
}) => void): void;
|
|
@@ -351,4 +353,5 @@ export enum EnumeratedHistogram {
|
|
|
351
353
|
LinearMemoryInspectorRevealedFrom = 'DevTools.LinearMemoryInspector.RevealedFrom',
|
|
352
354
|
LinearMemoryInspectorTarget = 'DevTools.LinearMemoryInspector.Target',
|
|
353
355
|
Language = 'DevTools.Language',
|
|
356
|
+
ConsoleShowsCorsErrors = 'DevTools.ConsoleShowsCorsErrors',
|
|
354
357
|
}
|
|
@@ -240,6 +240,11 @@ export class UserMetrics {
|
|
|
240
240
|
}
|
|
241
241
|
InspectorFrontendHostInstance.recordEnumeratedHistogram(EnumeratedHistogram.Language, languageCode, size);
|
|
242
242
|
}
|
|
243
|
+
|
|
244
|
+
showCorsErrorsSettingChanged(show: boolean): void {
|
|
245
|
+
InspectorFrontendHostInstance.recordEnumeratedHistogram(
|
|
246
|
+
EnumeratedHistogram.ConsoleShowsCorsErrors, Number(show), 2);
|
|
247
|
+
}
|
|
243
248
|
}
|
|
244
249
|
|
|
245
250
|
// Codes below are used to collect UMA histograms in the Chromium port.
|
|
@@ -541,7 +546,6 @@ export const DevtoolsExperiments: {
|
|
|
541
546
|
'backgroundServicesPushMessaging': 6,
|
|
542
547
|
'blackboxJSFramesOnTimeline': 7,
|
|
543
548
|
'cssOverview': 8,
|
|
544
|
-
'emptySourceMapAutoStepping': 9,
|
|
545
549
|
'inputEventsOnTimelineOverview': 10,
|
|
546
550
|
'liveHeapProfile': 11,
|
|
547
551
|
'protocolMonitor': 13,
|
|
@@ -549,7 +553,6 @@ export const DevtoolsExperiments: {
|
|
|
549
553
|
'recordCoverageWithPerformanceTracing': 16,
|
|
550
554
|
'samplingHeapProfilerTimeline': 17,
|
|
551
555
|
'showOptionToNotTreatGlobalObjectsAsRoots': 18,
|
|
552
|
-
'sourceDiff': 19,
|
|
553
556
|
'sourceOrderViewer': 20,
|
|
554
557
|
'webauthnPane': 22,
|
|
555
558
|
'timelineEventInitiators': 24,
|
|
@@ -572,7 +575,8 @@ export const DevtoolsExperiments: {
|
|
|
572
575
|
'bfcacheDebugging': 47,
|
|
573
576
|
'hideIssuesFeature': 48,
|
|
574
577
|
'reportingApiDebugging': 49,
|
|
575
|
-
'
|
|
578
|
+
'syncSettings': 50,
|
|
579
|
+
'__lastValidEnumPosition': 50,
|
|
576
580
|
};
|
|
577
581
|
|
|
578
582
|
export const IssueExpanded: {
|
|
@@ -161,6 +161,9 @@
|
|
|
161
161
|
"core/common/SettingRegistration.ts | sources": {
|
|
162
162
|
"message": "Sources"
|
|
163
163
|
},
|
|
164
|
+
"core/common/SettingRegistration.ts | sync": {
|
|
165
|
+
"message": "Sync"
|
|
166
|
+
},
|
|
164
167
|
"core/host/InspectorFrontendHost.ts | devtoolsS": {
|
|
165
168
|
"message": "DevTools - {PH1}"
|
|
166
169
|
},
|
|
@@ -461,6 +464,9 @@
|
|
|
461
464
|
"core/sdk/NetworkRequest.ts | domainMismatch": {
|
|
462
465
|
"message": "This cookie was blocked because neither did the request URL's domain exactly match the cookie's domain, nor was the request URL's domain a subdomain of the cookie's Domain attribute value."
|
|
463
466
|
},
|
|
467
|
+
"core/sdk/NetworkRequest.ts | nameValuePairExceedsMaxSize": {
|
|
468
|
+
"message": "This cookie was blocked because it was too large. The combined size of the name and value must be less than or equal to 4096 characters."
|
|
469
|
+
},
|
|
464
470
|
"core/sdk/NetworkRequest.ts | notOnPath": {
|
|
465
471
|
"message": "This cookie was blocked because its path was not an exact match for or a superdirectory of the request url's path."
|
|
466
472
|
},
|
|
@@ -492,7 +498,7 @@
|
|
|
492
498
|
"message": "This cookie was blocked because it had the \"Secure\" attribute and the connection was not secure."
|
|
493
499
|
},
|
|
494
500
|
"core/sdk/NetworkRequest.ts | setcookieHeaderIsIgnoredIn": {
|
|
495
|
-
"message": "Set-Cookie header is ignored in response from url: {PH1}.
|
|
501
|
+
"message": "Set-Cookie header is ignored in response from url: {PH1}. The combined size of the name and value must be less than or equal to 4096 characters."
|
|
496
502
|
},
|
|
497
503
|
"core/sdk/NetworkRequest.ts | theSchemeOfThisConnectionIsNot": {
|
|
498
504
|
"message": "The scheme of this connection is not allowed to store cookies."
|
|
@@ -512,6 +518,9 @@
|
|
|
512
518
|
"core/sdk/NetworkRequest.ts | thisSetcookieWasBlockedBecauseItHadTheSamesiteStrictLax": {
|
|
513
519
|
"message": "This attempt to set a cookie via a Set-Cookie header was blocked because it had the \"{PH1}\" attribute but came from a cross-site response which was not the response to a top-level navigation. This response is considered cross-site because the URL has a different scheme than the current site."
|
|
514
520
|
},
|
|
521
|
+
"core/sdk/NetworkRequest.ts | thisSetcookieWasBlockedBecauseTheNameValuePairExceedsMaxSize": {
|
|
522
|
+
"message": "This attempt to set a cookie via a Set-Cookie header was blocked because the cookie was too large. The combined size of the name and value must be less than or equal to 4096 characters."
|
|
523
|
+
},
|
|
515
524
|
"core/sdk/NetworkRequest.ts | thisSetcookieWasBlockedDueToUser": {
|
|
516
525
|
"message": "This attempt to set a cookie via a Set-Cookie header was blocked due to user preferences."
|
|
517
526
|
},
|
|
@@ -1037,6 +1046,9 @@
|
|
|
1037
1046
|
"entrypoints/main/main-meta.ts | enableShortcutToSwitchPanels": {
|
|
1038
1047
|
"message": "Enable ⌘ + 1-9 shortcut to switch panels"
|
|
1039
1048
|
},
|
|
1049
|
+
"entrypoints/main/main-meta.ts | enableSync": {
|
|
1050
|
+
"message": "Enable settings sync"
|
|
1051
|
+
},
|
|
1040
1052
|
"entrypoints/main/main-meta.ts | findNextResult": {
|
|
1041
1053
|
"message": "Find next result"
|
|
1042
1054
|
},
|
|
@@ -2414,6 +2426,9 @@
|
|
|
2414
2426
|
"panels/application/BackgroundServiceView.ts | timestamp": {
|
|
2415
2427
|
"message": "Timestamp"
|
|
2416
2428
|
},
|
|
2429
|
+
"panels/application/components/EndpointsGrid.ts | noEndpointsToDisplay": {
|
|
2430
|
+
"message": "No endpoints to display"
|
|
2431
|
+
},
|
|
2417
2432
|
"panels/application/components/FrameDetailsView.ts | additionalInformation": {
|
|
2418
2433
|
"message": "Additional Information"
|
|
2419
2434
|
},
|
|
@@ -2612,7 +2627,7 @@
|
|
|
2612
2627
|
"panels/application/components/PermissionsPolicySection.ts | showDetails": {
|
|
2613
2628
|
"message": "Show details"
|
|
2614
2629
|
},
|
|
2615
|
-
"panels/application/components/
|
|
2630
|
+
"panels/application/components/ReportsGrid.ts | noReportsToDisplay": {
|
|
2616
2631
|
"message": "No reports to display"
|
|
2617
2632
|
},
|
|
2618
2633
|
"panels/application/components/StackTrace.ts | cannotRenderStackTrace": {
|
|
@@ -2837,6 +2852,9 @@
|
|
|
2837
2852
|
"panels/application/OpenedWindowDetailsView.ts | yes": {
|
|
2838
2853
|
"message": "Yes"
|
|
2839
2854
|
},
|
|
2855
|
+
"panels/application/ReportingApiReportsView.ts | clickToDisplayBody": {
|
|
2856
|
+
"message": "Click on any report to display its body"
|
|
2857
|
+
},
|
|
2840
2858
|
"panels/application/ReportingApiTreeElement.ts | reportingApi": {
|
|
2841
2859
|
"message": "Reporting API"
|
|
2842
2860
|
},
|
|
@@ -3311,6 +3329,9 @@
|
|
|
3311
3329
|
"panels/console/console-meta.ts | doNotGroupSimilarMessagesIn": {
|
|
3312
3330
|
"message": "Do not group similar messages in console"
|
|
3313
3331
|
},
|
|
3332
|
+
"panels/console/console-meta.ts | doNotShowCorsErrorsIn": {
|
|
3333
|
+
"message": "Do not show CORS errors in console"
|
|
3334
|
+
},
|
|
3314
3335
|
"panels/console/console-meta.ts | doNotTreatEvaluationAsUser": {
|
|
3315
3336
|
"message": "Do not treat evaluation as user activation"
|
|
3316
3337
|
},
|
|
@@ -3344,6 +3365,9 @@
|
|
|
3344
3365
|
"panels/console/console-meta.ts | showConsole": {
|
|
3345
3366
|
"message": "Show Console"
|
|
3346
3367
|
},
|
|
3368
|
+
"panels/console/console-meta.ts | showCorsErrorsInConsole": {
|
|
3369
|
+
"message": "Show CORS errors in console"
|
|
3370
|
+
},
|
|
3347
3371
|
"panels/console/console-meta.ts | showMessagesFromAllContexts": {
|
|
3348
3372
|
"message": "Show messages from all contexts"
|
|
3349
3373
|
},
|
|
@@ -3518,6 +3542,9 @@
|
|
|
3518
3542
|
"panels/console/ConsoleView.ts | showConsoleSidebar": {
|
|
3519
3543
|
"message": "Show console sidebar"
|
|
3520
3544
|
},
|
|
3545
|
+
"panels/console/ConsoleView.ts | showCorsErrorsInConsole": {
|
|
3546
|
+
"message": "Show CORS errors in console"
|
|
3547
|
+
},
|
|
3521
3548
|
"panels/console/ConsoleView.ts | sOnly": {
|
|
3522
3549
|
"message": "{PH1} only"
|
|
3523
3550
|
},
|
|
@@ -4217,6 +4244,12 @@
|
|
|
4217
4244
|
"panels/elements/ElementsTreeElement.ts | enableScrollSnap": {
|
|
4218
4245
|
"message": "Enable scroll-snap overlay"
|
|
4219
4246
|
},
|
|
4247
|
+
"panels/elements/ElementsTreeElement.ts | enterIsolationMode": {
|
|
4248
|
+
"message": "Enter Isolation Mode"
|
|
4249
|
+
},
|
|
4250
|
+
"panels/elements/ElementsTreeElement.ts | exitIsolationMode": {
|
|
4251
|
+
"message": "Exit Isolation Mode"
|
|
4252
|
+
},
|
|
4220
4253
|
"panels/elements/ElementsTreeElement.ts | expandRecursively": {
|
|
4221
4254
|
"message": "Expand recursively"
|
|
4222
4255
|
},
|
|
@@ -4310,9 +4343,15 @@
|
|
|
4310
4343
|
"panels/elements/PlatformFontsWidget.ts | renderedFonts": {
|
|
4311
4344
|
"message": "Rendered Fonts"
|
|
4312
4345
|
},
|
|
4346
|
+
"panels/elements/StylePropertyTreeElement.ts | copyAllCssDeclarationsAsJs": {
|
|
4347
|
+
"message": "Copy all declarations as JS"
|
|
4348
|
+
},
|
|
4313
4349
|
"panels/elements/StylePropertyTreeElement.ts | copyAllDeclarations": {
|
|
4314
4350
|
"message": "Copy all declarations"
|
|
4315
4351
|
},
|
|
4352
|
+
"panels/elements/StylePropertyTreeElement.ts | copyCssDeclarationAsJs": {
|
|
4353
|
+
"message": "Copy declaration as JS"
|
|
4354
|
+
},
|
|
4316
4355
|
"panels/elements/StylePropertyTreeElement.ts | copyDeclaration": {
|
|
4317
4356
|
"message": "Copy declaration"
|
|
4318
4357
|
},
|
|
@@ -8612,8 +8651,11 @@
|
|
|
8612
8651
|
"panels/snippets/SnippetsQuickOpen.ts | noSnippetsFound": {
|
|
8613
8652
|
"message": "No snippets found."
|
|
8614
8653
|
},
|
|
8615
|
-
"panels/snippets/SnippetsQuickOpen.ts |
|
|
8616
|
-
"message": "Run
|
|
8654
|
+
"panels/snippets/SnippetsQuickOpen.ts | run": {
|
|
8655
|
+
"message": "Run"
|
|
8656
|
+
},
|
|
8657
|
+
"panels/snippets/SnippetsQuickOpen.ts | snippet": {
|
|
8658
|
+
"message": "Snippet"
|
|
8617
8659
|
},
|
|
8618
8660
|
"panels/sources/AddSourceMapURLDialog.ts | add": {
|
|
8619
8661
|
"message": "Add"
|
|
@@ -8831,12 +8873,12 @@
|
|
|
8831
8873
|
"panels/sources/GoToLineQuickOpen.ts | noFileSelected": {
|
|
8832
8874
|
"message": "No file selected."
|
|
8833
8875
|
},
|
|
8876
|
+
"panels/sources/GoToLineQuickOpen.ts | noResultsFound": {
|
|
8877
|
+
"message": "No results found"
|
|
8878
|
+
},
|
|
8834
8879
|
"panels/sources/GoToLineQuickOpen.ts | typeANumberToGoToThatLine": {
|
|
8835
8880
|
"message": "Type a number to go to that line."
|
|
8836
8881
|
},
|
|
8837
|
-
"panels/sources/GutterDiffPlugin.ts | localModifications": {
|
|
8838
|
-
"message": "Local Modifications..."
|
|
8839
|
-
},
|
|
8840
8882
|
"panels/sources/InplaceFormatterEditorAction.ts | format": {
|
|
8841
8883
|
"message": "Format"
|
|
8842
8884
|
},
|
|
@@ -9107,18 +9149,21 @@
|
|
|
9107
9149
|
"panels/sources/sources-meta.ts | evaluateSelectedTextInConsole": {
|
|
9108
9150
|
"message": "Evaluate selected text in console"
|
|
9109
9151
|
},
|
|
9152
|
+
"panels/sources/sources-meta.ts | file": {
|
|
9153
|
+
"message": "File"
|
|
9154
|
+
},
|
|
9110
9155
|
"panels/sources/sources-meta.ts | filesystem": {
|
|
9111
9156
|
"message": "Filesystem"
|
|
9112
9157
|
},
|
|
9158
|
+
"panels/sources/sources-meta.ts | goTo": {
|
|
9159
|
+
"message": "Go to"
|
|
9160
|
+
},
|
|
9113
9161
|
"panels/sources/sources-meta.ts | goToAFunctionDeclarationruleSet": {
|
|
9114
9162
|
"message": "Go to a function declaration/rule set"
|
|
9115
9163
|
},
|
|
9116
9164
|
"panels/sources/sources-meta.ts | goToLine": {
|
|
9117
9165
|
"message": "Go to line"
|
|
9118
9166
|
},
|
|
9119
|
-
"panels/sources/sources-meta.ts | goToSymbol": {
|
|
9120
|
-
"message": "Go to symbol"
|
|
9121
|
-
},
|
|
9122
9167
|
"panels/sources/sources-meta.ts | incrementCssUnitBy": {
|
|
9123
9168
|
"message": "Increment CSS unit by {PH1}"
|
|
9124
9169
|
},
|
|
@@ -9128,14 +9173,17 @@
|
|
|
9128
9173
|
"panels/sources/sources-meta.ts | jumpToPreviousEditingLocation": {
|
|
9129
9174
|
"message": "Jump to previous editing location"
|
|
9130
9175
|
},
|
|
9176
|
+
"panels/sources/sources-meta.ts | line": {
|
|
9177
|
+
"message": "Line"
|
|
9178
|
+
},
|
|
9131
9179
|
"panels/sources/sources-meta.ts | nextCallFrame": {
|
|
9132
9180
|
"message": "Next call frame"
|
|
9133
9181
|
},
|
|
9134
9182
|
"panels/sources/sources-meta.ts | none": {
|
|
9135
9183
|
"message": "None"
|
|
9136
9184
|
},
|
|
9137
|
-
"panels/sources/sources-meta.ts |
|
|
9138
|
-
"message": "Open
|
|
9185
|
+
"panels/sources/sources-meta.ts | open": {
|
|
9186
|
+
"message": "Open"
|
|
9139
9187
|
},
|
|
9140
9188
|
"panels/sources/sources-meta.ts | pauseScriptExecution": {
|
|
9141
9189
|
"message": "Pause script execution"
|
|
@@ -9227,6 +9275,9 @@
|
|
|
9227
9275
|
"panels/sources/sources-meta.ts | switchFile": {
|
|
9228
9276
|
"message": "Switch file"
|
|
9229
9277
|
},
|
|
9278
|
+
"panels/sources/sources-meta.ts | symbol": {
|
|
9279
|
+
"message": "Symbol"
|
|
9280
|
+
},
|
|
9230
9281
|
"panels/sources/sources-meta.ts | threads": {
|
|
9231
9282
|
"message": "Threads"
|
|
9232
9283
|
},
|
|
@@ -10961,6 +11012,9 @@
|
|
|
10961
11012
|
"ui/components/survey_link/SurveyLink.ts | thankYouForYourFeedback": {
|
|
10962
11013
|
"message": "Thank you for your feedback"
|
|
10963
11014
|
},
|
|
11015
|
+
"ui/components/text_editor/config.ts | codeEditor": {
|
|
11016
|
+
"message": "Code editor"
|
|
11017
|
+
},
|
|
10964
11018
|
"ui/legacy/components/color_picker/ContrastDetails.ts | aa": {
|
|
10965
11019
|
"message": "AA"
|
|
10966
11020
|
},
|
|
@@ -11378,14 +11432,17 @@
|
|
|
11378
11432
|
"ui/legacy/components/perf_ui/PieChart.ts | total": {
|
|
11379
11433
|
"message": "Total"
|
|
11380
11434
|
},
|
|
11435
|
+
"ui/legacy/components/quick_open/CommandMenu.ts | command": {
|
|
11436
|
+
"message": "Command"
|
|
11437
|
+
},
|
|
11381
11438
|
"ui/legacy/components/quick_open/CommandMenu.ts | noCommandsFound": {
|
|
11382
11439
|
"message": "No commands found"
|
|
11383
11440
|
},
|
|
11384
11441
|
"ui/legacy/components/quick_open/CommandMenu.ts | oneOrMoreSettingsHaveChanged": {
|
|
11385
11442
|
"message": "One or more settings have changed which requires a reload to take effect."
|
|
11386
11443
|
},
|
|
11387
|
-
"ui/legacy/components/quick_open/CommandMenu.ts |
|
|
11388
|
-
"message": "Run
|
|
11444
|
+
"ui/legacy/components/quick_open/CommandMenu.ts | run": {
|
|
11445
|
+
"message": "Run"
|
|
11389
11446
|
},
|
|
11390
11447
|
"ui/legacy/components/quick_open/FilteredListWidget.ts | noResultsFound": {
|
|
11391
11448
|
"message": "No results found"
|