chrome-devtools-frontend 1.0.1000934 → 1.0.1002543
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 +4 -3
- package/front_end/.eslintrc.js +1 -0
- package/front_end/core/common/ParsedURL.ts +3 -3
- package/front_end/core/host/InspectorFrontendHost.ts +30 -1
- package/front_end/core/i18n/locales/en-US.json +177 -12
- package/front_end/core/i18n/locales/en-XL.json +177 -12
- 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/generated/InspectorBackendCommands.js +38 -10
- 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 +50 -10
- 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 +5 -36
- package/front_end/models/issues_manager/DeprecationIssue.ts +233 -257
- package/front_end/models/issues_manager/Issue.ts +8 -4
- 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/application/components/BackForwardCacheView.ts +4 -5
- package/front_end/panels/application/components/FrameDetailsView.ts +19 -19
- package/front_end/panels/application/components/PermissionsPolicySection.ts +2 -2
- package/front_end/panels/console/ConsoleViewMessage.ts +6 -3
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +1 -1
- package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +3 -2
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +4 -0
- package/front_end/panels/elements/StylePropertyTreeElement.ts +19 -13
- package/front_end/panels/elements/StylesSidebarPane.ts +53 -0
- package/front_end/panels/elements/components/QueryContainer.ts +1 -1
- 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 +0 -43
- package/front_end/panels/issues/IssueView.ts +1 -1
- package/front_end/panels/lighthouse/LighthouseController.ts +5 -3
- package/front_end/panels/lighthouse/LighthouseReporterTypes.ts +2 -1
- package/front_end/panels/lighthouse/lighthousePanel.css +4 -0
- package/front_end/panels/network/components/RequestTrustTokensView.ts +7 -7
- 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 +241 -4
- package/front_end/third_party/lighthouse/locales/en-XL.json +241 -4
- package/front_end/third_party/lighthouse/report/bundle.d.ts +2 -0
- package/front_end/third_party/lighthouse/report/bundle.js +18 -12
- package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
- package/front_end/third_party/puppeteer/package/README.md +11 -11
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js +26 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js +19 -11
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js +6 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.d.ts +3 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.js +18 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.d.ts +2 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +2 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +5 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-node.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-node.js +2 -15
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-node.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.js +23 -15
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.js +17 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.js +1 -6
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/package.json +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js +3 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js +7 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js +19 -11
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js +6 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.d.ts +3 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.js +17 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.d.ts +2 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.js +4 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +2 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +2 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js.map +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js +2 -15
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js +21 -13
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js +1 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.js +17 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js +1 -6
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/types.d.ts +6 -6
- package/front_end/third_party/puppeteer/package/package.json +33 -18
- package/front_end/third_party/puppeteer/puppeteer-tsconfig.json +4 -1
- package/front_end/ui/components/data_grid/DataGrid.ts +1 -1
- package/front_end/ui/components/data_grid/DataGridUtils.ts +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 +4 -4
- 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/front_end/ui/lit-html/lit-html.ts +3 -0
- package/package.json +1 -1
- package/scripts/eslint_rules/lib/lit_template_result_or_nothing.js +4 -0
- package/scripts/eslint_rules/tests/lit_template_result_or_nothing_test.js +13 -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,6 @@ 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/arInvalidAttributionSourceEventId.md",
|
283
|
-
"front_end/models/issues_manager/descriptions/arInvalidAttributionSourceExpiry.md",
|
284
|
-
"front_end/models/issues_manager/descriptions/arInvalidAttributionSourcePriority.md",
|
285
282
|
"front_end/models/issues_manager/descriptions/arPermissionPolicyDisabled.md",
|
286
283
|
"front_end/models/issues_manager/descriptions/clientHintMetaTagAllowListInvalidOrigin.md",
|
287
284
|
"front_end/models/issues_manager/descriptions/clientHintMetaTagModifiedHTML.md",
|
@@ -669,6 +666,7 @@ grd_files_debug_sources = [
|
|
669
666
|
"front_end/entrypoints/formatter_worker/JSONFormatter.js",
|
670
667
|
"front_end/entrypoints/formatter_worker/JavaScriptFormatter.js",
|
671
668
|
"front_end/entrypoints/formatter_worker/JavaScriptOutline.js",
|
669
|
+
"front_end/entrypoints/formatter_worker/ScopeParser.js",
|
672
670
|
"front_end/entrypoints/formatter_worker/Substitute.js",
|
673
671
|
"front_end/entrypoints/heap_snapshot_worker/AllocationProfile.js",
|
674
672
|
"front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.js",
|
@@ -1383,7 +1381,10 @@ grd_files_debug_sources = [
|
|
1383
1381
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.js",
|
1384
1382
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.js",
|
1385
1383
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.js",
|
1384
|
+
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.js",
|
1385
|
+
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.js",
|
1386
1386
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.js",
|
1387
|
+
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js",
|
1387
1388
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js",
|
1388
1389
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.js",
|
1389
1390
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.js",
|
package/front_end/.eslintrc.js
CHANGED
@@ -46,6 +46,7 @@ module.exports = {
|
|
46
46
|
'rulesdir/static_custom_event_names': 2,
|
47
47
|
'rulesdir/lit_html_host_this': 2,
|
48
48
|
'rulesdir/lit_html_no_attribute_quotes': 2,
|
49
|
+
'rulesdir/lit_template_result_or_nothing': 2,
|
49
50
|
'@typescript-eslint/naming-convention': [
|
50
51
|
'error', {
|
51
52
|
'selector': ['property', 'parameterProperty'],
|
@@ -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(
|
@@ -1355,6 +1355,177 @@
|
|
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 | crossOriginWindowAlert": {
|
1380
|
+
"message": "Triggering window.alert from cross origin iframes has been deprecated and will be removed in the future."
|
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."
|
1384
|
+
},
|
1385
|
+
"models/issues_manager/DeprecationIssue.ts | cssSelectorInternalMediaControlsOverlayCastButton": {
|
1386
|
+
"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."
|
1387
|
+
},
|
1388
|
+
"models/issues_manager/DeprecationIssue.ts | customCursorIntersectsViewport": {
|
1389
|
+
"message": "Custom cursors with size greater than 32x32 DIP intersecting native UI is deprecated and will be removed."
|
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 | prefixedCancelAnimationFrame": {
|
1458
|
+
"message": "webkitCancelAnimationFrame is vendor-specific. Please use the standard cancelAnimationFrame instead."
|
1459
|
+
},
|
1460
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedRequestAnimationFrame": {
|
1461
|
+
"message": "webkitRequestAnimationFrame is vendor-specific. Please use the standard requestAnimationFrame instead."
|
1462
|
+
},
|
1463
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedStorageInfo": {
|
1464
|
+
"message": "window.webkitStorageInfo is deprecated. Please use navigator.webkitTemporaryStorage or navigator.webkitPersistentStorage instead."
|
1465
|
+
},
|
1466
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoDisplayingFullscreen": {
|
1467
|
+
"message": "HTMLVideoElement.webkitDisplayingFullscreen is deprecated. Please use Document.fullscreenElement instead."
|
1468
|
+
},
|
1469
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullscreen": {
|
1470
|
+
"message": "HTMLVideoElement.webkitEnterFullscreen() is deprecated. Please use Element.requestFullscreen() instead."
|
1471
|
+
},
|
1472
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullScreen": {
|
1473
|
+
"message": "HTMLVideoElement.webkitEnterFullScreen() is deprecated. Please use Element.requestFullscreen() instead."
|
1474
|
+
},
|
1475
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullscreen": {
|
1476
|
+
"message": "HTMLVideoElement.webkitExitFullscreen() is deprecated. Please use Document.exitFullscreen() instead."
|
1477
|
+
},
|
1478
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullScreen": {
|
1479
|
+
"message": "HTMLVideoElement.webkitExitFullsSreen() is deprecated. Please use Document.exitFullscreen() instead."
|
1480
|
+
},
|
1481
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoSupportsFullscreen": {
|
1482
|
+
"message": "HTMLVideoElement.webkitSupportsFullscreen is deprecated. Please use Document.fullscreenEnabled instead."
|
1483
|
+
},
|
1484
|
+
"models/issues_manager/DeprecationIssue.ts | rangeExpand": {
|
1485
|
+
"message": "Range.expand() is deprecated. Please use Selection.modify() instead."
|
1486
|
+
},
|
1487
|
+
"models/issues_manager/DeprecationIssue.ts | requestedSubresourceWithEmbeddedCredentials": {
|
1488
|
+
"message": "Subresource requests whose URLs contain embedded credentials (e.g. https://user:pass@host/) are blocked."
|
1489
|
+
},
|
1490
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpFalse": {
|
1491
|
+
"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."
|
1492
|
+
},
|
1493
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpTrue": {
|
1494
|
+
"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."
|
1495
|
+
},
|
1496
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
1497
|
+
"message": "Complex Plan B SDP detected. This dialect of the Session Description Protocol is no longer supported. Please use Unified Plan SDP instead."
|
1498
|
+
},
|
1499
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionSdpSemanticsPlanB": {
|
1500
|
+
"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."
|
1501
|
+
},
|
1502
|
+
"models/issues_manager/DeprecationIssue.ts | rtcpMuxPolicyNegotiate": {
|
1503
|
+
"message": "The rtcpMuxPolicy option is deprecated and will be removed."
|
1504
|
+
},
|
1505
|
+
"models/issues_manager/DeprecationIssue.ts | rtpDataChannel": {
|
1506
|
+
"message": "RTP data channels are no longer supported. The RtpDataChannels constraint is currently ignored, and may cause an error at a later date."
|
1507
|
+
},
|
1508
|
+
"models/issues_manager/DeprecationIssue.ts | sharedArrayBufferConstructedWithoutIsolation": {
|
1509
|
+
"message": "SharedArrayBuffer will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
1510
|
+
},
|
1511
|
+
"models/issues_manager/DeprecationIssue.ts | textToSpeech_DisallowedByAutoplay": {
|
1512
|
+
"message": "speechSynthesis.speak() without user activation is deprecated and will be removed."
|
1513
|
+
},
|
1514
|
+
"models/issues_manager/DeprecationIssue.ts | title": {
|
1515
|
+
"message": "Deprecated Feature Used"
|
1516
|
+
},
|
1517
|
+
"models/issues_manager/DeprecationIssue.ts | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
1518
|
+
"message": "Extensions should opt into cross-origin isolation to continue using SharedArrayBuffer. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
1519
|
+
},
|
1520
|
+
"models/issues_manager/DeprecationIssue.ts | xhrJSONEncodingDetection": {
|
1521
|
+
"message": "UTF-16 is not supported by response json in XMLHttpRequest"
|
1522
|
+
},
|
1523
|
+
"models/issues_manager/DeprecationIssue.ts | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
1524
|
+
"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/."
|
1525
|
+
},
|
1526
|
+
"models/issues_manager/DeprecationIssue.ts | xrSupportsSession": {
|
1527
|
+
"message": "supportsSession() is deprecated. Please use isSessionSupported() and check the resolved boolean value instead."
|
1528
|
+
},
|
1358
1529
|
"models/issues_manager/FederatedAuthRequestIssue.ts | fedCm": {
|
1359
1530
|
"message": "Federated Credential Management API"
|
1360
1531
|
},
|
@@ -4928,6 +5099,12 @@
|
|
4928
5099
|
"panels/elements/StylesSidebarPane.ts | clickToRevealLayer": {
|
4929
5100
|
"message": "Click to reveal layer in layer tree"
|
4930
5101
|
},
|
5102
|
+
"panels/elements/StylesSidebarPane.ts | copiedToClipboard": {
|
5103
|
+
"message": "Copied to clipboard"
|
5104
|
+
},
|
5105
|
+
"panels/elements/StylesSidebarPane.ts | copyAllCSSChanges": {
|
5106
|
+
"message": "Copy all the CSS changes"
|
5107
|
+
},
|
4931
5108
|
"panels/elements/StylesSidebarPane.ts | cssPropertyName": {
|
4932
5109
|
"message": "CSS property name: {PH1}"
|
4933
5110
|
},
|
@@ -5360,15 +5537,6 @@
|
|
5360
5537
|
"panels/issues/AttributionReportingIssueDetailsView.ts | frame": {
|
5361
5538
|
"message": "Frame"
|
5362
5539
|
},
|
5363
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourceEventId": {
|
5364
|
-
"message": "Invalid attributionsourceeventid"
|
5365
|
-
},
|
5366
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourceExpiry": {
|
5367
|
-
"message": "Invalid attributionexpiry"
|
5368
|
-
},
|
5369
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourcePriority": {
|
5370
|
-
"message": "Invalid attributionsourcepriority"
|
5371
|
-
},
|
5372
5540
|
"panels/issues/AttributionReportingIssueDetailsView.ts | nViolations": {
|
5373
5541
|
"message": "{n, plural, =1 {# violation} other {# violations}}"
|
5374
5542
|
},
|
@@ -10277,9 +10445,6 @@
|
|
10277
10445
|
"panels/timeline/TimelineFlameChartDataProvider.ts | idleFrame": {
|
10278
10446
|
"message": "Idle Frame"
|
10279
10447
|
},
|
10280
|
-
"panels/timeline/TimelineFlameChartDataProvider.ts | input": {
|
10281
|
-
"message": "Input"
|
10282
|
-
},
|
10283
10448
|
"panels/timeline/TimelineFlameChartDataProvider.ts | interactions": {
|
10284
10449
|
"message": "Interactions"
|
10285
10450
|
},
|
@@ -1355,6 +1355,177 @@
|
|
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 | crossOriginWindowAlert": {
|
1380
|
+
"message": "T̂ŕîǵĝér̂ín̂ǵ window.alert 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 | 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̂é."
|
1384
|
+
},
|
1385
|
+
"models/issues_manager/DeprecationIssue.ts | cssSelectorInternalMediaControlsOverlayCastButton": {
|
1386
|
+
"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̂."
|
1387
|
+
},
|
1388
|
+
"models/issues_manager/DeprecationIssue.ts | customCursorIntersectsViewport": {
|
1389
|
+
"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
|
+
},
|
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 | prefixedCancelAnimationFrame": {
|
1458
|
+
"message": "webkitCancelAnimationFrame îś v̂én̂d́ôŕ-ŝṕêćîf́îć. P̂ĺêáŝé ûśê t́ĥé ŝt́âńd̂ár̂d́ cancelAnimationFrame îńŝt́êád̂."
|
1459
|
+
},
|
1460
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedRequestAnimationFrame": {
|
1461
|
+
"message": "webkitRequestAnimationFrame îś v̂én̂d́ôŕ-ŝṕêćîf́îć. P̂ĺêáŝé ûśê t́ĥé ŝt́âńd̂ár̂d́ requestAnimationFrame îńŝt́êád̂."
|
1462
|
+
},
|
1463
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedStorageInfo": {
|
1464
|
+
"message": "window.webkitStorageInfo îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê navigator.webkitTemporaryStorage ór̂ navigator.webkitPersistentStorage ín̂śt̂éâd́."
|
1465
|
+
},
|
1466
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoDisplayingFullscreen": {
|
1467
|
+
"message": "HTMLVideoElement.webkitDisplayingFullscreen îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.fullscreenElement ín̂śt̂éâd́."
|
1468
|
+
},
|
1469
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullscreen": {
|
1470
|
+
"message": "HTMLVideoElement.webkitEnterFullscreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Element.requestFullscreen() ín̂śt̂éâd́."
|
1471
|
+
},
|
1472
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullScreen": {
|
1473
|
+
"message": "HTMLVideoElement.webkitEnterFullScreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Element.requestFullscreen() ín̂śt̂éâd́."
|
1474
|
+
},
|
1475
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullscreen": {
|
1476
|
+
"message": "HTMLVideoElement.webkitExitFullscreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.exitFullscreen() ín̂śt̂éâd́."
|
1477
|
+
},
|
1478
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullScreen": {
|
1479
|
+
"message": "HTMLVideoElement.webkitExitFullsSreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.exitFullscreen() ín̂śt̂éâd́."
|
1480
|
+
},
|
1481
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoSupportsFullscreen": {
|
1482
|
+
"message": "HTMLVideoElement.webkitSupportsFullscreen îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.fullscreenEnabled ín̂śt̂éâd́."
|
1483
|
+
},
|
1484
|
+
"models/issues_manager/DeprecationIssue.ts | rangeExpand": {
|
1485
|
+
"message": "Range.expand() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Selection.modify() ín̂śt̂éâd́."
|
1486
|
+
},
|
1487
|
+
"models/issues_manager/DeprecationIssue.ts | requestedSubresourceWithEmbeddedCredentials": {
|
1488
|
+
"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́."
|
1489
|
+
},
|
1490
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpFalse": {
|
1491
|
+
"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̂."
|
1492
|
+
},
|
1493
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpTrue": {
|
1494
|
+
"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́îńêśŝ."
|
1495
|
+
},
|
1496
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
1497
|
+
"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̂."
|
1498
|
+
},
|
1499
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionSdpSemanticsPlanB": {
|
1500
|
+
"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̂úŝ."
|
1501
|
+
},
|
1502
|
+
"models/issues_manager/DeprecationIssue.ts | rtcpMuxPolicyNegotiate": {
|
1503
|
+
"message": "T̂h́ê rtcpMuxPolicy óp̂t́îón̂ íŝ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂."
|
1504
|
+
},
|
1505
|
+
"models/issues_manager/DeprecationIssue.ts | rtpDataChannel": {
|
1506
|
+
"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́ê."
|
1507
|
+
},
|
1508
|
+
"models/issues_manager/DeprecationIssue.ts | sharedArrayBufferConstructedWithoutIsolation": {
|
1509
|
+
"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̂ś."
|
1510
|
+
},
|
1511
|
+
"models/issues_manager/DeprecationIssue.ts | textToSpeech_DisallowedByAutoplay": {
|
1512
|
+
"message": "speechSynthesis.speak() ŵít̂h́ôút̂ úŝér̂ áĉt́îv́ât́îón̂ íŝ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂."
|
1513
|
+
},
|
1514
|
+
"models/issues_manager/DeprecationIssue.ts | title": {
|
1515
|
+
"message": "D̂ép̂ŕêćât́êd́ F̂éât́ûŕê Úŝéd̂"
|
1516
|
+
},
|
1517
|
+
"models/issues_manager/DeprecationIssue.ts | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
1518
|
+
"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̂íôń/."
|
1519
|
+
},
|
1520
|
+
"models/issues_manager/DeprecationIssue.ts | xhrJSONEncodingDetection": {
|
1521
|
+
"message": "ÛT́F̂-16 íŝ ńôt́ ŝúp̂ṕôŕt̂éd̂ b́ŷ ŕêśp̂ón̂śê j́ŝón̂ ín̂ XMLHttpRequest"
|
1522
|
+
},
|
1523
|
+
"models/issues_manager/DeprecationIssue.ts | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
1524
|
+
"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̂ǵ/."
|
1525
|
+
},
|
1526
|
+
"models/issues_manager/DeprecationIssue.ts | xrSupportsSession": {
|
1527
|
+
"message": "supportsSession() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê isSessionSupported() án̂d́ ĉh́êćk̂ t́ĥé r̂éŝól̂v́êd́ b̂óôĺêán̂ v́âĺûé îńŝt́êád̂."
|
1528
|
+
},
|
1358
1529
|
"models/issues_manager/FederatedAuthRequestIssue.ts | fedCm": {
|
1359
1530
|
"message": "F̂éd̂ér̂át̂éd̂ Ćr̂éd̂én̂t́îál̂ Ḿâńâǵêḿêńt̂ ÁP̂Í"
|
1360
1531
|
},
|
@@ -4928,6 +5099,12 @@
|
|
4928
5099
|
"panels/elements/StylesSidebarPane.ts | clickToRevealLayer": {
|
4929
5100
|
"message": "Ĉĺîćk̂ t́ô ŕêv́êál̂ ĺâýêŕ îń l̂áŷér̂ t́r̂éê"
|
4930
5101
|
},
|
5102
|
+
"panels/elements/StylesSidebarPane.ts | copiedToClipboard": {
|
5103
|
+
"message": "Ĉóp̂íêd́ t̂ó ĉĺîṕb̂óâŕd̂"
|
5104
|
+
},
|
5105
|
+
"panels/elements/StylesSidebarPane.ts | copyAllCSSChanges": {
|
5106
|
+
"message": "Ĉóp̂ý âĺl̂ t́ĥé ĈŚŜ ćĥán̂ǵêś"
|
5107
|
+
},
|
4931
5108
|
"panels/elements/StylesSidebarPane.ts | cssPropertyName": {
|
4932
5109
|
"message": "CSS p̂ŕôṕêŕt̂ý n̂ám̂é: {PH1}"
|
4933
5110
|
},
|
@@ -5360,15 +5537,6 @@
|
|
5360
5537
|
"panels/issues/AttributionReportingIssueDetailsView.ts | frame": {
|
5361
5538
|
"message": "F̂ŕâḿê"
|
5362
5539
|
},
|
5363
|
-
"panels/issues/AttributionReportingIssueDetailsView.ts | invalidSourceEventId": {
|
5364
|
-
"message": "Îńv̂ál̂íd̂ attributionsourceeventid"
|
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"
|
5371
|
-
},
|
5372
5540
|
"panels/issues/AttributionReportingIssueDetailsView.ts | nViolations": {
|
5373
5541
|
"message": "{n, plural, =1 {# v̂íôĺât́îón̂} other {# v́îól̂át̂íôńŝ}}"
|
5374
5542
|
},
|
@@ -10277,9 +10445,6 @@
|
|
10277
10445
|
"panels/timeline/TimelineFlameChartDataProvider.ts | idleFrame": {
|
10278
10446
|
"message": "Îd́l̂é F̂ŕâḿê"
|
10279
10447
|
},
|
10280
|
-
"panels/timeline/TimelineFlameChartDataProvider.ts | input": {
|
10281
|
-
"message": "Îńp̂út̂"
|
10282
|
-
},
|
10283
10448
|
"panels/timeline/TimelineFlameChartDataProvider.ts | interactions": {
|
10284
10449
|
"message": "Îńt̂ér̂áĉt́îón̂ś"
|
10285
10450
|
},
|
@@ -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;
|