chrome-devtools-frontend 1.0.1000713 → 1.0.1001476
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 +3 -0
- package/front_end/.eslintrc.js +1 -0
- package/front_end/core/i18n/locales/en-US.json +189 -0
- package/front_end/core/i18n/locales/en-XL.json +189 -0
- package/front_end/models/bindings/BreakpointManager.ts +12 -11
- package/front_end/models/issues_manager/DeprecationIssue.ts +273 -228
- package/front_end/models/persistence/PersistenceImpl.ts +2 -2
- 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/css_overview/CSSOverviewCompletedView.ts +1 -1
- package/front_end/panels/css_overview/cssOverviewCompletedView.css +4 -0
- package/front_end/panels/elements/components/QueryContainer.ts +1 -1
- package/front_end/panels/network/components/RequestTrustTokensView.ts +7 -7
- package/front_end/panels/sources/DebuggerPlugin.ts +10 -9
- package/front_end/panels/sources/JavaScriptBreakpointsSidebarPane.ts +3 -3
- 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/request_link_icon/RequestLinkIcon.ts +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
@@ -1397,6 +1397,9 @@ grd_files_debug_sources = [
|
|
1397
1397
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.js",
|
1398
1398
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js",
|
1399
1399
|
"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",
|
1400
1403
|
"front_end/third_party/puppeteer/package/lib/esm/puppeteer/web.js",
|
1401
1404
|
"front_end/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.js",
|
1402
1405
|
"front_end/third_party/wasmparser/package/dist/esm/WasmDis.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'],
|
@@ -1355,6 +1355,195 @@
|
|
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 | legacyConstraintGoogCpuOveruseDetection": {
|
1419
|
+
"message": "CPU overuse detection is enabled-by-default and the ability to disable it using googCpuOveruseDetection will soon be removed. Please stop using this legacy constraint."
|
1420
|
+
},
|
1421
|
+
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogIPv6": {
|
1422
|
+
"message": "IPv6 is enabled-by-default and the ability to disable it using googIPv6 will soon be removed. Please stop using this legacy constraint."
|
1423
|
+
},
|
1424
|
+
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogScreencastMinBitrate": {
|
1425
|
+
"message": "Screencast min bitrate is now set to 100 kbps by default and googScreencastMinBitrate will soon be ignored in favor of this new default. Please stop using this legacy constraint."
|
1426
|
+
},
|
1427
|
+
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogSuspendBelowMinBitrate": {
|
1428
|
+
"message": "Support for the googSuspendBelowMinBitrate constraint is about to be removed. Please stop using this legacy constraint."
|
1429
|
+
},
|
1430
|
+
"models/issues_manager/DeprecationIssue.ts | localCSSFileExtensionRejected": {
|
1431
|
+
"message": "CSS cannot be loaded from file: URLs unless they end in a .css file extension."
|
1432
|
+
},
|
1433
|
+
"models/issues_manager/DeprecationIssue.ts | mediaElementAudioSourceNode": {
|
1434
|
+
"message": "Creating a MediaElementAudioSourceNode on an OfflineAudioContext is deprecated and will be removed."
|
1435
|
+
},
|
1436
|
+
"models/issues_manager/DeprecationIssue.ts | mediaSourceAbortRemove": {
|
1437
|
+
"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."
|
1438
|
+
},
|
1439
|
+
"models/issues_manager/DeprecationIssue.ts | mediaSourceDurationTruncatingBuffered": {
|
1440
|
+
"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."
|
1441
|
+
},
|
1442
|
+
"models/issues_manager/DeprecationIssue.ts | milestone": {
|
1443
|
+
"message": "This change will go into effect with milestone {milestone}."
|
1444
|
+
},
|
1445
|
+
"models/issues_manager/DeprecationIssue.ts | noSysexWebMIDIWithoutPermission": {
|
1446
|
+
"message": "Web MIDI will ask a permission to use even if the sysex is not specified in the MIDIOptions."
|
1447
|
+
},
|
1448
|
+
"models/issues_manager/DeprecationIssue.ts | notificationInsecureOrigin": {
|
1449
|
+
"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."
|
1450
|
+
},
|
1451
|
+
"models/issues_manager/DeprecationIssue.ts | notificationPermissionRequestedIframe": {
|
1452
|
+
"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."
|
1453
|
+
},
|
1454
|
+
"models/issues_manager/DeprecationIssue.ts | obsoleteWebRtcCipherSuite": {
|
1455
|
+
"message": "Your partner is negotiating an obsolete (D)TLS version. Please check with your partner to have this fixed."
|
1456
|
+
},
|
1457
|
+
"models/issues_manager/DeprecationIssue.ts | paymentRequestBasicCard": {
|
1458
|
+
"message": "The basic-card payment method is deprecated and will be removed."
|
1459
|
+
},
|
1460
|
+
"models/issues_manager/DeprecationIssue.ts | paymentRequestShowWithoutGesture": {
|
1461
|
+
"message": "Calling PaymentRequest.show() without user activation is deprecated and will be removed."
|
1462
|
+
},
|
1463
|
+
"models/issues_manager/DeprecationIssue.ts | pictureSourceSrc": {
|
1464
|
+
"message": "<source src> with a <picture> parent is invalid and therefore ignored. Please use <source srcset> instead."
|
1465
|
+
},
|
1466
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedCancelAnimationFrame": {
|
1467
|
+
"message": "webkitCancelAnimationFrame is vendor-specific. Please use the standard cancelAnimationFrame instead."
|
1468
|
+
},
|
1469
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedRequestAnimationFrame": {
|
1470
|
+
"message": "webkitRequestAnimationFrame is vendor-specific. Please use the standard requestAnimationFrame instead."
|
1471
|
+
},
|
1472
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedStorageInfo": {
|
1473
|
+
"message": "window.webkitStorageInfo is deprecated. Please use navigator.webkitTemporaryStorage or navigator.webkitPersistentStorage instead."
|
1474
|
+
},
|
1475
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoDisplayingFullscreen": {
|
1476
|
+
"message": "HTMLVideoElement.webkitDisplayingFullscreen is deprecated. Please use Document.fullscreenElement instead."
|
1477
|
+
},
|
1478
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullscreen": {
|
1479
|
+
"message": "HTMLVideoElement.webkitEnterFullscreen() is deprecated. Please use Element.requestFullscreen() instead."
|
1480
|
+
},
|
1481
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullScreen": {
|
1482
|
+
"message": "HTMLVideoElement.webkitEnterFullScreen() is deprecated. Please use Element.requestFullscreen() instead."
|
1483
|
+
},
|
1484
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullscreen": {
|
1485
|
+
"message": "HTMLVideoElement.webkitExitFullscreen() is deprecated. Please use Document.exitFullscreen() instead."
|
1486
|
+
},
|
1487
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullScreen": {
|
1488
|
+
"message": "HTMLVideoElement.webkitExitFullsSreen() is deprecated. Please use Document.exitFullscreen() instead."
|
1489
|
+
},
|
1490
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoSupportsFullscreen": {
|
1491
|
+
"message": "HTMLVideoElement.webkitSupportsFullscreen is deprecated. Please use Document.fullscreenEnabled instead."
|
1492
|
+
},
|
1493
|
+
"models/issues_manager/DeprecationIssue.ts | rangeExpand": {
|
1494
|
+
"message": "Range.expand() is deprecated. Please use Selection.modify() instead."
|
1495
|
+
},
|
1496
|
+
"models/issues_manager/DeprecationIssue.ts | requestedSubresourceWithEmbeddedCredentials": {
|
1497
|
+
"message": "Subresource requests whose URLs contain embedded credentials (e.g. https://user:pass@host/) are blocked."
|
1498
|
+
},
|
1499
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpFalse": {
|
1500
|
+
"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."
|
1501
|
+
},
|
1502
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpTrue": {
|
1503
|
+
"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."
|
1504
|
+
},
|
1505
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
1506
|
+
"message": "Complex Plan B SDP detected. This dialect of the Session Description Protocol is no longer supported. Please use Unified Plan SDP instead."
|
1507
|
+
},
|
1508
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionLegacyCreateWithMediaConstraints": {
|
1509
|
+
"message": "The mediaConstraints version of RTCOfferOptions/RTCAnswerOptions are deprecated and will soon be removed, please migrate to the promise-based createOffer/createAnswer instead."
|
1510
|
+
},
|
1511
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionSdpSemanticsPlanB": {
|
1512
|
+
"message": "Plan B SDP semantics, which is used when constructing an RTCPeerConnection with {sdpSemantics:'plan-b'}, is a legacy non-standard version of the Session Description Protocol that has been permanently deleted from the Web Platform. It is still available when building with IS_FUCHSIA, but we intend to delete it as soon as possible. Stop depending on it. See https://crbug.com/1302249 for status."
|
1513
|
+
},
|
1514
|
+
"models/issues_manager/DeprecationIssue.ts | rtcpMuxPolicyNegotiate": {
|
1515
|
+
"message": "The rtcpMuxPolicy option is deprecated and will be removed."
|
1516
|
+
},
|
1517
|
+
"models/issues_manager/DeprecationIssue.ts | rtpDataChannel": {
|
1518
|
+
"message": "RTP data channels are no longer supported. The RtpDataChannels constraint is currently ignored, and may cause an error at a later date."
|
1519
|
+
},
|
1520
|
+
"models/issues_manager/DeprecationIssue.ts | selectionAddRangeIntersect": {
|
1521
|
+
"message": "The behavior that Selection.addRange() merges existing Range and the specified Range was removed."
|
1522
|
+
},
|
1523
|
+
"models/issues_manager/DeprecationIssue.ts | sharedArrayBufferConstructedWithoutIsolation": {
|
1524
|
+
"message": "SharedArrayBuffer will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
|
1525
|
+
},
|
1526
|
+
"models/issues_manager/DeprecationIssue.ts | textToSpeech_DisallowedByAutoplay": {
|
1527
|
+
"message": "speechSynthesis.speak() without user activation is deprecated and will be removed."
|
1528
|
+
},
|
1529
|
+
"models/issues_manager/DeprecationIssue.ts | title": {
|
1530
|
+
"message": "Deprecated Feature Used"
|
1531
|
+
},
|
1532
|
+
"models/issues_manager/DeprecationIssue.ts | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
1533
|
+
"message": "Extensions should opt into cross-origin isolation to continue using SharedArrayBuffer. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
|
1534
|
+
},
|
1535
|
+
"models/issues_manager/DeprecationIssue.ts | webCodecsVideoFrameDefaultTimestamp": {
|
1536
|
+
"message": "Constructing a VideoFrame without a timestamp is deprecated and support will be removed. Please provide a timestamp via VideoFrameInit."
|
1537
|
+
},
|
1538
|
+
"models/issues_manager/DeprecationIssue.ts | xhrJSONEncodingDetection": {
|
1539
|
+
"message": "UTF-16 is not supported by response json in XMLHttpRequest"
|
1540
|
+
},
|
1541
|
+
"models/issues_manager/DeprecationIssue.ts | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
1542
|
+
"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/."
|
1543
|
+
},
|
1544
|
+
"models/issues_manager/DeprecationIssue.ts | xrSupportsSession": {
|
1545
|
+
"message": "supportsSession() is deprecated. Please use isSessionSupported() and check the resolved boolean value instead."
|
1546
|
+
},
|
1358
1547
|
"models/issues_manager/FederatedAuthRequestIssue.ts | fedCm": {
|
1359
1548
|
"message": "Federated Credential Management API"
|
1360
1549
|
},
|
@@ -1355,6 +1355,195 @@
|
|
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 | legacyConstraintGoogCpuOveruseDetection": {
|
1419
|
+
"message": "ĈṔÛ óv̂ér̂úŝé d̂ét̂éĉt́îón̂ íŝ én̂áb̂ĺêd́-b̂ý-d̂éf̂áûĺt̂ án̂d́ t̂h́ê áb̂íl̂ít̂ý t̂ó d̂íŝáb̂ĺê ít̂ úŝín̂ǵ googCpuOveruseDetection ŵíl̂ĺ ŝóôń b̂é r̂ém̂óv̂éd̂. Ṕl̂éâśê śt̂óp̂ úŝín̂ǵ t̂h́îś l̂éĝáĉý ĉón̂śt̂ŕâín̂t́."
|
1420
|
+
},
|
1421
|
+
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogIPv6": {
|
1422
|
+
"message": "ÎṔv̂6 íŝ én̂áb̂ĺêd́-b̂ý-d̂éf̂áûĺt̂ án̂d́ t̂h́ê áb̂íl̂ít̂ý t̂ó d̂íŝáb̂ĺê ít̂ úŝín̂ǵ googIPv6 ŵíl̂ĺ ŝóôń b̂é r̂ém̂óv̂éd̂. Ṕl̂éâśê śt̂óp̂ úŝín̂ǵ t̂h́îś l̂éĝáĉý ĉón̂śt̂ŕâín̂t́."
|
1423
|
+
},
|
1424
|
+
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogScreencastMinBitrate": {
|
1425
|
+
"message": "Ŝćr̂éêńĉáŝt́ m̂ín̂ b́ît́r̂át̂é îś n̂óŵ śêt́ t̂ó 100 k̂b́p̂ś b̂ý d̂éf̂áûĺt̂ án̂d́ googScreencastMinBitrate ŵíl̂ĺ ŝóôń b̂é îǵn̂ór̂éd̂ ín̂ f́âv́ôŕ ôf́ t̂h́îś n̂éŵ d́êf́âúl̂t́. P̂ĺêáŝé ŝt́ôṕ ûśîńĝ t́ĥíŝ ĺêǵâćŷ ćôńŝt́r̂áîńt̂."
|
1426
|
+
},
|
1427
|
+
"models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogSuspendBelowMinBitrate": {
|
1428
|
+
"message": "Ŝúp̂ṕôŕt̂ f́ôŕ t̂h́ê googSuspendBelowMinBitrate ćôńŝt́r̂áîńt̂ íŝ áb̂óût́ t̂ó b̂é r̂ém̂óv̂éd̂. Ṕl̂éâśê śt̂óp̂ úŝín̂ǵ t̂h́îś l̂éĝáĉý ĉón̂śt̂ŕâín̂t́."
|
1429
|
+
},
|
1430
|
+
"models/issues_manager/DeprecationIssue.ts | localCSSFileExtensionRejected": {
|
1431
|
+
"message": "ĈŚŜ ćâńn̂ót̂ b́ê ĺôád̂éd̂ f́r̂óm̂ file: ÚR̂Ĺŝ ún̂ĺêśŝ t́ĥéŷ én̂d́ îń â .css f́îĺê éx̂t́êńŝíôń."
|
1432
|
+
},
|
1433
|
+
"models/issues_manager/DeprecationIssue.ts | mediaElementAudioSourceNode": {
|
1434
|
+
"message": "Ĉŕêát̂ín̂ǵ â MediaElementAudioSourceNode ón̂ án̂ OfflineAudioContext íŝ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂."
|
1435
|
+
},
|
1436
|
+
"models/issues_manager/DeprecationIssue.ts | mediaSourceAbortRemove": {
|
1437
|
+
"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́ê."
|
1438
|
+
},
|
1439
|
+
"models/issues_manager/DeprecationIssue.ts | mediaSourceDurationTruncatingBuffered": {
|
1440
|
+
"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."
|
1441
|
+
},
|
1442
|
+
"models/issues_manager/DeprecationIssue.ts | milestone": {
|
1443
|
+
"message": "T̂h́îś ĉh́âńĝé ŵíl̂ĺ ĝó îńt̂ó êf́f̂éĉt́ ŵít̂h́ m̂íl̂éŝt́ôńê {milestone}."
|
1444
|
+
},
|
1445
|
+
"models/issues_manager/DeprecationIssue.ts | noSysexWebMIDIWithoutPermission": {
|
1446
|
+
"message": "Ŵéb̂ ḾÎD́Î ẃîĺl̂ áŝḱ â ṕêŕm̂íŝśîón̂ t́ô úŝé êv́êń îf́ t̂h́ê śŷśêx́ îś n̂ót̂ śp̂éĉíf̂íêd́ îń t̂h́ê MIDIOptions."
|
1447
|
+
},
|
1448
|
+
"models/issues_manager/DeprecationIssue.ts | notificationInsecureOrigin": {
|
1449
|
+
"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̂ś."
|
1450
|
+
},
|
1451
|
+
"models/issues_manager/DeprecationIssue.ts | notificationPermissionRequestedIframe": {
|
1452
|
+
"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́."
|
1453
|
+
},
|
1454
|
+
"models/issues_manager/DeprecationIssue.ts | obsoleteWebRtcCipherSuite": {
|
1455
|
+
"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́."
|
1456
|
+
},
|
1457
|
+
"models/issues_manager/DeprecationIssue.ts | paymentRequestBasicCard": {
|
1458
|
+
"message": "T̂h́ê basic-card ṕâým̂én̂t́ m̂ét̂h́ôd́ îś d̂ép̂ŕêćât́êd́ âńd̂ ẃîĺl̂ b́ê ŕêḿôv́êd́."
|
1459
|
+
},
|
1460
|
+
"models/issues_manager/DeprecationIssue.ts | paymentRequestShowWithoutGesture": {
|
1461
|
+
"message": "Ĉál̂ĺîńĝ PaymentRequest.show() ẃît́ĥóût́ ûśêŕ âćt̂ív̂át̂íôń îś d̂ép̂ŕêćât́êd́ âńd̂ ẃîĺl̂ b́ê ŕêḿôv́êd́."
|
1462
|
+
},
|
1463
|
+
"models/issues_manager/DeprecationIssue.ts | pictureSourceSrc": {
|
1464
|
+
"message": "<source src> ŵít̂h́ â <picture> ṕâŕêńt̂ íŝ ín̂v́âĺîd́ âńd̂ t́ĥér̂éf̂ór̂é îǵn̂ór̂éd̂. Ṕl̂éâśê úŝé <source srcset> îńŝt́êád̂."
|
1465
|
+
},
|
1466
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedCancelAnimationFrame": {
|
1467
|
+
"message": "webkitCancelAnimationFrame îś v̂én̂d́ôŕ-ŝṕêćîf́îć. P̂ĺêáŝé ûśê t́ĥé ŝt́âńd̂ár̂d́ cancelAnimationFrame îńŝt́êád̂."
|
1468
|
+
},
|
1469
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedRequestAnimationFrame": {
|
1470
|
+
"message": "webkitRequestAnimationFrame îś v̂én̂d́ôŕ-ŝṕêćîf́îć. P̂ĺêáŝé ûśê t́ĥé ŝt́âńd̂ár̂d́ requestAnimationFrame îńŝt́êád̂."
|
1471
|
+
},
|
1472
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedStorageInfo": {
|
1473
|
+
"message": "window.webkitStorageInfo îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê navigator.webkitTemporaryStorage ór̂ navigator.webkitPersistentStorage ín̂śt̂éâd́."
|
1474
|
+
},
|
1475
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoDisplayingFullscreen": {
|
1476
|
+
"message": "HTMLVideoElement.webkitDisplayingFullscreen îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.fullscreenElement ín̂śt̂éâd́."
|
1477
|
+
},
|
1478
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullscreen": {
|
1479
|
+
"message": "HTMLVideoElement.webkitEnterFullscreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Element.requestFullscreen() ín̂śt̂éâd́."
|
1480
|
+
},
|
1481
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoEnterFullScreen": {
|
1482
|
+
"message": "HTMLVideoElement.webkitEnterFullScreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Element.requestFullscreen() ín̂śt̂éâd́."
|
1483
|
+
},
|
1484
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullscreen": {
|
1485
|
+
"message": "HTMLVideoElement.webkitExitFullscreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.exitFullscreen() ín̂śt̂éâd́."
|
1486
|
+
},
|
1487
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoExitFullScreen": {
|
1488
|
+
"message": "HTMLVideoElement.webkitExitFullsSreen() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.exitFullscreen() ín̂śt̂éâd́."
|
1489
|
+
},
|
1490
|
+
"models/issues_manager/DeprecationIssue.ts | prefixedVideoSupportsFullscreen": {
|
1491
|
+
"message": "HTMLVideoElement.webkitSupportsFullscreen îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Document.fullscreenEnabled ín̂śt̂éâd́."
|
1492
|
+
},
|
1493
|
+
"models/issues_manager/DeprecationIssue.ts | rangeExpand": {
|
1494
|
+
"message": "Range.expand() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê Selection.modify() ín̂śt̂éâd́."
|
1495
|
+
},
|
1496
|
+
"models/issues_manager/DeprecationIssue.ts | requestedSubresourceWithEmbeddedCredentials": {
|
1497
|
+
"message": "Ŝúb̂ŕêśôúr̂ćê ŕêq́ûéŝt́ŝ ẃĥóŝé ÛŔL̂ś ĉón̂t́âín̂ ém̂b́êd́d̂éd̂ ćr̂éd̂én̂t́îál̂ś (ê.ǵ. https://user:pass@host/) âŕê b́l̂óĉḱêd́."
|
1498
|
+
},
|
1499
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpFalse": {
|
1500
|
+
"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̂."
|
1501
|
+
},
|
1502
|
+
"models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpTrue": {
|
1503
|
+
"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́îńêśŝ."
|
1504
|
+
},
|
1505
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics": {
|
1506
|
+
"message": "Complex Plan B SDP d̂ét̂éĉt́êd́. T̂h́îś d̂íâĺêćt̂ óf̂ t́ĥé Session Description Protocol îś n̂ó l̂ón̂ǵêŕ ŝúp̂ṕôŕt̂éd̂. Ṕl̂éâśê úŝé Unified Plan SDP îńŝt́êád̂."
|
1507
|
+
},
|
1508
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionLegacyCreateWithMediaConstraints": {
|
1509
|
+
"message": "T̂h́ê mediaConstraints v́êŕŝíôń ôf́ RTCOfferOptions/RTCAnswerOptions âŕê d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ ŝóôń b̂é r̂ém̂óv̂éd̂, ṕl̂éâśê ḿîǵr̂át̂é t̂ó t̂h́ê ṕr̂óm̂íŝé-b̂áŝéd̂ createOffer/createAnswer ín̂śt̂éâd́."
|
1510
|
+
},
|
1511
|
+
"models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionSdpSemanticsPlanB": {
|
1512
|
+
"message": "Plan B SDP semantics, ŵh́îćĥ íŝ úŝéd̂ ẃĥén̂ ćôńŝt́r̂úĉt́îńĝ án̂ RTCPeerConnection ẃît́ĥ {sdpSemantics:'plan-b'}, íŝ á l̂éĝáĉý n̂ón̂-śt̂án̂d́âŕd̂ v́êŕŝíôń ôf́ t̂h́ê Session Description Protocol t́ĥát̂ h́âś b̂éêń p̂ér̂ḿâńêńt̂ĺŷ d́êĺêt́êd́ f̂ŕôḿ t̂h́ê Ẃêb́ P̂ĺât́f̂ór̂ḿ. Ît́ îś ŝt́îĺl̂ áv̂áîĺâb́l̂é ŵh́êń b̂úîĺd̂ín̂ǵ ŵít̂h́ IS_FUCHSIA, b̂út̂ ẃê ín̂t́êńd̂ t́ô d́êĺêt́ê ít̂ áŝ śôón̂ áŝ ṕôśŝíb̂ĺê. Śt̂óp̂ d́êṕêńd̂ín̂ǵ ôń ît́. Ŝéê h́t̂t́p̂ś://ĉŕb̂úĝ.ćôḿ/1302249 f̂ór̂ śt̂át̂úŝ."
|
1513
|
+
},
|
1514
|
+
"models/issues_manager/DeprecationIssue.ts | rtcpMuxPolicyNegotiate": {
|
1515
|
+
"message": "T̂h́ê rtcpMuxPolicy óp̂t́îón̂ íŝ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂."
|
1516
|
+
},
|
1517
|
+
"models/issues_manager/DeprecationIssue.ts | rtpDataChannel": {
|
1518
|
+
"message": "RTP data channels âŕê ńô ĺôńĝér̂ śûṕp̂ór̂t́êd́. T̂h́ê RtpDataChannels ćôńŝt́r̂áîńt̂ íŝ ćûŕr̂én̂t́l̂ý îǵn̂ór̂éd̂, án̂d́ m̂áŷ ćâúŝé âń êŕr̂ór̂ át̂ á l̂át̂ér̂ d́ât́ê."
|
1519
|
+
},
|
1520
|
+
"models/issues_manager/DeprecationIssue.ts | selectionAddRangeIntersect": {
|
1521
|
+
"message": "T̂h́ê b́êh́âv́îór̂ t́ĥát̂ Selection.addRange() ḿêŕĝéŝ éx̂íŝt́îńĝ Ŕâńĝé âńd̂ t́ĥé ŝṕêćîf́îéd̂ Ŕâńĝé ŵáŝ ŕêḿôv́êd́."
|
1522
|
+
},
|
1523
|
+
"models/issues_manager/DeprecationIssue.ts | sharedArrayBufferConstructedWithoutIsolation": {
|
1524
|
+
"message": "SharedArrayBuffer ŵíl̂ĺ r̂éq̂úîŕê ćr̂óŝś-ôŕîǵîń îśôĺât́îón̂. Śêé ĥt́t̂ṕŝ://d́êv́êĺôṕêŕ.ĉh́r̂óm̂é.ĉóm̂/b́l̂óĝ/én̂áb̂ĺîńĝ-śĥár̂éd̂-ár̂ŕâý-b̂úf̂f́êŕ/ f̂ór̂ ḿôŕê d́êt́âíl̂ś."
|
1525
|
+
},
|
1526
|
+
"models/issues_manager/DeprecationIssue.ts | textToSpeech_DisallowedByAutoplay": {
|
1527
|
+
"message": "speechSynthesis.speak() ŵít̂h́ôút̂ úŝér̂ áĉt́îv́ât́îón̂ íŝ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂."
|
1528
|
+
},
|
1529
|
+
"models/issues_manager/DeprecationIssue.ts | title": {
|
1530
|
+
"message": "D̂ép̂ŕêćât́êd́ F̂éât́ûŕê Úŝéd̂"
|
1531
|
+
},
|
1532
|
+
"models/issues_manager/DeprecationIssue.ts | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
|
1533
|
+
"message": "Êx́t̂én̂śîón̂ś ŝh́ôúl̂d́ ôṕt̂ ín̂t́ô ćr̂óŝś-ôŕîǵîń îśôĺât́îón̂ t́ô ćôńt̂ín̂úê úŝín̂ǵ SharedArrayBuffer. Ŝéê h́t̂t́p̂ś://d̂év̂él̂óp̂ér̂.ćĥŕôḿê.ćôḿ/d̂óĉś/êx́t̂én̂śîón̂ś/m̂v́3/ĉŕôśŝ-ór̂íĝín̂-íŝól̂át̂íôń/."
|
1534
|
+
},
|
1535
|
+
"models/issues_manager/DeprecationIssue.ts | webCodecsVideoFrameDefaultTimestamp": {
|
1536
|
+
"message": "Ĉón̂śt̂ŕûćt̂ín̂ǵ â VideoFrame ẃît́ĥóût́ â t́îḿêśt̂ám̂ṕ îś d̂ép̂ŕêćât́êd́ âńd̂ śûṕp̂ór̂t́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂. Ṕl̂éâśê ṕr̂óv̂íd̂é â t́îḿêśt̂ám̂ṕ v̂íâ VideoFrameInit."
|
1537
|
+
},
|
1538
|
+
"models/issues_manager/DeprecationIssue.ts | xhrJSONEncodingDetection": {
|
1539
|
+
"message": "ÛT́F̂-16 íŝ ńôt́ ŝúp̂ṕôŕt̂éd̂ b́ŷ ŕêśp̂ón̂śê j́ŝón̂ ín̂ XMLHttpRequest"
|
1540
|
+
},
|
1541
|
+
"models/issues_manager/DeprecationIssue.ts | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
|
1542
|
+
"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̂ǵ/."
|
1543
|
+
},
|
1544
|
+
"models/issues_manager/DeprecationIssue.ts | xrSupportsSession": {
|
1545
|
+
"message": "supportsSession() îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê isSessionSupported() án̂d́ ĉh́êćk̂ t́ĥé r̂éŝól̂v́êd́ b̂óôĺêán̂ v́âĺûé îńŝt́êád̂."
|
1546
|
+
},
|
1358
1547
|
"models/issues_manager/FederatedAuthRequestIssue.ts | fedCm": {
|
1359
1548
|
"message": "F̂éd̂ér̂át̂éd̂ Ćr̂éd̂én̂t́îál̂ Ḿâńâǵêḿêńt̂ ÁP̂Í"
|
1360
1549
|
},
|
@@ -560,13 +560,17 @@ export class Breakpoint implements SDK.TargetManager.SDKModelObserver<SDK.Debugg
|
|
560
560
|
Array.from(this.#modelBreakpoints.values()).map(modelBreakpoint => modelBreakpoint.scheduleUpdateInDebugger()));
|
561
561
|
}
|
562
562
|
|
563
|
-
remove(keepInStorage: boolean): void {
|
563
|
+
async remove(keepInStorage: boolean): Promise<void> {
|
564
564
|
this.isRemoved = true;
|
565
565
|
const removeFromStorage = !keepInStorage;
|
566
|
+
|
567
|
+
// Await removing for all targets.
|
568
|
+
const updatePromises: Promise<void>[] = [];
|
566
569
|
for (const modelBreakpoint of this.#modelBreakpoints.values()) {
|
567
|
-
void modelBreakpoint.scheduleUpdateInDebugger();
|
568
570
|
modelBreakpoint.removeEventListeners();
|
571
|
+
updatePromises.push(modelBreakpoint.scheduleUpdateInDebugger());
|
569
572
|
}
|
573
|
+
await Promise.all(updatePromises);
|
570
574
|
|
571
575
|
this.breakpointManager.removeBreakpoint(this, removeFromStorage);
|
572
576
|
this.breakpointManager.targetManager.unobserveModels(SDK.DebuggerModel.DebuggerModel, this);
|
@@ -578,13 +582,6 @@ export class Breakpoint implements SDK.TargetManager.SDKModelObserver<SDK.Debugg
|
|
578
582
|
this.urlInternal, this.#lineNumberInternal, this.#columnNumberInternal);
|
579
583
|
}
|
580
584
|
|
581
|
-
private resetLocations(): void {
|
582
|
-
this.clearUISourceCodes();
|
583
|
-
for (const modelBreakpoint of this.#modelBreakpoints.values()) {
|
584
|
-
modelBreakpoint.resetLocations();
|
585
|
-
}
|
586
|
-
}
|
587
|
-
|
588
585
|
private defaultUILocation(uiSourceCode: Workspace.UISourceCode.UISourceCode): Workspace.UISourceCode.UILocation {
|
589
586
|
return uiSourceCode.uiLocation(this.#lineNumberInternal, this.#columnNumberInternal);
|
590
587
|
}
|
@@ -782,7 +779,11 @@ export class ModelBreakpoint {
|
|
782
779
|
}
|
783
780
|
|
784
781
|
if (!breakpointIds.length) {
|
785
|
-
|
782
|
+
// Do not await the remove, as we otherwise will create a circular
|
783
|
+
// dependency. Removing breakpoints will call `scheduleUpdateInDebugger` again.
|
784
|
+
// Calling it again would cause it to await this current run of `scheduleInDebugger`, which
|
785
|
+
// will then deadlock.
|
786
|
+
void this.#breakpoint.remove(true);
|
786
787
|
return;
|
787
788
|
}
|
788
789
|
|
@@ -844,7 +845,7 @@ export class ModelBreakpoint {
|
|
844
845
|
const breakpointLocation = this.#breakpoint.breakpointManager.findBreakpoint(uiLocation);
|
845
846
|
if (breakpointLocation && breakpointLocation.breakpoint !== this.#breakpoint) {
|
846
847
|
// location clash
|
847
|
-
this.#breakpoint.remove(false /* keepInStorage */);
|
848
|
+
await this.#breakpoint.remove(false /* keepInStorage */);
|
848
849
|
return;
|
849
850
|
}
|
850
851
|
await this.#debuggerWorkspaceBinding.createLiveLocation(
|