chrome-devtools-frontend 1.0.1001419 → 1.0.1002867
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/UserMetrics.ts +2 -1
- package/front_end/core/i18n/locales/en-US.json +155 -11
- package/front_end/core/i18n/locales/en-XL.json +155 -11
- 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/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/BreakpointManager.ts +12 -11
- 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 +313 -399
- 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/PersistenceImpl.ts +2 -2
- package/front_end/models/timeline_model/TimelineModel.ts +0 -48
- 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 +53 -0
- 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/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/DebuggerPlugin.ts +10 -9
- package/front_end/panels/sources/JavaScriptBreakpointsSidebarPane.ts +3 -3
- package/front_end/panels/timeline/PerformanceModel.ts +2 -6
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +1 -14
- 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 +2 -2
- package/front_end/ui/legacy/EmptyWidget.ts +2 -1
- 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(
|
@@ -339,7 +339,8 @@ export enum Action {
|
|
339
339
|
ConsoleSidebarOpened = 53,
|
340
340
|
PerfPanelTraceImported = 54,
|
341
341
|
PerfPanelTraceExported = 55,
|
342
|
-
|
342
|
+
StackFrameRestarted = 56,
|
343
|
+
MaxValue = 57,
|
343
344
|
}
|
344
345
|
|
345
346
|
/* eslint-disable @typescript-eslint/naming-convention */
|
@@ -1355,6 +1355,153 @@
|
|
1355
1355
|
"models/issues_manager/CrossOriginEmbedderPolicyIssue.ts | samesiteAndSameorigin": {
|
1356
1356
|
"message": "Same-Site and Same-Origin"
|
1357
1357
|
},
|
1358
|
+
"models/issues_manager/DeprecationIssue.ts | authorizationCoveredByWildcard": {
|
1359
|
+
"message": "Authorization will not be covered by the wildcard symbol (*) in CORS Access-Control-Allow-Headers handling."
|
1360
|
+
},
|
1361
|
+
"models/issues_manager/DeprecationIssue.ts | canRequestURLHTTPContainingNewline": {
|
1362
|
+
"message": "Resource requests whose URLs contained both removed whitespace \\(n|r|t) characters and less-than characters (<) are blocked. Please remove newlines and encode less-than characters from places like element attribute values in order to load these resources."
|
1363
|
+
},
|
1364
|
+
"models/issues_manager/DeprecationIssue.ts | chromeLoadTimesConnectionInfo": {
|
1365
|
+
"message": "chrome.loadTimes() is deprecated, instead use standardized API: Navigation Timing 2."
|
1366
|
+
},
|
1367
|
+
"models/issues_manager/DeprecationIssue.ts | chromeLoadTimesFirstPaintAfterLoadTime": {
|
1368
|
+
"message": "chrome.loadTimes() is deprecated, instead use standardized API: Paint Timing."
|
1369
|
+
},
|
1370
|
+
"models/issues_manager/DeprecationIssue.ts | chromeLoadTimesWasAlternateProtocolAvailable": {
|
1371
|
+
"message": "chrome.loadTimes() is deprecated, instead use standardized API: nextHopProtocol in Navigation Timing 2."
|
1372
|
+
},
|
1373
|
+
"models/issues_manager/DeprecationIssue.ts | cookieWithTruncatingChar": {
|
1374
|
+
"message": "Cookies containing a \\(0|r|n) character will be rejected instead of truncated."
|
1375
|
+
},
|
1376
|
+
"models/issues_manager/DeprecationIssue.ts | crossOriginAccessBasedOnDocumentDomain": {
|
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
|
+
},
|
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."
|
1381
|
+
},
|
1382
|
+
"models/issues_manager/DeprecationIssue.ts | cssSelectorInternalMediaControlsOverlayCastButton": {
|
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."
|
1384
|
+
},
|
1385
|
+
"models/issues_manager/DeprecationIssue.ts | customCursorIntersectsViewport": {
|
1386
|
+
"message": "Custom cursors with size greater than 32x32 DIP intersecting native UI is deprecated and will be removed."
|
1387
|
+
},
|
1388
|
+
"models/issues_manager/DeprecationIssue.ts | deprecatedWithReplacement": {
|
1389
|
+
"message": "{PH1} is deprecated. Please use {PH2} instead."
|
1390
|
+
},
|
1391
|
+
"models/issues_manager/DeprecationIssue.ts | deprecationExample": {
|
1392
|
+
"message": "This is an example of a translated deprecation issue message."
|
1393
|
+
},
|
1394
|
+
"models/issues_manager/DeprecationIssue.ts | documentDomainSettingWithoutOriginAgentClusterHeader": {
|
1395
|
+
"message": "Relaxing the same-origin policy by setting document.domain is deprecated, and will be disabled by default. To continue using this feature, please opt-out of origin-keyed agent clusters by sending an Origin-Agent-Cluster: ?0 header along with the HTTP response for the document and frames. See https://developer.chrome.com/blog/immutable-document-domain/ for more details."
|
1396
|
+
},
|
1397
|
+
"models/issues_manager/DeprecationIssue.ts | eventPath": {
|
1398
|
+
"message": "Event.path is deprecated and will be removed. Please use Event.composedPath() instead."
|
1399
|
+
},
|
1400
|
+
"models/issues_manager/DeprecationIssue.ts | feature": {
|
1401
|
+
"message": "Check the feature status page for more details."
|
1402
|
+
},
|
1403
|
+
"models/issues_manager/DeprecationIssue.ts | geolocationInsecureOrigin": {
|
1404
|
+
"message": "getCurrentPosition() and watchPosition() no longer work on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
1405
|
+
},
|
1406
|
+
"models/issues_manager/DeprecationIssue.ts | geolocationInsecureOriginDeprecatedNotRemoved": {
|
1407
|
+
"message": "getCurrentPosition() and watchPosition() are deprecated on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
1408
|
+
},
|
1409
|
+
"models/issues_manager/DeprecationIssue.ts | getUserMediaInsecureOrigin": {
|
1410
|
+
"message": "getUserMedia() no longer works on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
1411
|
+
},
|
1412
|
+
"models/issues_manager/DeprecationIssue.ts | hostCandidateAttributeGetter": {
|
1413
|
+
"message": "RTCPeerConnectionIceErrorEvent.hostCandidate is deprecated. Please use RTCPeerConnectionIceErrorEvent.address or RTCPeerConnectionIceErrorEvent.port instead."
|
1414
|
+
},
|
1415
|
+
"models/issues_manager/DeprecationIssue.ts | insecurePrivateNetworkSubresourceRequest": {
|
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
|
+
},
|
1418
|
+
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogIPv6": {
|
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."
|
1420
|
+
},
|
1421
|
+
"models/issues_manager/DeprecationIssue.ts | localCSSFileExtensionRejected": {
|
1422
|
+
"message": "CSS cannot be loaded from file: URLs unless they end in a .css file extension."
|
1423
|
+
},
|
1424
|
+
"models/issues_manager/DeprecationIssue.ts | mediaElementAudioSourceNode": {
|
1425
|
+
"message": "Creating a MediaElementAudioSourceNode on an OfflineAudioContext is deprecated and will be removed."
|
1426
|
+
},
|
1427
|
+
"models/issues_manager/DeprecationIssue.ts | mediaSourceAbortRemove": {
|
1428
|
+
"message": "Using SourceBuffer.abort() to abort remove()'s asynchronous range removal is deprecated due to specification change. Support will be removed in the future. You should instead await updateend. abort() is intended to only abort an asynchronous media append or reset parser state."
|
1429
|
+
},
|
1430
|
+
"models/issues_manager/DeprecationIssue.ts | mediaSourceDurationTruncatingBuffered": {
|
1431
|
+
"message": "Setting MediaSource.duration below the highest presentation timestamp of any buffered coded frames is deprecated due to specification change. Support for implicit removal of truncated buffered media will be removed in the future. You should instead perform explicit remove(newDuration, oldDuration) on all sourceBuffers, where newDuration < oldDuration."
|
1432
|
+
},
|
1433
|
+
"models/issues_manager/DeprecationIssue.ts | milestone": {
|
1434
|
+
"message": "This change will go into effect with milestone {milestone}."
|
1435
|
+
},
|
1436
|
+
"models/issues_manager/DeprecationIssue.ts | noSysexWebMIDIWithoutPermission": {
|
1437
|
+
"message": "Web MIDI will ask a permission to use even if the sysex is not specified in the MIDIOptions."
|
1438
|
+
},
|
1439
|
+
"models/issues_manager/DeprecationIssue.ts | notificationInsecureOrigin": {
|
1440
|
+
"message": "The Notification API may no longer be used from insecure origins. You should consider switching your application to a secure origin, such as HTTPS. See https://goo.gle/chrome-insecure-origins for more details."
|
1441
|
+
},
|
1442
|
+
"models/issues_manager/DeprecationIssue.ts | notificationPermissionRequestedIframe": {
|
1443
|
+
"message": "Permission for the Notification API may no longer be requested from a cross-origin iframe. You should consider requesting permission from a top-level frame or opening a new window instead."
|
1444
|
+
},
|
1445
|
+
"models/issues_manager/DeprecationIssue.ts | obsoleteWebRtcCipherSuite": {
|
1446
|
+
"message": "Your partner is negotiating an obsolete (D)TLS version. Please check with your partner to have this fixed."
|
1447
|
+
},
|
1448
|
+
"models/issues_manager/DeprecationIssue.ts | paymentRequestBasicCard": {
|
1449
|
+
"message": "The basic-card payment method is deprecated and will be removed."
|
1450
|
+
},
|
1451
|
+
"models/issues_manager/DeprecationIssue.ts | paymentRequestShowWithoutGesture": {
|
1452
|
+
"message": "Calling PaymentRequest.show() without user activation is deprecated and will be removed."
|
1453
|
+
},
|
1454
|
+
"models/issues_manager/DeprecationIssue.ts | pictureSourceSrc": {
|
1455
|
+
"message": "<source src> with a <picture> parent is invalid and therefore ignored. Please use <source srcset> instead."
|
1456
|
+
},
|
1457
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedStorageInfo": {
|
1458
|
+
"message": "window.webkitStorageInfo is deprecated. Please use navigator.webkitTemporaryStorage or navigator.webkitPersistentStorage instead."
|
1459
|
+
},
|
1460
|
+
"models/issues_manager/DeprecationIssue.ts | requestedSubresourceWithEmbeddedCredentials": {
|
1461
|
+
"message": "Subresource requests whose URLs contain embedded credentials (e.g. https://user:pass@host/) are blocked."
|
1462
|
+
},
|
1463
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpFalse": {
|
1464
|
+
"message": "The constraint DtlsSrtpKeyAgreement is removed. You have specified a false value for this constraint, which is interpreted as an attempt to use the removed SDES key negotiation method. This functionality is removed; use a service that supports DTLS key negotiation instead."
|
1465
|
+
},
|
1466
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpTrue": {
|
1467
|
+
"message": "The constraint DtlsSrtpKeyAgreement is removed. You have specified a true value for this constraint, which had no effect, but you can remove this constraint for tidiness."
|
1468
|
+
},
|
1469
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
1470
|
+
"message": "Complex Plan B SDP detected. This dialect of the Session Description Protocol is no longer supported. Please use Unified Plan SDP instead."
|
1471
|
+
},
|
1472
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionSdpSemanticsPlanB": {
|
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."
|
1474
|
+
},
|
1475
|
+
"models/issues_manager/DeprecationIssue.ts | rtcpMuxPolicyNegotiate": {
|
1476
|
+
"message": "The rtcpMuxPolicy option is deprecated and will be removed."
|
1477
|
+
},
|
1478
|
+
"models/issues_manager/DeprecationIssue.ts | rtpDataChannel": {
|
1479
|
+
"message": "RTP data channels are no longer supported. The RtpDataChannels constraint is currently ignored, and may cause an error at a later date."
|
1480
|
+
},
|
1481
|
+
"models/issues_manager/DeprecationIssue.ts | sharedArrayBufferConstructedWithoutIsolation": {
|
1482
|
+
"message": "SharedArrayBuffer will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
1483
|
+
},
|
1484
|
+
"models/issues_manager/DeprecationIssue.ts | textToSpeech_DisallowedByAutoplay": {
|
1485
|
+
"message": "speechSynthesis.speak() without user activation is deprecated and will be removed."
|
1486
|
+
},
|
1487
|
+
"models/issues_manager/DeprecationIssue.ts | title": {
|
1488
|
+
"message": "Deprecated Feature Used"
|
1489
|
+
},
|
1490
|
+
"models/issues_manager/DeprecationIssue.ts | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
1491
|
+
"message": "Extensions should opt into cross-origin isolation to continue using SharedArrayBuffer. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
1492
|
+
},
|
1493
|
+
"models/issues_manager/DeprecationIssue.ts | vendorSpecificApi": {
|
1494
|
+
"message": "{PH1} is vendor-specific. Please use the standard {PH2} instead."
|
1495
|
+
},
|
1496
|
+
"models/issues_manager/DeprecationIssue.ts | xhrJSONEncodingDetection": {
|
1497
|
+
"message": "UTF-16 is not supported by response json in XMLHttpRequest"
|
1498
|
+
},
|
1499
|
+
"models/issues_manager/DeprecationIssue.ts | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
1500
|
+
"message": "Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help, check https://xhr.spec.whatwg.org/."
|
1501
|
+
},
|
1502
|
+
"models/issues_manager/DeprecationIssue.ts | xrSupportsSession": {
|
1503
|
+
"message": "supportsSession() is deprecated. Please use isSessionSupported() and check the resolved boolean value instead."
|
1504
|
+
},
|
1358
1505
|
"models/issues_manager/FederatedAuthRequestIssue.ts | fedCm": {
|
1359
1506
|
"message": "Federated Credential Management API"
|
1360
1507
|
},
|
@@ -4928,6 +5075,12 @@
|
|
4928
5075
|
"panels/elements/StylesSidebarPane.ts | clickToRevealLayer": {
|
4929
5076
|
"message": "Click to reveal layer in layer tree"
|
4930
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
|
+
},
|
4931
5084
|
"panels/elements/StylesSidebarPane.ts | cssPropertyName": {
|
4932
5085
|
"message": "CSS property name: {PH1}"
|
4933
5086
|
},
|
@@ -5360,14 +5513,8 @@
|
|
5360
5513
|
"panels/issues/AttributionReportingIssueDetailsView.ts | frame": {
|
5361
5514
|
"message": "Frame"
|
5362
5515
|
},
|
5363
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts |
|
5364
|
-
"message": "Invalid
|
5365
|
-
},
|
5366
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourceExpiry": {
|
5367
|
-
"message": "Invalid attributionexpiry"
|
5368
|
-
},
|
5369
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourcePriority": {
|
5370
|
-
"message": "Invalid attributionsourcepriority"
|
5516
|
+
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidHeaderValue": {
|
5517
|
+
"message": "Invalid Header Value"
|
5371
5518
|
},
|
5372
5519
|
"panels/issues/AttributionReportingIssueDetailsView.ts | nViolations": {
|
5373
5520
|
"message": "{n, plural, =1 {# violation} other {# violations}}"
|
@@ -10277,9 +10424,6 @@
|
|
10277
10424
|
"panels/timeline/TimelineFlameChartDataProvider.ts | idleFrame": {
|
10278
10425
|
"message": "Idle Frame"
|
10279
10426
|
},
|
10280
|
-
"panels/timeline/TimelineFlameChartDataProvider.ts | input": {
|
10281
|
-
"message": "Input"
|
10282
|
-
},
|
10283
10427
|
"panels/timeline/TimelineFlameChartDataProvider.ts | interactions": {
|
10284
10428
|
"message": "Interactions"
|
10285
10429
|
},
|
@@ -1355,6 +1355,153 @@
|
|
1355
1355
|
"models/issues_manager/CrossOriginEmbedderPolicyIssue.ts | samesiteAndSameorigin": {
|
1356
1356
|
"message": "Ŝám̂é-Ŝít̂é âńd̂ Śâḿê-Ór̂íĝín̂"
|
1357
1357
|
},
|
1358
|
+
"models/issues_manager/DeprecationIssue.ts | authorizationCoveredByWildcard": {
|
1359
|
+
"message": "Âút̂h́ôŕîźât́îón̂ ẃîĺl̂ ńôt́ b̂é ĉóv̂ér̂éd̂ b́ŷ t́ĥé ŵíl̂d́ĉár̂d́ ŝým̂b́ôĺ (*) îń ĈÓR̂Ś Access-Control-Allow-Headers ĥán̂d́l̂ín̂ǵ."
|
1360
|
+
},
|
1361
|
+
"models/issues_manager/DeprecationIssue.ts | canRequestURLHTTPContainingNewline": {
|
1362
|
+
"message": "R̂éŝóûŕĉé r̂éq̂úêśt̂ś ŵh́ôśê ÚR̂Ĺŝ ćôńt̂áîńêd́ b̂ót̂h́ r̂ém̂óv̂éd̂ ẃĥít̂éŝṕâćê \\(n|r|t) ćĥár̂áĉt́êŕŝ án̂d́ l̂éŝś-t̂h́âń ĉh́âŕâćt̂ér̂ś (<) âŕê b́l̂óĉḱêd́. P̂ĺêáŝé r̂ém̂óv̂é n̂éŵĺîńêś âńd̂ én̂ćôd́ê ĺêśŝ-t́ĥán̂ ćĥár̂áĉt́êŕŝ f́r̂óm̂ ṕl̂áĉéŝ ĺîḱê él̂ém̂én̂t́ ât́t̂ŕîb́ût́ê v́âĺûéŝ ín̂ ór̂d́êŕ t̂ó l̂óâd́ t̂h́êśê ŕêśôúr̂ćêś."
|
1363
|
+
},
|
1364
|
+
"models/issues_manager/DeprecationIssue.ts | chromeLoadTimesConnectionInfo": {
|
1365
|
+
"message": "chrome.loadTimes() îś d̂ép̂ŕêćât́êd́, îńŝt́êád̂ úŝé ŝt́âńd̂ár̂d́îźêd́ ÂṔÎ: Ńâv́îǵât́îón̂ T́îḿîńĝ 2."
|
1366
|
+
},
|
1367
|
+
"models/issues_manager/DeprecationIssue.ts | chromeLoadTimesFirstPaintAfterLoadTime": {
|
1368
|
+
"message": "chrome.loadTimes() îś d̂ép̂ŕêćât́êd́, îńŝt́êád̂ úŝé ŝt́âńd̂ár̂d́îźêd́ ÂṔÎ: Ṕâín̂t́ T̂ím̂ín̂ǵ."
|
1369
|
+
},
|
1370
|
+
"models/issues_manager/DeprecationIssue.ts | chromeLoadTimesWasAlternateProtocolAvailable": {
|
1371
|
+
"message": "chrome.loadTimes() îś d̂ép̂ŕêćât́êd́, îńŝt́êád̂ úŝé ŝt́âńd̂ár̂d́îźêd́ ÂṔÎ: nextHopProtocol ín̂ Ńâv́îǵât́îón̂ T́îḿîńĝ 2."
|
1372
|
+
},
|
1373
|
+
"models/issues_manager/DeprecationIssue.ts | cookieWithTruncatingChar": {
|
1374
|
+
"message": "Ĉóôḱîéŝ ćôńt̂áîńîńĝ á \\(0|r|n) ĉh́âŕâćt̂ér̂ ẃîĺl̂ b́ê ŕêj́êćt̂éd̂ ín̂śt̂éâd́ ôf́ t̂ŕûńĉát̂éd̂."
|
1375
|
+
},
|
1376
|
+
"models/issues_manager/DeprecationIssue.ts | crossOriginAccessBasedOnDocumentDomain": {
|
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
|
+
},
|
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̂é."
|
1381
|
+
},
|
1382
|
+
"models/issues_manager/DeprecationIssue.ts | cssSelectorInternalMediaControlsOverlayCastButton": {
|
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̂."
|
1384
|
+
},
|
1385
|
+
"models/issues_manager/DeprecationIssue.ts | customCursorIntersectsViewport": {
|
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́."
|
1387
|
+
},
|
1388
|
+
"models/issues_manager/DeprecationIssue.ts | deprecatedWithReplacement": {
|
1389
|
+
"message": "{PH1} îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê {PH2} ín̂śt̂éâd́."
|
1390
|
+
},
|
1391
|
+
"models/issues_manager/DeprecationIssue.ts | deprecationExample": {
|
1392
|
+
"message": "T̂h́îś îś âń êx́âḿp̂ĺê óf̂ á t̂ŕâńŝĺât́êd́ d̂ép̂ŕêćât́îón̂ íŝśûé m̂éŝśâǵê."
|
1393
|
+
},
|
1394
|
+
"models/issues_manager/DeprecationIssue.ts | documentDomainSettingWithoutOriginAgentClusterHeader": {
|
1395
|
+
"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̂ó ĉón̂t́îńûé ûśîńĝ t́ĥíŝ f́êát̂úr̂é, p̂ĺêáŝé ôṕt̂-óût́ ôf́ ôŕîǵîń-k̂éŷéd̂ áĝén̂t́ ĉĺûśt̂ér̂ś b̂ý ŝén̂d́îńĝ án̂ Origin-Agent-Cluster: ?0 h́êád̂ér̂ ál̂ón̂ǵ ŵít̂h́ t̂h́ê H́T̂T́P̂ ŕêśp̂ón̂śê f́ôŕ t̂h́ê d́ôćûḿêńt̂ án̂d́ f̂ŕâḿêś. Ŝéê h́t̂t́p̂ś://d̂év̂él̂óp̂ér̂.ćĥŕôḿê.ćôḿ/b̂ĺôǵ/îḿm̂út̂áb̂ĺê-d́ôćûḿêńt̂-d́ôḿâín̂/ f́ôŕ m̂ór̂é d̂ét̂áîĺŝ."
|
1396
|
+
},
|
1397
|
+
"models/issues_manager/DeprecationIssue.ts | eventPath": {
|
1398
|
+
"message": "Event.path îś d̂ép̂ŕêćât́êd́ âńd̂ ẃîĺl̂ b́ê ŕêḿôv́êd́. P̂ĺêáŝé ûśê Event.composedPath() ín̂śt̂éâd́."
|
1399
|
+
},
|
1400
|
+
"models/issues_manager/DeprecationIssue.ts | feature": {
|
1401
|
+
"message": "Ĉh́êćk̂ t́ĥé f̂éât́ûŕê śt̂át̂úŝ ṕâǵê f́ôŕ m̂ór̂é d̂ét̂áîĺŝ."
|
1402
|
+
},
|
1403
|
+
"models/issues_manager/DeprecationIssue.ts | geolocationInsecureOrigin": {
|
1404
|
+
"message": "getCurrentPosition() âńd̂ watchPosition() ńô ĺôńĝér̂ ẃôŕk̂ ón̂ ín̂śêćûŕê ór̂íĝín̂ś. T̂ó ûśê t́ĥíŝ f́êát̂úr̂é, ŷóû śĥóûĺd̂ ćôńŝíd̂ér̂ śŵít̂ćĥín̂ǵ ŷóûŕ âṕp̂ĺîćât́îón̂ t́ô á ŝéĉúr̂é ôŕîǵîń, ŝúĉh́ âś ĤT́T̂ṔŜ. Śêé ĥt́t̂ṕŝ://ǵôó.ĝĺê/ćĥŕôḿê-ín̂śêćûŕê-ór̂íĝín̂ś f̂ór̂ ḿôŕê d́êt́âíl̂ś."
|
1405
|
+
},
|
1406
|
+
"models/issues_manager/DeprecationIssue.ts | geolocationInsecureOriginDeprecatedNotRemoved": {
|
1407
|
+
"message": "getCurrentPosition() âńd̂ watchPosition() ár̂é d̂ép̂ŕêćât́êd́ ôń îńŝéĉúr̂é ôŕîǵîńŝ. T́ô úŝé t̂h́îś f̂éât́ûŕê, ýôú ŝh́ôúl̂d́ ĉón̂śîd́êŕ ŝẃît́ĉh́îńĝ ýôúr̂ áp̂ṕl̂íĉát̂íôń t̂ó â śêćûŕê ór̂íĝín̂, śûćĥ áŝ H́T̂T́P̂Ś. Ŝéê h́t̂t́p̂ś://ĝóô.ǵl̂é/ĉh́r̂óm̂é-îńŝéĉúr̂é-ôŕîǵîńŝ f́ôŕ m̂ór̂é d̂ét̂áîĺŝ."
|
1408
|
+
},
|
1409
|
+
"models/issues_manager/DeprecationIssue.ts | getUserMediaInsecureOrigin": {
|
1410
|
+
"message": "getUserMedia() n̂ó l̂ón̂ǵêŕ ŵór̂ḱŝ ón̂ ín̂śêćûŕê ór̂íĝín̂ś. T̂ó ûśê t́ĥíŝ f́êát̂úr̂é, ŷóû śĥóûĺd̂ ćôńŝíd̂ér̂ śŵít̂ćĥín̂ǵ ŷóûŕ âṕp̂ĺîćât́îón̂ t́ô á ŝéĉúr̂é ôŕîǵîń, ŝúĉh́ âś ĤT́T̂ṔŜ. Śêé ĥt́t̂ṕŝ://ǵôó.ĝĺê/ćĥŕôḿê-ín̂śêćûŕê-ór̂íĝín̂ś f̂ór̂ ḿôŕê d́êt́âíl̂ś."
|
1411
|
+
},
|
1412
|
+
"models/issues_manager/DeprecationIssue.ts | hostCandidateAttributeGetter": {
|
1413
|
+
"message": "RTCPeerConnectionIceErrorEvent.hostCandidate îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê RTCPeerConnectionIceErrorEvent.address ór̂ RTCPeerConnectionIceErrorEvent.port ín̂śt̂éâd́."
|
1414
|
+
},
|
1415
|
+
"models/issues_manager/DeprecationIssue.ts | insecurePrivateNetworkSubresourceRequest": {
|
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
|
+
},
|
1418
|
+
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogIPv6": {
|
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́."
|
1420
|
+
},
|
1421
|
+
"models/issues_manager/DeprecationIssue.ts | localCSSFileExtensionRejected": {
|
1422
|
+
"message": "ĈŚŜ ćâńn̂ót̂ b́ê ĺôád̂éd̂ f́r̂óm̂ file: ÚR̂Ĺŝ ún̂ĺêśŝ t́ĥéŷ én̂d́ îń â .css f́îĺê éx̂t́êńŝíôń."
|
1423
|
+
},
|
1424
|
+
"models/issues_manager/DeprecationIssue.ts | mediaElementAudioSourceNode": {
|
1425
|
+
"message": "Ĉŕêát̂ín̂ǵ â MediaElementAudioSourceNode ón̂ án̂ OfflineAudioContext íŝ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂."
|
1426
|
+
},
|
1427
|
+
"models/issues_manager/DeprecationIssue.ts | mediaSourceAbortRemove": {
|
1428
|
+
"message": "Ûśîńĝ SourceBuffer.abort() t́ô áb̂ór̂t́ remove()'ŝ áŝýn̂ćĥŕôńôúŝ ŕâńĝé r̂ém̂óv̂ál̂ íŝ d́êṕr̂éĉát̂éd̂ d́ûé t̂ó ŝṕêćîf́îćât́îón̂ ćĥán̂ǵê. Śûṕp̂ór̂t́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂ ín̂ t́ĥé f̂út̂úr̂é. Ŷóû śĥóûĺd̂ ín̂śt̂éâd́ âẃâít̂ updateend. abort() íŝ ín̂t́êńd̂éd̂ t́ô ón̂ĺŷ áb̂ór̂t́ âń âśŷńĉh́r̂ón̂óûś m̂éd̂íâ áp̂ṕêńd̂ ór̂ ŕêśêt́ p̂ár̂śêŕ ŝt́ât́ê."
|
1429
|
+
},
|
1430
|
+
"models/issues_manager/DeprecationIssue.ts | mediaSourceDurationTruncatingBuffered": {
|
1431
|
+
"message": "Ŝét̂t́îńĝ MediaSource.duration b́êĺôẃ t̂h́ê h́îǵĥéŝt́ p̂ŕêśêńt̂át̂íôń t̂ím̂éŝt́âḿp̂ óf̂ án̂ý b̂úf̂f́êŕêd́ ĉód̂éd̂ f́r̂ám̂éŝ íŝ d́êṕr̂éĉát̂éd̂ d́ûé t̂ó ŝṕêćîf́îćât́îón̂ ćĥán̂ǵê. Śûṕp̂ór̂t́ f̂ór̂ ím̂ṕl̂íĉít̂ ŕêḿôv́âĺ ôf́ t̂ŕûńĉát̂éd̂ b́ûf́f̂ér̂éd̂ ḿêd́îá ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂ ín̂ t́ĥé f̂út̂úr̂é. Ŷóû śĥóûĺd̂ ín̂śt̂éâd́ p̂ér̂f́ôŕm̂ éx̂ṕl̂íĉít̂ remove(newDuration, oldDuration) ón̂ ál̂ĺ sourceBuffers, ŵh́êŕê newDuration < oldDuration."
|
1432
|
+
},
|
1433
|
+
"models/issues_manager/DeprecationIssue.ts | milestone": {
|
1434
|
+
"message": "T̂h́îś ĉh́âńĝé ŵíl̂ĺ ĝó îńt̂ó êf́f̂éĉt́ ŵít̂h́ m̂íl̂éŝt́ôńê {milestone}."
|
1435
|
+
},
|
1436
|
+
"models/issues_manager/DeprecationIssue.ts | noSysexWebMIDIWithoutPermission": {
|
1437
|
+
"message": "Ŵéb̂ ḾÎD́Î ẃîĺl̂ áŝḱ â ṕêŕm̂íŝśîón̂ t́ô úŝé êv́êń îf́ t̂h́ê śŷśêx́ îś n̂ót̂ śp̂éĉíf̂íêd́ îń t̂h́ê MIDIOptions."
|
1438
|
+
},
|
1439
|
+
"models/issues_manager/DeprecationIssue.ts | notificationInsecureOrigin": {
|
1440
|
+
"message": "T̂h́ê Ńôt́îf́îćât́îón̂ ÁP̂Í m̂áŷ ńô ĺôńĝér̂ b́ê úŝéd̂ f́r̂óm̂ ín̂śêćûŕê ór̂íĝín̂ś. Ŷóû śĥóûĺd̂ ćôńŝíd̂ér̂ śŵít̂ćĥín̂ǵ ŷóûŕ âṕp̂ĺîćât́îón̂ t́ô á ŝéĉúr̂é ôŕîǵîń, ŝúĉh́ âś ĤT́T̂ṔŜ. Śêé ĥt́t̂ṕŝ://ǵôó.ĝĺê/ćĥŕôḿê-ín̂śêćûŕê-ór̂íĝín̂ś f̂ór̂ ḿôŕê d́êt́âíl̂ś."
|
1441
|
+
},
|
1442
|
+
"models/issues_manager/DeprecationIssue.ts | notificationPermissionRequestedIframe": {
|
1443
|
+
"message": "P̂ér̂ḿîśŝíôń f̂ór̂ t́ĥé N̂ót̂íf̂íĉát̂íôń ÂṔÎ ḿâý n̂ó l̂ón̂ǵêŕ b̂é r̂éq̂úêśt̂éd̂ f́r̂óm̂ á ĉŕôśŝ-ór̂íĝín̂ íf̂ŕâḿê. Ýôú ŝh́ôúl̂d́ ĉón̂śîd́êŕ r̂éq̂úêśt̂ín̂ǵ p̂ér̂ḿîśŝíôń f̂ŕôḿ â t́ôṕ-l̂év̂él̂ f́r̂ám̂é ôŕ ôṕêńîńĝ á n̂éŵ ẃîńd̂óŵ ín̂śt̂éâd́."
|
1444
|
+
},
|
1445
|
+
"models/issues_manager/DeprecationIssue.ts | obsoleteWebRtcCipherSuite": {
|
1446
|
+
"message": "Ŷóûŕ p̂ár̂t́n̂ér̂ íŝ ńêǵôt́îát̂ín̂ǵ âń ôb́ŝól̂ét̂é (D̂)T́L̂Ś v̂ér̂śîón̂. Ṕl̂éâśê ćĥéĉḱ ŵít̂h́ ŷóûŕ p̂ár̂t́n̂ér̂ t́ô h́âv́ê t́ĥíŝ f́îx́êd́."
|
1447
|
+
},
|
1448
|
+
"models/issues_manager/DeprecationIssue.ts | paymentRequestBasicCard": {
|
1449
|
+
"message": "T̂h́ê basic-card ṕâým̂én̂t́ m̂ét̂h́ôd́ îś d̂ép̂ŕêćât́êd́ âńd̂ ẃîĺl̂ b́ê ŕêḿôv́êd́."
|
1450
|
+
},
|
1451
|
+
"models/issues_manager/DeprecationIssue.ts | paymentRequestShowWithoutGesture": {
|
1452
|
+
"message": "Ĉál̂ĺîńĝ PaymentRequest.show() ẃît́ĥóût́ ûśêŕ âćt̂ív̂át̂íôń îś d̂ép̂ŕêćât́êd́ âńd̂ ẃîĺl̂ b́ê ŕêḿôv́êd́."
|
1453
|
+
},
|
1454
|
+
"models/issues_manager/DeprecationIssue.ts | pictureSourceSrc": {
|
1455
|
+
"message": "<source src> ŵít̂h́ â <picture> ṕâŕêńt̂ íŝ ín̂v́âĺîd́ âńd̂ t́ĥér̂éf̂ór̂é îǵn̂ór̂éd̂. Ṕl̂éâśê úŝé <source srcset> îńŝt́êád̂."
|
1456
|
+
},
|
1457
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedStorageInfo": {
|
1458
|
+
"message": "window.webkitStorageInfo îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê navigator.webkitTemporaryStorage ór̂ navigator.webkitPersistentStorage ín̂śt̂éâd́."
|
1459
|
+
},
|
1460
|
+
"models/issues_manager/DeprecationIssue.ts | requestedSubresourceWithEmbeddedCredentials": {
|
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́."
|
1462
|
+
},
|
1463
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpFalse": {
|
1464
|
+
"message": "T̂h́ê ćôńŝt́r̂áîńt̂ DtlsSrtpKeyAgreement íŝ ŕêḿôv́êd́. Ŷóû h́âv́ê śp̂éĉíf̂íêd́ â false v́âĺûé f̂ór̂ t́ĥíŝ ćôńŝt́r̂áîńt̂, ẃĥíĉh́ îś îńt̂ér̂ṕr̂ét̂éd̂ áŝ án̂ át̂t́êḿp̂t́ t̂ó ûśê t́ĥé r̂ém̂óv̂éd̂ SDES key negotiation ḿêt́ĥód̂. T́ĥíŝ f́ûńĉt́îón̂ál̂ít̂ý îś r̂ém̂óv̂éd̂; úŝé â śêŕv̂íĉé t̂h́ât́ ŝúp̂ṕôŕt̂ś DTLS key negotiation îńŝt́êád̂."
|
1465
|
+
},
|
1466
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpTrue": {
|
1467
|
+
"message": "T̂h́ê ćôńŝt́r̂áîńt̂ DtlsSrtpKeyAgreement íŝ ŕêḿôv́êd́. Ŷóû h́âv́ê śp̂éĉíf̂íêd́ â true v́âĺûé f̂ór̂ t́ĥíŝ ćôńŝt́r̂áîńt̂, ẃĥíĉh́ ĥád̂ ńô éf̂f́êćt̂, b́ût́ ŷóû ćâń r̂ém̂óv̂é t̂h́îś ĉón̂śt̂ŕâín̂t́ f̂ór̂ t́îd́îńêśŝ."
|
1468
|
+
},
|
1469
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
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̂."
|
1471
|
+
},
|
1472
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionSdpSemanticsPlanB": {
|
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̂úŝ."
|
1474
|
+
},
|
1475
|
+
"models/issues_manager/DeprecationIssue.ts | rtcpMuxPolicyNegotiate": {
|
1476
|
+
"message": "T̂h́ê rtcpMuxPolicy óp̂t́îón̂ íŝ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂."
|
1477
|
+
},
|
1478
|
+
"models/issues_manager/DeprecationIssue.ts | rtpDataChannel": {
|
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́ê."
|
1480
|
+
},
|
1481
|
+
"models/issues_manager/DeprecationIssue.ts | sharedArrayBufferConstructedWithoutIsolation": {
|
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̂ś."
|
1483
|
+
},
|
1484
|
+
"models/issues_manager/DeprecationIssue.ts | textToSpeech_DisallowedByAutoplay": {
|
1485
|
+
"message": "speechSynthesis.speak() ŵít̂h́ôút̂ úŝér̂ áĉt́îv́ât́îón̂ íŝ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂."
|
1486
|
+
},
|
1487
|
+
"models/issues_manager/DeprecationIssue.ts | title": {
|
1488
|
+
"message": "D̂ép̂ŕêćât́êd́ F̂éât́ûŕê Úŝéd̂"
|
1489
|
+
},
|
1490
|
+
"models/issues_manager/DeprecationIssue.ts | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
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̂íôń/."
|
1492
|
+
},
|
1493
|
+
"models/issues_manager/DeprecationIssue.ts | vendorSpecificApi": {
|
1494
|
+
"message": "{PH1} îś v̂én̂d́ôŕ-ŝṕêćîf́îć. P̂ĺêáŝé ûśê t́ĥé ŝt́âńd̂ár̂d́ {PH2} îńŝt́êád̂."
|
1495
|
+
},
|
1496
|
+
"models/issues_manager/DeprecationIssue.ts | xhrJSONEncodingDetection": {
|
1497
|
+
"message": "ÛT́F̂-16 íŝ ńôt́ ŝúp̂ṕôŕt̂éd̂ b́ŷ ŕêśp̂ón̂śê j́ŝón̂ ín̂ XMLHttpRequest"
|
1498
|
+
},
|
1499
|
+
"models/issues_manager/DeprecationIssue.ts | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
1500
|
+
"message": "Ŝýn̂ćĥŕôńôúŝ XMLHttpRequest ón̂ t́ĥé m̂áîń t̂h́r̂éâd́ îś d̂ép̂ŕêćât́êd́ b̂éĉáûśê óf̂ ít̂ś d̂ét̂ŕîḿêńt̂ál̂ éf̂f́êćt̂ś t̂ó t̂h́ê én̂d́ ûśêŕ’ŝ éx̂ṕêŕîén̂ćê. F́ôŕ m̂ór̂é ĥél̂ṕ, ĉh́êćk̂ h́t̂t́p̂ś://x̂h́r̂.śp̂éĉ.ẃĥát̂ẃĝ.ór̂ǵ/."
|
1501
|
+
},
|
1502
|
+
"models/issues_manager/DeprecationIssue.ts | xrSupportsSession": {
|
1503
|
+
"message": "supportsSession() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê isSessionSupported() án̂d́ ĉh́êćk̂ t́ĥé r̂éŝól̂v́êd́ b̂óôĺêán̂ v́âĺûé îńŝt́êád̂."
|
1504
|
+
},
|
1358
1505
|
"models/issues_manager/FederatedAuthRequestIssue.ts | fedCm": {
|
1359
1506
|
"message": "F̂éd̂ér̂át̂éd̂ Ćr̂éd̂én̂t́îál̂ Ḿâńâǵêḿêńt̂ ÁP̂Í"
|
1360
1507
|
},
|
@@ -4928,6 +5075,12 @@
|
|
4928
5075
|
"panels/elements/StylesSidebarPane.ts | clickToRevealLayer": {
|
4929
5076
|
"message": "Ĉĺîćk̂ t́ô ŕêv́êál̂ ĺâýêŕ îń l̂áŷér̂ t́r̂éê"
|
4930
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
|
+
},
|
4931
5084
|
"panels/elements/StylesSidebarPane.ts | cssPropertyName": {
|
4932
5085
|
"message": "CSS p̂ŕôṕêŕt̂ý n̂ám̂é: {PH1}"
|
4933
5086
|
},
|
@@ -5360,14 +5513,8 @@
|
|
5360
5513
|
"panels/issues/AttributionReportingIssueDetailsView.ts | frame": {
|
5361
5514
|
"message": "F̂ŕâḿê"
|
5362
5515
|
},
|
5363
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts |
|
5364
|
-
"message": "Îńv̂ál̂íd̂
|
5365
|
-
},
|
5366
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourceExpiry": {
|
5367
|
-
"message": "Îńv̂ál̂íd̂ attributionexpiry"
|
5368
|
-
},
|
5369
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourcePriority": {
|
5370
|
-
"message": "Îńv̂ál̂íd̂ attributionsourcepriority"
|
5516
|
+
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidHeaderValue": {
|
5517
|
+
"message": "Îńv̂ál̂íd̂ H́êád̂ér̂ V́âĺûé"
|
5371
5518
|
},
|
5372
5519
|
"panels/issues/AttributionReportingIssueDetailsView.ts | nViolations": {
|
5373
5520
|
"message": "{n, plural, =1 {# v̂íôĺât́îón̂} other {# v́îól̂át̂íôńŝ}}"
|
@@ -10277,9 +10424,6 @@
|
|
10277
10424
|
"panels/timeline/TimelineFlameChartDataProvider.ts | idleFrame": {
|
10278
10425
|
"message": "Îd́l̂é F̂ŕâḿê"
|
10279
10426
|
},
|
10280
|
-
"panels/timeline/TimelineFlameChartDataProvider.ts | input": {
|
10281
|
-
"message": "Îńp̂út̂"
|
10282
|
-
},
|
10283
10427
|
"panels/timeline/TimelineFlameChartDataProvider.ts | interactions": {
|
10284
10428
|
"message": "Îńt̂ér̂áĉt́îón̂ś"
|
10285
10429
|
},
|
@@ -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;
|