chrome-devtools-frontend 1.0.1001476 → 1.0.1003469
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/config/gni/devtools_grd_files.gni +5 -6
- package/front_end/core/common/ParsedURL.ts +3 -3
- package/front_end/core/host/InspectorFrontendHost.ts +30 -1
- package/front_end/core/host/InspectorFrontendHostAPI.ts +1 -0
- package/front_end/core/host/UserMetrics.ts +17 -1
- package/front_end/core/i18n/locales/en-US.json +24 -63
- package/front_end/core/i18n/locales/en-XL.json +24 -63
- package/front_end/core/protocol_client/InspectorBackend.ts +4 -0
- package/front_end/core/root/Runtime.ts +7 -3
- package/front_end/core/sdk/ServiceWorkerManager.ts +6 -5
- package/front_end/core/sdk/TracingModel.ts +5 -4
- package/front_end/devtools_compatibility.js +1 -0
- package/front_end/entrypoints/formatter_worker/FormatterActions.ts +14 -0
- package/front_end/entrypoints/formatter_worker/ScopeParser.ts +491 -0
- package/front_end/entrypoints/formatter_worker/Substitute.ts +4 -440
- package/front_end/entrypoints/formatter_worker/formatter_worker.ts +2 -0
- package/front_end/entrypoints/main/MainImpl.ts +1 -0
- package/front_end/generated/InspectorBackendCommands.js +42 -12
- package/front_end/generated/SupportedCSSProperties.js +3 -5
- package/front_end/generated/protocol-mapping.d.ts +5 -1
- package/front_end/generated/protocol-proxy-api.d.ts +4 -1
- package/front_end/generated/protocol.ts +68 -14
- package/front_end/models/bindings/CompilerScriptMapping.ts +1 -1
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +6 -34
- package/front_end/models/issues_manager/DeprecationIssue.ts +84 -172
- package/front_end/models/issues_manager/Issue.ts +8 -4
- package/front_end/models/issues_manager/descriptions/arInvalidHeader.md +3 -0
- package/front_end/models/persistence/NetworkPersistenceManager.ts +20 -0
- package/front_end/models/timeline_model/TimelineModel.ts +2 -49
- package/front_end/panels/application/AppManifestView.ts +3 -3
- package/front_end/panels/application/ApplicationPanelCacheSection.ts +3 -1
- package/front_end/panels/application/ApplicationPanelSidebar.ts +11 -6
- package/front_end/panels/application/ApplicationPanelTreeElement.ts +2 -2
- package/front_end/panels/application/BackgroundServiceView.ts +5 -4
- package/front_end/panels/application/ResourcesPanel.ts +1 -1
- package/front_end/panels/console/ConsoleViewMessage.ts +6 -3
- package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +3 -2
- package/front_end/panels/elements/StylePropertyTreeElement.ts +19 -13
- package/front_end/panels/elements/StylesSidebarPane.ts +74 -5
- package/front_end/panels/elements/stylesSidebarPane.css +3 -0
- package/front_end/panels/issues/AffectedResourcesView.ts +4 -3
- package/front_end/panels/issues/AffectedSourcesView.ts +2 -1
- package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +9 -38
- package/front_end/panels/issues/IssueView.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseController.ts +6 -3
- package/front_end/panels/lighthouse/LighthouseReporterTypes.ts +2 -1
- package/front_end/panels/lighthouse/lighthousePanel.css +4 -0
- package/front_end/panels/network/NetworkLogView.ts +32 -0
- package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +2 -2
- package/front_end/panels/profiler/HeapSnapshotView.ts +2 -1
- package/front_end/panels/profiler/ProfileDataGrid.ts +1 -1
- package/front_end/panels/security/SecurityPanel.ts +6 -5
- package/front_end/panels/settings/SettingsScreen.ts +2 -3
- package/front_end/panels/sources/SourcesNavigator.ts +1 -1
- package/front_end/panels/sources/SourcesPanel.ts +1 -1
- package/front_end/panels/timeline/PerformanceModel.ts +2 -6
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +5 -26
- package/front_end/panels/timeline/TimelineUIUtils.ts +14 -12
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1036 -1088
- package/front_end/third_party/lighthouse/locales/en-US.json +244 -4
- package/front_end/third_party/lighthouse/locales/en-XL.json +244 -4
- package/front_end/third_party/lighthouse/report/bundle.d.ts +4 -22
- package/front_end/third_party/lighthouse/report/bundle.js +23 -366
- package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
- package/front_end/ui/components/docs/linkifier/simple-url.ts +2 -1
- package/front_end/ui/components/docs/panel_feedback/basic.ts +3 -2
- package/front_end/ui/components/docs/panel_feedback/button.ts +2 -1
- package/front_end/ui/components/linkifier/LinkifierImpl.ts +4 -3
- package/front_end/ui/components/linkifier/LinkifierUtils.ts +2 -3
- package/front_end/ui/components/panel_feedback/FeedbackButton.ts +4 -6
- package/front_end/ui/components/panel_feedback/PanelFeedback.ts +5 -4
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +3 -3
- package/front_end/ui/components/text_editor/javascript.ts +6 -15
- package/front_end/ui/legacy/EmptyWidget.ts +2 -1
- package/front_end/ui/legacy/InspectorView.ts +29 -0
- package/front_end/ui/legacy/UIUtils.ts +4 -4
- package/front_end/ui/legacy/XLink.ts +12 -13
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +2 -4
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +1 -1
- package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +0 -2
- package/front_end/ui/legacy/components/utils/ImagePreview.ts +3 -7
- package/front_end/ui/legacy/components/utils/Linkifier.ts +23 -23
- package/front_end/ui/legacy/toolbar.css +1 -1
- package/package.json +1 -1
- package/scripts/whitespaces.txt +1 -0
- package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourceEventId.md +0 -3
- package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourceExpiry.md +0 -4
- package/front_end/models/issues_manager/descriptions/arInvalidAttributionSourcePriority.md +0 -4
@@ -279,9 +279,7 @@ grd_files_release_sources = [
|
|
279
279
|
"front_end/models/issues_manager/descriptions/arAttributionSourceUntrustworthyOrigin.md",
|
280
280
|
"front_end/models/issues_manager/descriptions/arAttributionUntrustworthyFrameOrigin.md",
|
281
281
|
"front_end/models/issues_manager/descriptions/arAttributionUntrustworthyOrigin.md",
|
282
|
-
"front_end/models/issues_manager/descriptions/
|
283
|
-
"front_end/models/issues_manager/descriptions/arInvalidAttributionSourceExpiry.md",
|
284
|
-
"front_end/models/issues_manager/descriptions/arInvalidAttributionSourcePriority.md",
|
282
|
+
"front_end/models/issues_manager/descriptions/arInvalidHeader.md",
|
285
283
|
"front_end/models/issues_manager/descriptions/arPermissionPolicyDisabled.md",
|
286
284
|
"front_end/models/issues_manager/descriptions/clientHintMetaTagAllowListInvalidOrigin.md",
|
287
285
|
"front_end/models/issues_manager/descriptions/clientHintMetaTagModifiedHTML.md",
|
@@ -669,6 +667,7 @@ grd_files_debug_sources = [
|
|
669
667
|
"front_end/entrypoints/formatter_worker/JSONFormatter.js",
|
670
668
|
"front_end/entrypoints/formatter_worker/JavaScriptFormatter.js",
|
671
669
|
"front_end/entrypoints/formatter_worker/JavaScriptOutline.js",
|
670
|
+
"front_end/entrypoints/formatter_worker/ScopeParser.js",
|
672
671
|
"front_end/entrypoints/formatter_worker/Substitute.js",
|
673
672
|
"front_end/entrypoints/heap_snapshot_worker/AllocationProfile.js",
|
674
673
|
"front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.js",
|
@@ -1383,7 +1382,10 @@ grd_files_debug_sources = [
|
|
1383
1382
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.js",
|
1384
1383
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.js",
|
1385
1384
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.js",
|
1385
|
+
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.js",
|
1386
|
+
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.js",
|
1386
1387
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.js",
|
1388
|
+
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js",
|
1387
1389
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js",
|
1388
1390
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.js",
|
1389
1391
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.js",
|
@@ -1397,9 +1399,6 @@ grd_files_debug_sources = [
|
|
1397
1399
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.js",
|
1398
1400
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js",
|
1399
1401
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js",
|
1400
|
-
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.js",
|
1401
|
-
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.js",
|
1402
|
-
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js",
|
1403
1402
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/web.js",
|
1404
1403
|
"front_end/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.js",
|
1405
1404
|
"front_end/third_party/wasmparser/package/dist/esm/WasmDis.js",
|
@@ -308,14 +308,14 @@ export class ParsedURL {
|
|
308
308
|
return ParsedURL.urlRegexInstance;
|
309
309
|
}
|
310
310
|
|
311
|
-
static extractPath(url:
|
311
|
+
static extractPath(url: Platform.DevToolsPath.UrlString): Platform.DevToolsPath.EncodedPathString {
|
312
312
|
const parsedURL = this.fromString(url);
|
313
313
|
return (parsedURL ? parsedURL.path : '') as Platform.DevToolsPath.EncodedPathString;
|
314
314
|
}
|
315
315
|
|
316
|
-
static extractOrigin(url:
|
316
|
+
static extractOrigin(url: Platform.DevToolsPath.UrlString): Platform.DevToolsPath.UrlString {
|
317
317
|
const parsedURL = this.fromString(url);
|
318
|
-
return parsedURL ? parsedURL.securityOrigin() :
|
318
|
+
return parsedURL ? parsedURL.securityOrigin() : Platform.DevToolsPath.EmptyUrlString;
|
319
319
|
}
|
320
320
|
|
321
321
|
static extractExtension(url: string): string {
|
@@ -54,10 +54,12 @@ const str_ = i18n.i18n.registerUIStrings('core/host/InspectorFrontendHost.ts', U
|
|
54
54
|
const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
|
55
55
|
|
56
56
|
const MAX_RECORDED_HISTOGRAMS_SIZE = 100;
|
57
|
+
const OVERRIDES_FILE_SYSTEM_PATH = '/overrides' as Platform.DevToolsPath.RawPathString;
|
57
58
|
|
58
59
|
export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
|
59
60
|
readonly #urlsBeingSaved: Map<Platform.DevToolsPath.RawPathString|Platform.DevToolsPath.UrlString, string[]>;
|
60
61
|
events!: Common.EventTarget.EventTarget<EventTypes>;
|
62
|
+
#fileSystem: FileSystem|null = null;
|
61
63
|
|
62
64
|
recordedEnumeratedHistograms: {actionName: EnumeratedHistogram, actionCode: number}[] = [];
|
63
65
|
recordedPerformanceHistograms: {histogramName: string, duration: number}[] = [];
|
@@ -213,13 +215,40 @@ export class InspectorFrontendHostStub implements InspectorFrontendHostAPI {
|
|
213
215
|
}
|
214
216
|
|
215
217
|
addFileSystem(type?: string): void {
|
218
|
+
const onFileSystem = (fs: FileSystem): void => {
|
219
|
+
this.#fileSystem = fs;
|
220
|
+
const fileSystem = {
|
221
|
+
fileSystemName: 'sandboxedRequestedFileSystem',
|
222
|
+
fileSystemPath: OVERRIDES_FILE_SYSTEM_PATH,
|
223
|
+
rootURL: 'filesystem:devtools://devtools/isolated/',
|
224
|
+
type: 'overrides',
|
225
|
+
};
|
226
|
+
this.events.dispatchEventToListeners(Events.FileSystemAdded, {fileSystem});
|
227
|
+
};
|
228
|
+
window.webkitRequestFileSystem(window.TEMPORARY, 1024 * 1024, onFileSystem);
|
216
229
|
}
|
217
230
|
|
218
231
|
removeFileSystem(fileSystemPath: Platform.DevToolsPath.RawPathString): void {
|
232
|
+
const removalCallback = (entries: Entry[]): void => {
|
233
|
+
entries.forEach(entry => {
|
234
|
+
if (entry.isDirectory) {
|
235
|
+
(entry as DirectoryEntry).removeRecursively(() => {});
|
236
|
+
} else if (entry.isFile) {
|
237
|
+
entry.remove(() => {});
|
238
|
+
}
|
239
|
+
});
|
240
|
+
};
|
241
|
+
|
242
|
+
if (this.#fileSystem) {
|
243
|
+
this.#fileSystem.root.createReader().readEntries(removalCallback);
|
244
|
+
}
|
245
|
+
|
246
|
+
this.#fileSystem = null;
|
247
|
+
this.events.dispatchEventToListeners(Events.FileSystemRemoved, OVERRIDES_FILE_SYSTEM_PATH);
|
219
248
|
}
|
220
249
|
|
221
250
|
isolatedFileSystem(fileSystemId: string, registeredName: string): FileSystem|null {
|
222
|
-
return
|
251
|
+
return this.#fileSystem;
|
223
252
|
}
|
224
253
|
|
225
254
|
loadNetworkResource(
|
@@ -372,6 +372,7 @@ export enum EnumeratedHistogram {
|
|
372
372
|
RecordingEdited = 'DevTools.RecordingEdited',
|
373
373
|
RecordingExported = 'DevTools.RecordingExported',
|
374
374
|
RecordingReplayFinished = 'DevTools.RecordingReplayFinished',
|
375
|
+
RecordingReplaySpeed = 'DevTools.RecordingReplaySpeed',
|
375
376
|
RecordingReplayStarted = 'DevTools.RecordingReplayStarted',
|
376
377
|
RecordingToggled = 'DevTools.RecordingToggled',
|
377
378
|
StyleTextCopied = 'DevTools.StyleTextCopied',
|
@@ -246,6 +246,11 @@ export class UserMetrics {
|
|
246
246
|
EnumeratedHistogram.RecordingReplayFinished, value, RecordingReplayFinished.MaxValue);
|
247
247
|
}
|
248
248
|
|
249
|
+
recordingReplaySpeed(value: RecordingReplaySpeed): void {
|
250
|
+
InspectorFrontendHostInstance.recordEnumeratedHistogram(
|
251
|
+
EnumeratedHistogram.RecordingReplaySpeed, value, RecordingReplaySpeed.MaxValue);
|
252
|
+
}
|
253
|
+
|
249
254
|
recordingReplayStarted(value: RecordingReplayStarted): void {
|
250
255
|
InspectorFrontendHostInstance.recordEnumeratedHistogram(
|
251
256
|
EnumeratedHistogram.RecordingReplayStarted, value, RecordingReplayStarted.MaxValue);
|
@@ -339,7 +344,8 @@ export enum Action {
|
|
339
344
|
ConsoleSidebarOpened = 53,
|
340
345
|
PerfPanelTraceImported = 54,
|
341
346
|
PerfPanelTraceExported = 55,
|
342
|
-
|
347
|
+
StackFrameRestarted = 56,
|
348
|
+
MaxValue = 57,
|
343
349
|
}
|
344
350
|
|
345
351
|
/* eslint-disable @typescript-eslint/naming-convention */
|
@@ -894,6 +900,16 @@ export enum RecordingReplayFinished {
|
|
894
900
|
MaxValue = 5,
|
895
901
|
}
|
896
902
|
|
903
|
+
// TODO(crbug.com/1167717): Make this a const enum again
|
904
|
+
// eslint-disable-next-line rulesdir/const_enum
|
905
|
+
export enum RecordingReplaySpeed {
|
906
|
+
Normal = 1,
|
907
|
+
Slow = 2,
|
908
|
+
VerySlow = 3,
|
909
|
+
ExtremelySlow = 4,
|
910
|
+
MaxValue = 5,
|
911
|
+
}
|
912
|
+
|
897
913
|
// TODO(crbug.com/1167717): Make this a const enum again
|
898
914
|
// eslint-disable-next-line rulesdir/const_enum
|
899
915
|
export enum RecordingReplayStarted {
|
@@ -1376,11 +1376,8 @@
|
|
1376
1376
|
"models/issues_manager/DeprecationIssue.ts | crossOriginAccessBasedOnDocumentDomain": {
|
1377
1377
|
"message": "Relaxing the same-origin policy by setting document.domain is deprecated, and will be disabled by default. This deprecation warning is for a cross-origin access that was enabled by setting document.domain."
|
1378
1378
|
},
|
1379
|
-
"models/issues_manager/DeprecationIssue.ts |
|
1380
|
-
"message": "Triggering
|
1381
|
-
},
|
1382
|
-
"models/issues_manager/DeprecationIssue.ts | crossOriginWindowConfirm": {
|
1383
|
-
"message": "Triggering window.confirm from cross origin iframes has been deprecated and will be removed in the future."
|
1379
|
+
"models/issues_manager/DeprecationIssue.ts | crossOriginWindowApi": {
|
1380
|
+
"message": "Triggering {PH1} from cross origin iframes has been deprecated and will be removed in the future."
|
1384
1381
|
},
|
1385
1382
|
"models/issues_manager/DeprecationIssue.ts | cssSelectorInternalMediaControlsOverlayCastButton": {
|
1386
1383
|
"message": "The disableRemotePlayback attribute should be used in order to disable the default Cast integration instead of using -internal-media-controls-overlay-cast-button selector."
|
@@ -1388,6 +1385,9 @@
|
|
1388
1385
|
"models/issues_manager/DeprecationIssue.ts | customCursorIntersectsViewport": {
|
1389
1386
|
"message": "Custom cursors with size greater than 32x32 DIP intersecting native UI is deprecated and will be removed."
|
1390
1387
|
},
|
1388
|
+
"models/issues_manager/DeprecationIssue.ts | deprecatedWithReplacement": {
|
1389
|
+
"message": "{PH1} is deprecated. Please use {PH2} instead."
|
1390
|
+
},
|
1391
1391
|
"models/issues_manager/DeprecationIssue.ts | deprecationExample": {
|
1392
1392
|
"message": "This is an example of a translated deprecation issue message."
|
1393
1393
|
},
|
@@ -1415,18 +1415,9 @@
|
|
1415
1415
|
"models/issues_manager/DeprecationIssue.ts | insecurePrivateNetworkSubresourceRequest": {
|
1416
1416
|
"message": "The website requested a subresource from a network that it could only access because of its users' privileged network position. These requests expose non-public devices and servers to the internet, increasing the risk of a cross-site request forgery (CSRF) attack, and/or information leakage. To mitigate these risks, Chrome deprecates requests to non-public subresources when initiated from non-secure contexts, and will start blocking them."
|
1417
1417
|
},
|
1418
|
-
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogCpuOveruseDetection": {
|
1419
|
-
"message": "CPU overuse detection is enabled-by-default and the ability to disable it using googCpuOveruseDetection will soon be removed. Please stop using this legacy constraint."
|
1420
|
-
},
|
1421
1418
|
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogIPv6": {
|
1422
1419
|
"message": "IPv6 is enabled-by-default and the ability to disable it using googIPv6 will soon be removed. Please stop using this legacy constraint."
|
1423
1420
|
},
|
1424
|
-
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogScreencastMinBitrate": {
|
1425
|
-
"message": "Screencast min bitrate is now set to 100 kbps by default and googScreencastMinBitrate will soon be ignored in favor of this new default. Please stop using this legacy constraint."
|
1426
|
-
},
|
1427
|
-
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogSuspendBelowMinBitrate": {
|
1428
|
-
"message": "Support for the googSuspendBelowMinBitrate constraint is about to be removed. Please stop using this legacy constraint."
|
1429
|
-
},
|
1430
1421
|
"models/issues_manager/DeprecationIssue.ts | localCSSFileExtensionRejected": {
|
1431
1422
|
"message": "CSS cannot be loaded from file: URLs unless they end in a .css file extension."
|
1432
1423
|
},
|
@@ -1463,36 +1454,9 @@
|
|
1463
1454
|
"models/issues_manager/DeprecationIssue.ts | pictureSourceSrc": {
|
1464
1455
|
"message": "<source src> with a <picture> parent is invalid and therefore ignored. Please use <source srcset> instead."
|
1465
1456
|
},
|
1466
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedCancelAnimationFrame": {
|
1467
|
-
"message": "webkitCancelAnimationFrame is vendor-specific. Please use the standard cancelAnimationFrame instead."
|
1468
|
-
},
|
1469
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedRequestAnimationFrame": {
|
1470
|
-
"message": "webkitRequestAnimationFrame is vendor-specific. Please use the standard requestAnimationFrame instead."
|
1471
|
-
},
|
1472
1457
|
"models/issues_manager/DeprecationIssue.ts | prefixedStorageInfo": {
|
1473
1458
|
"message": "window.webkitStorageInfo is deprecated. Please use navigator.webkitTemporaryStorage or navigator.webkitPersistentStorage instead."
|
1474
1459
|
},
|
1475
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoDisplayingFullscreen": {
|
1476
|
-
"message": "HTMLVideoElement.webkitDisplayingFullscreen is deprecated. Please use Document.fullscreenElement instead."
|
1477
|
-
},
|
1478
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullscreen": {
|
1479
|
-
"message": "HTMLVideoElement.webkitEnterFullscreen() is deprecated. Please use Element.requestFullscreen() instead."
|
1480
|
-
},
|
1481
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullScreen": {
|
1482
|
-
"message": "HTMLVideoElement.webkitEnterFullScreen() is deprecated. Please use Element.requestFullscreen() instead."
|
1483
|
-
},
|
1484
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullscreen": {
|
1485
|
-
"message": "HTMLVideoElement.webkitExitFullscreen() is deprecated. Please use Document.exitFullscreen() instead."
|
1486
|
-
},
|
1487
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullScreen": {
|
1488
|
-
"message": "HTMLVideoElement.webkitExitFullsSreen() is deprecated. Please use Document.exitFullscreen() instead."
|
1489
|
-
},
|
1490
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoSupportsFullscreen": {
|
1491
|
-
"message": "HTMLVideoElement.webkitSupportsFullscreen is deprecated. Please use Document.fullscreenEnabled instead."
|
1492
|
-
},
|
1493
|
-
"models/issues_manager/DeprecationIssue.ts | rangeExpand": {
|
1494
|
-
"message": "Range.expand() is deprecated. Please use Selection.modify() instead."
|
1495
|
-
},
|
1496
1460
|
"models/issues_manager/DeprecationIssue.ts | requestedSubresourceWithEmbeddedCredentials": {
|
1497
1461
|
"message": "Subresource requests whose URLs contain embedded credentials (e.g. https://user:pass@host/) are blocked."
|
1498
1462
|
},
|
@@ -1505,9 +1469,6 @@
|
|
1505
1469
|
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
1506
1470
|
"message": "Complex Plan B SDP detected. This dialect of the Session Description Protocol is no longer supported. Please use Unified Plan SDP instead."
|
1507
1471
|
},
|
1508
|
-
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionLegacyCreateWithMediaConstraints": {
|
1509
|
-
"message": "The mediaConstraints version of RTCOfferOptions/RTCAnswerOptions are deprecated and will soon be removed, please migrate to the promise-based createOffer/createAnswer instead."
|
1510
|
-
},
|
1511
1472
|
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionSdpSemanticsPlanB": {
|
1512
1473
|
"message": "Plan B SDP semantics, which is used when constructing an RTCPeerConnection with {sdpSemantics:'plan-b'}, is a legacy non-standard version of the Session Description Protocol that has been permanently deleted from the Web Platform. It is still available when building with IS_FUCHSIA, but we intend to delete it as soon as possible. Stop depending on it. See https://crbug.com/1302249 for status."
|
1513
1474
|
},
|
@@ -1517,9 +1478,6 @@
|
|
1517
1478
|
"models/issues_manager/DeprecationIssue.ts | rtpDataChannel": {
|
1518
1479
|
"message": "RTP data channels are no longer supported. The RtpDataChannels constraint is currently ignored, and may cause an error at a later date."
|
1519
1480
|
},
|
1520
|
-
"models/issues_manager/DeprecationIssue.ts | selectionAddRangeIntersect": {
|
1521
|
-
"message": "The behavior that Selection.addRange() merges existing Range and the specified Range was removed."
|
1522
|
-
},
|
1523
1481
|
"models/issues_manager/DeprecationIssue.ts | sharedArrayBufferConstructedWithoutIsolation": {
|
1524
1482
|
"message": "SharedArrayBuffer will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
1525
1483
|
},
|
@@ -1532,8 +1490,8 @@
|
|
1532
1490
|
"models/issues_manager/DeprecationIssue.ts | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
1533
1491
|
"message": "Extensions should opt into cross-origin isolation to continue using SharedArrayBuffer. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
1534
1492
|
},
|
1535
|
-
"models/issues_manager/DeprecationIssue.ts |
|
1536
|
-
"message": "
|
1493
|
+
"models/issues_manager/DeprecationIssue.ts | vendorSpecificApi": {
|
1494
|
+
"message": "{PH1} is vendor-specific. Please use the standard {PH2} instead."
|
1537
1495
|
},
|
1538
1496
|
"models/issues_manager/DeprecationIssue.ts | xhrJSONEncodingDetection": {
|
1539
1497
|
"message": "UTF-16 is not supported by response json in XMLHttpRequest"
|
@@ -5117,6 +5075,12 @@
|
|
5117
5075
|
"panels/elements/StylesSidebarPane.ts | clickToRevealLayer": {
|
5118
5076
|
"message": "Click to reveal layer in layer tree"
|
5119
5077
|
},
|
5078
|
+
"panels/elements/StylesSidebarPane.ts | copiedToClipboard": {
|
5079
|
+
"message": "Copied to clipboard"
|
5080
|
+
},
|
5081
|
+
"panels/elements/StylesSidebarPane.ts | copyAllCSSChanges": {
|
5082
|
+
"message": "Copy all the CSS changes"
|
5083
|
+
},
|
5120
5084
|
"panels/elements/StylesSidebarPane.ts | cssPropertyName": {
|
5121
5085
|
"message": "CSS property name: {PH1}"
|
5122
5086
|
},
|
@@ -5549,14 +5513,8 @@
|
|
5549
5513
|
"panels/issues/AttributionReportingIssueDetailsView.ts | frame": {
|
5550
5514
|
"message": "Frame"
|
5551
5515
|
},
|
5552
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts |
|
5553
|
-
"message": "Invalid
|
5554
|
-
},
|
5555
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourceExpiry": {
|
5556
|
-
"message": "Invalid attributionexpiry"
|
5557
|
-
},
|
5558
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourcePriority": {
|
5559
|
-
"message": "Invalid attributionsourcepriority"
|
5516
|
+
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidHeaderValue": {
|
5517
|
+
"message": "Invalid Header Value"
|
5560
5518
|
},
|
5561
5519
|
"panels/issues/AttributionReportingIssueDetailsView.ts | nViolations": {
|
5562
5520
|
"message": "{n, plural, =1 {# violation} other {# violations}}"
|
@@ -7067,6 +7025,9 @@
|
|
7067
7025
|
"panels/network/NetworkLogView.ts | copyStacktrace": {
|
7068
7026
|
"message": "Copy stack trace"
|
7069
7027
|
},
|
7028
|
+
"panels/network/NetworkLogView.ts | createResponseHeaderOverride": {
|
7029
|
+
"message": "Create response header override"
|
7030
|
+
},
|
7070
7031
|
"panels/network/NetworkLogView.ts | domcontentloadedS": {
|
7071
7032
|
"message": "DOMContentLoaded: {PH1}"
|
7072
7033
|
},
|
@@ -10466,12 +10427,6 @@
|
|
10466
10427
|
"panels/timeline/TimelineFlameChartDataProvider.ts | idleFrame": {
|
10467
10428
|
"message": "Idle Frame"
|
10468
10429
|
},
|
10469
|
-
"panels/timeline/TimelineFlameChartDataProvider.ts | input": {
|
10470
|
-
"message": "Input"
|
10471
|
-
},
|
10472
|
-
"panels/timeline/TimelineFlameChartDataProvider.ts | interactions": {
|
10473
|
-
"message": "Interactions"
|
10474
|
-
},
|
10475
10430
|
"panels/timeline/TimelineFlameChartDataProvider.ts | longFrame": {
|
10476
10431
|
"message": "Long frame"
|
10477
10432
|
},
|
@@ -12542,6 +12497,12 @@
|
|
12542
12497
|
"ui/legacy/InspectorView.ts | reloadDevtools": {
|
12543
12498
|
"message": "Reload DevTools"
|
12544
12499
|
},
|
12500
|
+
"ui/legacy/InspectorView.ts | selectFolder": {
|
12501
|
+
"message": "Select folder"
|
12502
|
+
},
|
12503
|
+
"ui/legacy/InspectorView.ts | selectOverrideFolder": {
|
12504
|
+
"message": "Select a folder to store override files in."
|
12505
|
+
},
|
12545
12506
|
"ui/legacy/InspectorView.ts | setToBrowserLanguage": {
|
12546
12507
|
"message": "Always match Chrome's language"
|
12547
12508
|
},
|
@@ -1376,11 +1376,8 @@
|
|
1376
1376
|
"models/issues_manager/DeprecationIssue.ts | crossOriginAccessBasedOnDocumentDomain": {
|
1377
1377
|
"message": "R̂él̂áx̂ín̂ǵ t̂h́ê śâḿê-ór̂íĝín̂ ṕôĺîćŷ b́ŷ śêt́t̂ín̂ǵ document.domain îś d̂ép̂ŕêćât́êd́, âńd̂ ẃîĺl̂ b́ê d́îśâb́l̂éd̂ b́ŷ d́êf́âúl̂t́. T̂h́îś d̂ép̂ŕêćât́îón̂ ẃâŕn̂ín̂ǵ îś f̂ór̂ á ĉŕôśŝ-ór̂íĝín̂ áĉćêśŝ t́ĥát̂ ẃâś êńâb́l̂éd̂ b́ŷ śêt́t̂ín̂ǵ document.domain."
|
1378
1378
|
},
|
1379
|
-
"models/issues_manager/DeprecationIssue.ts |
|
1380
|
-
"message": "T̂ŕîǵĝér̂ín̂ǵ
|
1381
|
-
},
|
1382
|
-
"models/issues_manager/DeprecationIssue.ts | crossOriginWindowConfirm": {
|
1383
|
-
"message": "T̂ŕîǵĝér̂ín̂ǵ window.confirm f̂ŕôḿ ĉŕôśŝ ór̂íĝín̂ íf̂ŕâḿêś ĥáŝ b́êén̂ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂ ín̂ t́ĥé f̂út̂úr̂é."
|
1379
|
+
"models/issues_manager/DeprecationIssue.ts | crossOriginWindowApi": {
|
1380
|
+
"message": "T̂ŕîǵĝér̂ín̂ǵ {PH1} f̂ŕôḿ ĉŕôśŝ ór̂íĝín̂ íf̂ŕâḿêś ĥáŝ b́êén̂ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂ ín̂ t́ĥé f̂út̂úr̂é."
|
1384
1381
|
},
|
1385
1382
|
"models/issues_manager/DeprecationIssue.ts | cssSelectorInternalMediaControlsOverlayCastButton": {
|
1386
1383
|
"message": "T̂h́ê disableRemotePlayback át̂t́r̂íb̂út̂é ŝh́ôúl̂d́ b̂é ûśêd́ îń ôŕd̂ér̂ t́ô d́îśâb́l̂é t̂h́ê d́êf́âúl̂t́ Ĉáŝt́ îńt̂éĝŕât́îón̂ ín̂śt̂éâd́ ôf́ ûśîńĝ -internal-media-controls-overlay-cast-button śêĺêćt̂ór̂."
|
@@ -1388,6 +1385,9 @@
|
|
1388
1385
|
"models/issues_manager/DeprecationIssue.ts | customCursorIntersectsViewport": {
|
1389
1386
|
"message": "Ĉúŝt́ôḿ ĉúr̂śôŕŝ ẃît́ĥ śîźê ǵr̂éât́êŕ t̂h́âń 32x̂32 D́ÎṔ îńt̂ér̂śêćt̂ín̂ǵ n̂át̂ív̂é ÛÍ îś d̂ép̂ŕêćât́êd́ âńd̂ ẃîĺl̂ b́ê ŕêḿôv́êd́."
|
1390
1387
|
},
|
1388
|
+
"models/issues_manager/DeprecationIssue.ts | deprecatedWithReplacement": {
|
1389
|
+
"message": "{PH1} îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê {PH2} ín̂śt̂éâd́."
|
1390
|
+
},
|
1391
1391
|
"models/issues_manager/DeprecationIssue.ts | deprecationExample": {
|
1392
1392
|
"message": "T̂h́îś îś âń êx́âḿp̂ĺê óf̂ á t̂ŕâńŝĺât́êd́ d̂ép̂ŕêćât́îón̂ íŝśûé m̂éŝśâǵê."
|
1393
1393
|
},
|
@@ -1415,18 +1415,9 @@
|
|
1415
1415
|
"models/issues_manager/DeprecationIssue.ts | insecurePrivateNetworkSubresourceRequest": {
|
1416
1416
|
"message": "T̂h́ê ẃêb́ŝít̂é r̂éq̂úêśt̂éd̂ á ŝúb̂ŕêśôúr̂ćê f́r̂óm̂ á n̂ét̂ẃôŕk̂ t́ĥát̂ ít̂ ćôúl̂d́ ôńl̂ý âćĉéŝś b̂éĉáûśê óf̂ ít̂ś ûśêŕŝ' ṕr̂ív̂íl̂éĝéd̂ ńêt́ŵór̂ḱ p̂óŝít̂íôń. T̂h́êśê ŕêq́ûéŝt́ŝ éx̂ṕôśê ńôń-p̂úb̂ĺîć d̂év̂íĉéŝ án̂d́ ŝér̂v́êŕŝ t́ô t́ĥé îńt̂ér̂ńêt́, îńĉŕêáŝín̂ǵ t̂h́ê ŕîśk̂ óf̂ á ĉŕôśŝ-śît́ê ŕêq́ûéŝt́ f̂ór̂ǵêŕŷ (ĆŜŔF̂) át̂t́âćk̂, án̂d́/ôŕ îńf̂ór̂ḿât́îón̂ ĺêák̂áĝé. T̂ó m̂ít̂íĝát̂é t̂h́êśê ŕîśk̂ś, Ĉh́r̂óm̂é d̂ép̂ŕêćât́êś r̂éq̂úêśt̂ś t̂ó n̂ón̂-ṕûb́l̂íĉ śûb́r̂éŝóûŕĉéŝ ẃĥén̂ ín̂ít̂íât́êd́ f̂ŕôḿ n̂ón̂-śêćûŕê ćôńt̂éx̂t́ŝ, án̂d́ ŵíl̂ĺ ŝt́âŕt̂ b́l̂óĉḱîńĝ t́ĥém̂."
|
1417
1417
|
},
|
1418
|
-
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogCpuOveruseDetection": {
|
1419
|
-
"message": "ĈṔÛ óv̂ér̂úŝé d̂ét̂éĉt́îón̂ íŝ én̂áb̂ĺêd́-b̂ý-d̂éf̂áûĺt̂ án̂d́ t̂h́ê áb̂íl̂ít̂ý t̂ó d̂íŝáb̂ĺê ít̂ úŝín̂ǵ googCpuOveruseDetection ŵíl̂ĺ ŝóôń b̂é r̂ém̂óv̂éd̂. Ṕl̂éâśê śt̂óp̂ úŝín̂ǵ t̂h́îś l̂éĝáĉý ĉón̂śt̂ŕâín̂t́."
|
1420
|
-
},
|
1421
1418
|
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogIPv6": {
|
1422
1419
|
"message": "ÎṔv̂6 íŝ én̂áb̂ĺêd́-b̂ý-d̂éf̂áûĺt̂ án̂d́ t̂h́ê áb̂íl̂ít̂ý t̂ó d̂íŝáb̂ĺê ít̂ úŝín̂ǵ googIPv6 ŵíl̂ĺ ŝóôń b̂é r̂ém̂óv̂éd̂. Ṕl̂éâśê śt̂óp̂ úŝín̂ǵ t̂h́îś l̂éĝáĉý ĉón̂śt̂ŕâín̂t́."
|
1423
1420
|
},
|
1424
|
-
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogScreencastMinBitrate": {
|
1425
|
-
"message": "Ŝćr̂éêńĉáŝt́ m̂ín̂ b́ît́r̂át̂é îś n̂óŵ śêt́ t̂ó 100 k̂b́p̂ś b̂ý d̂éf̂áûĺt̂ án̂d́ googScreencastMinBitrate ŵíl̂ĺ ŝóôń b̂é îǵn̂ór̂éd̂ ín̂ f́âv́ôŕ ôf́ t̂h́îś n̂éŵ d́êf́âúl̂t́. P̂ĺêáŝé ŝt́ôṕ ûśîńĝ t́ĥíŝ ĺêǵâćŷ ćôńŝt́r̂áîńt̂."
|
1426
|
-
},
|
1427
|
-
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogSuspendBelowMinBitrate": {
|
1428
|
-
"message": "Ŝúp̂ṕôŕt̂ f́ôŕ t̂h́ê googSuspendBelowMinBitrate ćôńŝt́r̂áîńt̂ íŝ áb̂óût́ t̂ó b̂é r̂ém̂óv̂éd̂. Ṕl̂éâśê śt̂óp̂ úŝín̂ǵ t̂h́îś l̂éĝáĉý ĉón̂śt̂ŕâín̂t́."
|
1429
|
-
},
|
1430
1421
|
"models/issues_manager/DeprecationIssue.ts | localCSSFileExtensionRejected": {
|
1431
1422
|
"message": "ĈŚŜ ćâńn̂ót̂ b́ê ĺôád̂éd̂ f́r̂óm̂ file: ÚR̂Ĺŝ ún̂ĺêśŝ t́ĥéŷ én̂d́ îń â .css f́îĺê éx̂t́êńŝíôń."
|
1432
1423
|
},
|
@@ -1463,36 +1454,9 @@
|
|
1463
1454
|
"models/issues_manager/DeprecationIssue.ts | pictureSourceSrc": {
|
1464
1455
|
"message": "<source src> ŵít̂h́ â <picture> ṕâŕêńt̂ íŝ ín̂v́âĺîd́ âńd̂ t́ĥér̂éf̂ór̂é îǵn̂ór̂éd̂. Ṕl̂éâśê úŝé <source srcset> îńŝt́êád̂."
|
1465
1456
|
},
|
1466
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedCancelAnimationFrame": {
|
1467
|
-
"message": "webkitCancelAnimationFrame îś v̂én̂d́ôŕ-ŝṕêćîf́îć. P̂ĺêáŝé ûśê t́ĥé ŝt́âńd̂ár̂d́ cancelAnimationFrame îńŝt́êád̂."
|
1468
|
-
},
|
1469
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedRequestAnimationFrame": {
|
1470
|
-
"message": "webkitRequestAnimationFrame îś v̂én̂d́ôŕ-ŝṕêćîf́îć. P̂ĺêáŝé ûśê t́ĥé ŝt́âńd̂ár̂d́ requestAnimationFrame îńŝt́êád̂."
|
1471
|
-
},
|
1472
1457
|
"models/issues_manager/DeprecationIssue.ts | prefixedStorageInfo": {
|
1473
1458
|
"message": "window.webkitStorageInfo îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê navigator.webkitTemporaryStorage ór̂ navigator.webkitPersistentStorage ín̂śt̂éâd́."
|
1474
1459
|
},
|
1475
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoDisplayingFullscreen": {
|
1476
|
-
"message": "HTMLVideoElement.webkitDisplayingFullscreen îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.fullscreenElement ín̂śt̂éâd́."
|
1477
|
-
},
|
1478
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullscreen": {
|
1479
|
-
"message": "HTMLVideoElement.webkitEnterFullscreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Element.requestFullscreen() ín̂śt̂éâd́."
|
1480
|
-
},
|
1481
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullScreen": {
|
1482
|
-
"message": "HTMLVideoElement.webkitEnterFullScreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Element.requestFullscreen() ín̂śt̂éâd́."
|
1483
|
-
},
|
1484
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullscreen": {
|
1485
|
-
"message": "HTMLVideoElement.webkitExitFullscreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.exitFullscreen() ín̂śt̂éâd́."
|
1486
|
-
},
|
1487
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullScreen": {
|
1488
|
-
"message": "HTMLVideoElement.webkitExitFullsSreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.exitFullscreen() ín̂śt̂éâd́."
|
1489
|
-
},
|
1490
|
-
"models/issues_manager/DeprecationIssue.ts | prefixedVideoSupportsFullscreen": {
|
1491
|
-
"message": "HTMLVideoElement.webkitSupportsFullscreen îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.fullscreenEnabled ín̂śt̂éâd́."
|
1492
|
-
},
|
1493
|
-
"models/issues_manager/DeprecationIssue.ts | rangeExpand": {
|
1494
|
-
"message": "Range.expand() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Selection.modify() ín̂śt̂éâd́."
|
1495
|
-
},
|
1496
1460
|
"models/issues_manager/DeprecationIssue.ts | requestedSubresourceWithEmbeddedCredentials": {
|
1497
1461
|
"message": "Ŝúb̂ŕêśôúr̂ćê ŕêq́ûéŝt́ŝ ẃĥóŝé ÛŔL̂ś ĉón̂t́âín̂ ém̂b́êd́d̂éd̂ ćr̂éd̂én̂t́îál̂ś (ê.ǵ. https://user:pass@host/) âŕê b́l̂óĉḱêd́."
|
1498
1462
|
},
|
@@ -1505,9 +1469,6 @@
|
|
1505
1469
|
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
1506
1470
|
"message": "Complex Plan B SDP d̂ét̂éĉt́êd́. T̂h́îś d̂íâĺêćt̂ óf̂ t́ĥé Session Description Protocol îś n̂ó l̂ón̂ǵêŕ ŝúp̂ṕôŕt̂éd̂. Ṕl̂éâśê úŝé Unified Plan SDP îńŝt́êád̂."
|
1507
1471
|
},
|
1508
|
-
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionLegacyCreateWithMediaConstraints": {
|
1509
|
-
"message": "T̂h́ê mediaConstraints v́êŕŝíôń ôf́ RTCOfferOptions/RTCAnswerOptions âŕê d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ ŝóôń b̂é r̂ém̂óv̂éd̂, ṕl̂éâśê ḿîǵr̂át̂é t̂ó t̂h́ê ṕr̂óm̂íŝé-b̂áŝéd̂ createOffer/createAnswer ín̂śt̂éâd́."
|
1510
|
-
},
|
1511
1472
|
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionSdpSemanticsPlanB": {
|
1512
1473
|
"message": "Plan B SDP semantics, ŵh́îćĥ íŝ úŝéd̂ ẃĥén̂ ćôńŝt́r̂úĉt́îńĝ án̂ RTCPeerConnection ẃît́ĥ {sdpSemantics:'plan-b'}, íŝ á l̂éĝáĉý n̂ón̂-śt̂án̂d́âŕd̂ v́êŕŝíôń ôf́ t̂h́ê Session Description Protocol t́ĥát̂ h́âś b̂éêń p̂ér̂ḿâńêńt̂ĺŷ d́êĺêt́êd́ f̂ŕôḿ t̂h́ê Ẃêb́ P̂ĺât́f̂ór̂ḿ. Ît́ îś ŝt́îĺl̂ áv̂áîĺâb́l̂é ŵh́êń b̂úîĺd̂ín̂ǵ ŵít̂h́ IS_FUCHSIA, b̂út̂ ẃê ín̂t́êńd̂ t́ô d́êĺêt́ê ít̂ áŝ śôón̂ áŝ ṕôśŝíb̂ĺê. Śt̂óp̂ d́êṕêńd̂ín̂ǵ ôń ît́. Ŝéê h́t̂t́p̂ś://ĉŕb̂úĝ.ćôḿ/1302249 f̂ór̂ śt̂át̂úŝ."
|
1513
1474
|
},
|
@@ -1517,9 +1478,6 @@
|
|
1517
1478
|
"models/issues_manager/DeprecationIssue.ts | rtpDataChannel": {
|
1518
1479
|
"message": "RTP data channels âŕê ńô ĺôńĝér̂ śûṕp̂ór̂t́êd́. T̂h́ê RtpDataChannels ćôńŝt́r̂áîńt̂ íŝ ćûŕr̂én̂t́l̂ý îǵn̂ór̂éd̂, án̂d́ m̂áŷ ćâúŝé âń êŕr̂ór̂ át̂ á l̂át̂ér̂ d́ât́ê."
|
1519
1480
|
},
|
1520
|
-
"models/issues_manager/DeprecationIssue.ts | selectionAddRangeIntersect": {
|
1521
|
-
"message": "T̂h́ê b́êh́âv́îór̂ t́ĥát̂ Selection.addRange() ḿêŕĝéŝ éx̂íŝt́îńĝ Ŕâńĝé âńd̂ t́ĥé ŝṕêćîf́îéd̂ Ŕâńĝé ŵáŝ ŕêḿôv́êd́."
|
1522
|
-
},
|
1523
1481
|
"models/issues_manager/DeprecationIssue.ts | sharedArrayBufferConstructedWithoutIsolation": {
|
1524
1482
|
"message": "SharedArrayBuffer ŵíl̂ĺ r̂éq̂úîŕê ćr̂óŝś-ôŕîǵîń îśôĺât́îón̂. Śêé ĥt́t̂ṕŝ://d́êv́êĺôṕêŕ.ĉh́r̂óm̂é.ĉóm̂/b́l̂óĝ/én̂áb̂ĺîńĝ-śĥár̂éd̂-ár̂ŕâý-b̂úf̂f́êŕ/ f̂ór̂ ḿôŕê d́êt́âíl̂ś."
|
1525
1483
|
},
|
@@ -1532,8 +1490,8 @@
|
|
1532
1490
|
"models/issues_manager/DeprecationIssue.ts | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
1533
1491
|
"message": "Êx́t̂én̂śîón̂ś ŝh́ôúl̂d́ ôṕt̂ ín̂t́ô ćr̂óŝś-ôŕîǵîń îśôĺât́îón̂ t́ô ćôńt̂ín̂úê úŝín̂ǵ SharedArrayBuffer. Ŝéê h́t̂t́p̂ś://d̂év̂él̂óp̂ér̂.ćĥŕôḿê.ćôḿ/d̂óĉś/êx́t̂én̂śîón̂ś/m̂v́3/ĉŕôśŝ-ór̂íĝín̂-íŝól̂át̂íôń/."
|
1534
1492
|
},
|
1535
|
-
"models/issues_manager/DeprecationIssue.ts |
|
1536
|
-
"message": "
|
1493
|
+
"models/issues_manager/DeprecationIssue.ts | vendorSpecificApi": {
|
1494
|
+
"message": "{PH1} îś v̂én̂d́ôŕ-ŝṕêćîf́îć. P̂ĺêáŝé ûśê t́ĥé ŝt́âńd̂ár̂d́ {PH2} îńŝt́êád̂."
|
1537
1495
|
},
|
1538
1496
|
"models/issues_manager/DeprecationIssue.ts | xhrJSONEncodingDetection": {
|
1539
1497
|
"message": "ÛT́F̂-16 íŝ ńôt́ ŝúp̂ṕôŕt̂éd̂ b́ŷ ŕêśp̂ón̂śê j́ŝón̂ ín̂ XMLHttpRequest"
|
@@ -5117,6 +5075,12 @@
|
|
5117
5075
|
"panels/elements/StylesSidebarPane.ts | clickToRevealLayer": {
|
5118
5076
|
"message": "Ĉĺîćk̂ t́ô ŕêv́êál̂ ĺâýêŕ îń l̂áŷér̂ t́r̂éê"
|
5119
5077
|
},
|
5078
|
+
"panels/elements/StylesSidebarPane.ts | copiedToClipboard": {
|
5079
|
+
"message": "Ĉóp̂íêd́ t̂ó ĉĺîṕb̂óâŕd̂"
|
5080
|
+
},
|
5081
|
+
"panels/elements/StylesSidebarPane.ts | copyAllCSSChanges": {
|
5082
|
+
"message": "Ĉóp̂ý âĺl̂ t́ĥé ĈŚŜ ćĥán̂ǵêś"
|
5083
|
+
},
|
5120
5084
|
"panels/elements/StylesSidebarPane.ts | cssPropertyName": {
|
5121
5085
|
"message": "CSS p̂ŕôṕêŕt̂ý n̂ám̂é: {PH1}"
|
5122
5086
|
},
|
@@ -5549,14 +5513,8 @@
|
|
5549
5513
|
"panels/issues/AttributionReportingIssueDetailsView.ts | frame": {
|
5550
5514
|
"message": "F̂ŕâḿê"
|
5551
5515
|
},
|
5552
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts |
|
5553
|
-
"message": "Îńv̂ál̂íd̂
|
5554
|
-
},
|
5555
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourceExpiry": {
|
5556
|
-
"message": "Îńv̂ál̂íd̂ attributionexpiry"
|
5557
|
-
},
|
5558
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourcePriority": {
|
5559
|
-
"message": "Îńv̂ál̂íd̂ attributionsourcepriority"
|
5516
|
+
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidHeaderValue": {
|
5517
|
+
"message": "Îńv̂ál̂íd̂ H́êád̂ér̂ V́âĺûé"
|
5560
5518
|
},
|
5561
5519
|
"panels/issues/AttributionReportingIssueDetailsView.ts | nViolations": {
|
5562
5520
|
"message": "{n, plural, =1 {# v̂íôĺât́îón̂} other {# v́îól̂át̂íôńŝ}}"
|
@@ -7067,6 +7025,9 @@
|
|
7067
7025
|
"panels/network/NetworkLogView.ts | copyStacktrace": {
|
7068
7026
|
"message": "Ĉóp̂ý ŝt́âćk̂ t́r̂áĉé"
|
7069
7027
|
},
|
7028
|
+
"panels/network/NetworkLogView.ts | createResponseHeaderOverride": {
|
7029
|
+
"message": "Ĉŕêát̂é r̂éŝṕôńŝé ĥéâd́êŕ ôv́êŕr̂íd̂é"
|
7030
|
+
},
|
7070
7031
|
"panels/network/NetworkLogView.ts | domcontentloadedS": {
|
7071
7032
|
"message": "D̂ÓM̂Ćôńt̂én̂t́L̂óâd́êd́: {PH1}"
|
7072
7033
|
},
|
@@ -10466,12 +10427,6 @@
|
|
10466
10427
|
"panels/timeline/TimelineFlameChartDataProvider.ts | idleFrame": {
|
10467
10428
|
"message": "Îd́l̂é F̂ŕâḿê"
|
10468
10429
|
},
|
10469
|
-
"panels/timeline/TimelineFlameChartDataProvider.ts | input": {
|
10470
|
-
"message": "Îńp̂út̂"
|
10471
|
-
},
|
10472
|
-
"panels/timeline/TimelineFlameChartDataProvider.ts | interactions": {
|
10473
|
-
"message": "Îńt̂ér̂áĉt́îón̂ś"
|
10474
|
-
},
|
10475
10430
|
"panels/timeline/TimelineFlameChartDataProvider.ts | longFrame": {
|
10476
10431
|
"message": "L̂ón̂ǵ f̂ŕâḿê"
|
10477
10432
|
},
|
@@ -12542,6 +12497,12 @@
|
|
12542
12497
|
"ui/legacy/InspectorView.ts | reloadDevtools": {
|
12543
12498
|
"message": "R̂él̂óâd́ D̂év̂T́ôól̂ś"
|
12544
12499
|
},
|
12500
|
+
"ui/legacy/InspectorView.ts | selectFolder": {
|
12501
|
+
"message": "Ŝél̂éĉt́ f̂ól̂d́êŕ"
|
12502
|
+
},
|
12503
|
+
"ui/legacy/InspectorView.ts | selectOverrideFolder": {
|
12504
|
+
"message": "Ŝél̂éĉt́ â f́ôĺd̂ér̂ t́ô śt̂ór̂é ôv́êŕr̂íd̂é f̂íl̂éŝ ín̂."
|
12505
|
+
},
|
12545
12506
|
"ui/legacy/InspectorView.ts | setToBrowserLanguage": {
|
12546
12507
|
"message": "Âĺŵáŷś m̂át̂ćĥ Ćĥŕôḿê'ś l̂án̂ǵûáĝé"
|
12547
12508
|
},
|
@@ -409,6 +409,10 @@ export class SessionRouter {
|
|
409
409
|
const callback = session.callbacks.get(messageObject.id);
|
410
410
|
session.callbacks.delete(messageObject.id);
|
411
411
|
if (!callback) {
|
412
|
+
if (messageObject.error?.code === ConnectionClosedErrorCode) {
|
413
|
+
// Ignore the errors that are sent as responses after the session closes.
|
414
|
+
return;
|
415
|
+
}
|
412
416
|
if (!suppressUnknownMessageErrors) {
|
413
417
|
InspectorBackend.reportProtocolError('Protocol Error: the message with wrong id', messageObject);
|
414
418
|
}
|
@@ -153,7 +153,9 @@ export class ExperimentsSupport {
|
|
153
153
|
Platform.DCHECK(
|
154
154
|
() => !this.#experimentNames.has(experimentName), 'Duplicate registration of experiment ' + experimentName);
|
155
155
|
this.#experimentNames.add(experimentName);
|
156
|
-
this.#experiments.push(new Experiment(
|
156
|
+
this.#experiments.push(new Experiment(
|
157
|
+
this, experimentName, experimentTitle, Boolean(unstable),
|
158
|
+
docLink as Platform.DevToolsPath.UrlString ?? Platform.DevToolsPath.EmptyUrlString));
|
157
159
|
}
|
158
160
|
|
159
161
|
isEnabled(experimentName: string): boolean {
|
@@ -244,9 +246,11 @@ export class Experiment {
|
|
244
246
|
name: string;
|
245
247
|
title: string;
|
246
248
|
unstable: boolean;
|
247
|
-
docLink?:
|
249
|
+
docLink?: Platform.DevToolsPath.UrlString;
|
248
250
|
readonly #experiments: ExperimentsSupport;
|
249
|
-
constructor(
|
251
|
+
constructor(
|
252
|
+
experiments: ExperimentsSupport, name: string, title: string, unstable: boolean,
|
253
|
+
docLink: Platform.DevToolsPath.UrlString) {
|
250
254
|
this.name = name;
|
251
255
|
this.title = title;
|
252
256
|
this.unstable = unstable;
|
@@ -34,6 +34,7 @@
|
|
34
34
|
|
35
35
|
import * as Common from '../common/common.js';
|
36
36
|
import * as i18n from '../i18n/i18n.js';
|
37
|
+
import type * as Platform from '../platform/platform.js';
|
37
38
|
import type * as ProtocolProxyApi from '../../generated/protocol-proxy-api.js';
|
38
39
|
import * as Protocol from '../../generated/protocol.js';
|
39
40
|
|
@@ -364,7 +365,7 @@ export class ServiceWorkerVersionState {
|
|
364
365
|
|
365
366
|
export class ServiceWorkerVersion {
|
366
367
|
id!: string;
|
367
|
-
scriptURL!:
|
368
|
+
scriptURL!: Platform.DevToolsPath.UrlString;
|
368
369
|
parsedURL!: Common.ParsedURL.ParsedURL;
|
369
370
|
securityOrigin!: string;
|
370
371
|
scriptLastModified!: number|undefined;
|
@@ -380,7 +381,7 @@ export class ServiceWorkerVersion {
|
|
380
381
|
|
381
382
|
update(payload: Protocol.ServiceWorker.ServiceWorkerVersion): void {
|
382
383
|
this.id = payload.versionId;
|
383
|
-
this.scriptURL = payload.scriptURL;
|
384
|
+
this.scriptURL = payload.scriptURL as Platform.DevToolsPath.UrlString;
|
384
385
|
const parsedURL = new Common.ParsedURL.ParsedURL(payload.scriptURL);
|
385
386
|
this.securityOrigin = parsedURL.securityOrigin();
|
386
387
|
this.currentState =
|
@@ -496,8 +497,8 @@ export namespace ServiceWorkerVersion {
|
|
496
497
|
export class ServiceWorkerRegistration {
|
497
498
|
#fingerprintInternal!: symbol;
|
498
499
|
id!: Protocol.ServiceWorker.RegistrationID;
|
499
|
-
scopeURL!:
|
500
|
-
securityOrigin!:
|
500
|
+
scopeURL!: Platform.DevToolsPath.UrlString;
|
501
|
+
securityOrigin!: Platform.DevToolsPath.UrlString;
|
501
502
|
isDeleted!: boolean;
|
502
503
|
versions: Map<string, ServiceWorkerVersion>;
|
503
504
|
deleting: boolean;
|
@@ -513,7 +514,7 @@ export class ServiceWorkerRegistration {
|
|
513
514
|
update(payload: Protocol.ServiceWorker.ServiceWorkerRegistration): void {
|
514
515
|
this.#fingerprintInternal = Symbol('fingerprint');
|
515
516
|
this.id = payload.registrationId;
|
516
|
-
this.scopeURL = payload.scopeURL;
|
517
|
+
this.scopeURL = payload.scopeURL as Platform.DevToolsPath.UrlString;
|
517
518
|
const parsedURL = new Common.ParsedURL.ParsedURL(payload.scopeURL);
|
518
519
|
this.securityOrigin = parsedURL.securityOrigin();
|
519
520
|
this.isDeleted = payload.isDeleted;
|
@@ -203,17 +203,18 @@ export class TracingModel {
|
|
203
203
|
this.#minimumRecordTimeInternal = timestamp;
|
204
204
|
}
|
205
205
|
|
206
|
-
// Track only main thread navigation start items. This is done by tracking
|
207
|
-
// and whether documentLoaderURL is set.
|
206
|
+
// Track only main thread navigation start items. This is done by tracking
|
207
|
+
// isOutermostMainFrame, and whether documentLoaderURL is set.
|
208
208
|
if (payload.name === 'navigationStart') {
|
209
209
|
const data = (payload.args.data as {
|
210
210
|
isLoadingMainFrame: boolean,
|
211
211
|
documentLoaderURL: string,
|
212
212
|
navigationId: string,
|
213
|
+
isOutermostMainFrame?: boolean,
|
213
214
|
} | null);
|
214
215
|
if (data) {
|
215
|
-
const {isLoadingMainFrame, documentLoaderURL, navigationId} = data;
|
216
|
-
if (isLoadingMainFrame && documentLoaderURL !== '') {
|
216
|
+
const {isLoadingMainFrame, documentLoaderURL, navigationId, isOutermostMainFrame} = data;
|
217
|
+
if ((isOutermostMainFrame ?? isLoadingMainFrame) && documentLoaderURL !== '') {
|
217
218
|
const thread = process.threadById(payload.tid);
|
218
219
|
const navStartEvent = Event.fromPayload(payload, thread);
|
219
220
|
this.#mainFrameNavStartTimes.set(navigationId, navStartEvent);
|