chrome-devtools-frontend 1.0.996044 → 1.0.997598

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.
Files changed (33) hide show
  1. package/AUTHORS +2 -0
  2. package/front_end/core/i18n/locales/en-US.json +102 -0
  3. package/front_end/core/i18n/locales/en-XL.json +102 -0
  4. package/front_end/core/root/Runtime.ts +5 -0
  5. package/front_end/core/sdk/CSSMatchedStyles.ts +158 -33
  6. package/front_end/core/sdk/CSSMetadata.ts +1 -8
  7. package/front_end/core/sdk/DebuggerModel.ts +1 -1
  8. package/front_end/core/sdk/NetworkManager.ts +1 -2
  9. package/front_end/generated/InspectorBackendCommands.js +33 -3
  10. package/front_end/generated/protocol.ts +47 -24
  11. package/front_end/models/bindings/BreakpointManager.ts +12 -3
  12. package/front_end/models/issues_manager/DeprecationIssue.ts +281 -24
  13. package/front_end/panels/changes/ChangesView.ts +25 -10
  14. package/front_end/panels/css_overview/cssOverview.css +4 -0
  15. package/front_end/panels/elements/ElementsPanel.ts +7 -6
  16. package/front_end/panels/elements/StylesSidebarPane.ts +55 -21
  17. package/front_end/panels/elements/components/adornerSettingsPane.css +5 -0
  18. package/front_end/panels/elements/stylesSectionTree.css +5 -4
  19. package/front_end/panels/elements/stylesSidebarPane.css +1 -1
  20. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +1 -0
  21. package/front_end/panels/sources/DebuggerPlugin.ts +6 -2
  22. package/front_end/panels/sources/SourcesPanel.ts +22 -6
  23. package/front_end/panels/sources/sources-legacy.ts +1 -1
  24. package/front_end/panels/sources/sources-meta.ts +61 -7
  25. package/front_end/ui/components/diff_view/diffView.css +2 -0
  26. package/front_end/ui/components/tree_outline/TreeOutline.ts +18 -7
  27. package/front_end/ui/legacy/SplitWidget.ts +17 -7
  28. package/front_end/ui/legacy/Toolbar.ts +5 -0
  29. package/front_end/ui/legacy/softDropDownButton.css +4 -0
  30. package/package.json +1 -1
  31. package/scripts/eslint_rules/lib/inline_type_imports.js +158 -0
  32. package/scripts/eslint_rules/tests/inline_type_imports_test.js +106 -0
  33. package/scripts/javascript_natives/index.js +1 -2
package/AUTHORS CHANGED
@@ -26,6 +26,7 @@ Edward Trist <edwardtrist@gmail.com>
26
26
  Ergün Erdoğmuş <erdogmusergun@gmail.com>
27
27
  Eric Rannaud <eric.rannaud@gmail.com>
28
28
  Feng Lu <lufengd3@gmail.com>
29
+ Feng Yu <f3n67u@gmail.com>
29
30
  Gabriel Luong <gabriel.luong@gmail.com>
30
31
  Gautham Banasandra <gautham.bangalore@gmail.com>
31
32
  Jacky Hu <flameddd@gmail.com>
@@ -56,6 +57,7 @@ Varun Varada <varuncvarada@gmail.com>
56
57
  Will Hernandez <w.hernandez.code@gmail.com>
57
58
  Yeol Park <peary2@gmail.com>
58
59
  Yisi <yiorsi@gmail.com>
60
+ Yuan Zhuang <joann.yuanzhuang@gmail.com>
59
61
  # Please DO NOT APPEND here. See comments at the top of the file.
60
62
  # END individuals section.
61
63
 
@@ -1355,6 +1355,21 @@
1355
1355
  "models/issues_manager/DeprecationIssue.ts | authorizationCoveredByWildcard": {
1356
1356
  "message": "Authorization will not be covered by the wildcard symbol (*) in CORS Access-Control-Allow-Headers handling."
1357
1357
  },
1358
+ "models/issues_manager/DeprecationIssue.ts | batteryStatusInsecureOrigin": {
1359
+ "message": "Using the Battery Status API (e.g. navigator.getBattery()) in insecure origins like HTTP is deprecated and will be removed."
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
+ },
1358
1373
  "models/issues_manager/DeprecationIssue.ts | cookieWithTruncatingChar": {
1359
1374
  "message": "Cookies containing a \\(0|r|n) character will be rejected instead of truncated."
1360
1375
  },
@@ -1367,12 +1382,21 @@
1367
1382
  "models/issues_manager/DeprecationIssue.ts | crossOriginWindowConfirm": {
1368
1383
  "message": "Triggering window.confirm from cross origin iframes has been deprecated and will be removed in the future."
1369
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
+ },
1370
1391
  "models/issues_manager/DeprecationIssue.ts | deprecationExample": {
1371
1392
  "message": "This is an example of a translated deprecation issue message."
1372
1393
  },
1373
1394
  "models/issues_manager/DeprecationIssue.ts | documentDomainSettingWithoutOriginAgentClusterHeader": {
1374
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."
1375
1396
  },
1397
+ "models/issues_manager/DeprecationIssue.ts | eventPath": {
1398
+ "message": "Event.path is deprecated and will be removed. Please use Event.composedPath() instead."
1399
+ },
1376
1400
  "models/issues_manager/DeprecationIssue.ts | feature": {
1377
1401
  "message": "Check the feature status page for more details."
1378
1402
  },
@@ -1385,6 +1409,12 @@
1385
1409
  "models/issues_manager/DeprecationIssue.ts | getUserMediaInsecureOrigin": {
1386
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.gl/rStTGz for more details."
1387
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
+ },
1388
1418
  "models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogCpuOveruseDetection": {
1389
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."
1390
1420
  },
@@ -1400,15 +1430,36 @@
1400
1430
  "models/issues_manager/DeprecationIssue.ts | localCSSFileExtensionRejected": {
1401
1431
  "message": "CSS cannot be loaded from file: URLs unless they end in a .css file extension."
1402
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
+ },
1403
1442
  "models/issues_manager/DeprecationIssue.ts | milestone": {
1404
1443
  "message": "This change will go into effect with milestone {milestone}."
1405
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
+ },
1406
1448
  "models/issues_manager/DeprecationIssue.ts | notificationInsecureOrigin": {
1407
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.gl/rStTGz for more details."
1408
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
+ },
1409
1454
  "models/issues_manager/DeprecationIssue.ts | obsoleteWebRtcCipherSuite": {
1410
1455
  "message": "Your partner is negotiating an obsolete (D)TLS version. Please check with your partner to have this fixed."
1411
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
+ },
1412
1463
  "models/issues_manager/DeprecationIssue.ts | pictureSourceSrc": {
1413
1464
  "message": "<source src> with a <picture> parent is invalid and therefore ignored. Please use <source srcset> instead."
1414
1465
  },
@@ -1418,6 +1469,33 @@
1418
1469
  "models/issues_manager/DeprecationIssue.ts | prefixedRequestAnimationFrame": {
1419
1470
  "message": "webkitRequestAnimationFrame is vendor-specific. Please use the standard requestAnimationFrame instead."
1420
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
+ },
1421
1499
  "models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpFalse": {
1422
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."
1423
1501
  },
@@ -1430,12 +1508,24 @@
1430
1508
  "models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionLegacyCreateWithMediaConstraints": {
1431
1509
  "message": "The mediaConstraints version of RTCOfferOptions/RTCAnswerOptions are deprecated and will soon be removed, please migrate to the promise-based createOffer/createAnswer instead."
1432
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
+ },
1433
1517
  "models/issues_manager/DeprecationIssue.ts | rtpDataChannel": {
1434
1518
  "message": "RTP data channels are no longer supported. The RtpDataChannels constraint is currently ignored, and may cause an error at a later date."
1435
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
+ },
1436
1523
  "models/issues_manager/DeprecationIssue.ts | sharedArrayBufferConstructedWithoutIsolation": {
1437
1524
  "message": "SharedArrayBuffer will require cross-origin isolation. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details."
1438
1525
  },
1526
+ "models/issues_manager/DeprecationIssue.ts | textToSpeech_DisallowedByAutoplay": {
1527
+ "message": "speechSynthesis.speak() without user activation is deprecated and will be removed."
1528
+ },
1439
1529
  "models/issues_manager/DeprecationIssue.ts | title": {
1440
1530
  "message": "Deprecated Feature Used"
1441
1531
  },
@@ -1451,6 +1541,9 @@
1451
1541
  "models/issues_manager/DeprecationIssue.ts | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
1452
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/."
1453
1543
  },
1544
+ "models/issues_manager/DeprecationIssue.ts | xrSupportsSession": {
1545
+ "message": "supportsSession() is deprecated. Please use isSessionSupported() and check the resolved boolean value instead."
1546
+ },
1454
1547
  "models/issues_manager/FederatedAuthRequestIssue.ts | fedCm": {
1455
1548
  "message": "Federated Credential Management API"
1456
1549
  },
@@ -10004,6 +10097,12 @@
10004
10097
  "panels/sources/sources-meta.ts | toggleBreakpointInputWindow": {
10005
10098
  "message": "Toggle breakpoint input window"
10006
10099
  },
10100
+ "panels/sources/sources-meta.ts | toggleDebuggerSidebar": {
10101
+ "message": "Toggle debugger sidebar"
10102
+ },
10103
+ "panels/sources/sources-meta.ts | toggleNavigatorSidebar": {
10104
+ "message": "Toggle navigator sidebar"
10105
+ },
10007
10106
  "panels/sources/sources-meta.ts | trailing": {
10008
10107
  "message": "Trailing"
10009
10108
  },
@@ -12563,6 +12662,9 @@
12563
12662
  "ui/legacy/TargetCrashedScreen.ts | oncePageIsReloadedDevtoolsWill": {
12564
12663
  "message": "Once page is reloaded, DevTools will automatically reconnect."
12565
12664
  },
12665
+ "ui/legacy/Toolbar.ts | clearInput": {
12666
+ "message": "Clear input"
12667
+ },
12566
12668
  "ui/legacy/Toolbar.ts | notPressed": {
12567
12669
  "message": "not pressed"
12568
12670
  },
@@ -1355,6 +1355,21 @@
1355
1355
  "models/issues_manager/DeprecationIssue.ts | authorizationCoveredByWildcard": {
1356
1356
  "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̂ǵ."
1357
1357
  },
1358
+ "models/issues_manager/DeprecationIssue.ts | batteryStatusInsecureOrigin": {
1359
+ "message": "Ûśîńĝ t́ĥé B̂át̂t́êŕŷ Śt̂át̂úŝ ÁP̂Í (ê.ǵ. navigator.getBattery()) îń îńŝéĉúr̂é ôŕîǵîńŝ ĺîḱê H́T̂T́P̂ íŝ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂."
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
+ },
1358
1373
  "models/issues_manager/DeprecationIssue.ts | cookieWithTruncatingChar": {
1359
1374
  "message": "Ĉóôḱîéŝ ćôńt̂áîńîńĝ á \\(0|r|n) ĉh́âŕâćt̂ér̂ ẃîĺl̂ b́ê ŕêj́êćt̂éd̂ ín̂śt̂éâd́ ôf́ t̂ŕûńĉát̂éd̂."
1360
1375
  },
@@ -1367,12 +1382,21 @@
1367
1382
  "models/issues_manager/DeprecationIssue.ts | crossOriginWindowConfirm": {
1368
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̂é."
1369
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
+ },
1370
1391
  "models/issues_manager/DeprecationIssue.ts | deprecationExample": {
1371
1392
  "message": "T̂h́îś îś âń êx́âḿp̂ĺê óf̂ á t̂ŕâńŝĺât́êd́ d̂ép̂ŕêćât́îón̂ íŝśûé m̂éŝśâǵê."
1372
1393
  },
1373
1394
  "models/issues_manager/DeprecationIssue.ts | documentDomainSettingWithoutOriginAgentClusterHeader": {
1374
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̂áîĺŝ."
1375
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
+ },
1376
1400
  "models/issues_manager/DeprecationIssue.ts | feature": {
1377
1401
  "message": "Ĉh́êćk̂ t́ĥé f̂éât́ûŕê śt̂át̂úŝ ṕâǵê f́ôŕ m̂ór̂é d̂ét̂áîĺŝ."
1378
1402
  },
@@ -1385,6 +1409,12 @@
1385
1409
  "models/issues_manager/DeprecationIssue.ts | getUserMediaInsecureOrigin": {
1386
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̂ṕŝ://ǵôó.ĝĺ/r̂Śt̂T́Ĝź f̂ór̂ ḿôŕê d́êt́âíl̂ś."
1387
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
+ },
1388
1418
  "models/issues_manager/DeprecationIssue.ts | legacyConstraintGoogCpuOveruseDetection": {
1389
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́."
1390
1420
  },
@@ -1400,15 +1430,36 @@
1400
1430
  "models/issues_manager/DeprecationIssue.ts | localCSSFileExtensionRejected": {
1401
1431
  "message": "ĈŚŜ ćâńn̂ót̂ b́ê ĺôád̂éd̂ f́r̂óm̂ file: ÚR̂Ĺŝ ún̂ĺêśŝ t́ĥéŷ én̂d́ îń â .css f́îĺê éx̂t́êńŝíôń."
1402
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
+ },
1403
1442
  "models/issues_manager/DeprecationIssue.ts | milestone": {
1404
1443
  "message": "T̂h́îś ĉh́âńĝé ŵíl̂ĺ ĝó îńt̂ó êf́f̂éĉt́ ŵít̂h́ m̂íl̂éŝt́ôńê {milestone}."
1405
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
+ },
1406
1448
  "models/issues_manager/DeprecationIssue.ts | notificationInsecureOrigin": {
1407
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̂ṕŝ://ǵôó.ĝĺ/r̂Śt̂T́Ĝź f̂ór̂ ḿôŕê d́êt́âíl̂ś."
1408
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
+ },
1409
1454
  "models/issues_manager/DeprecationIssue.ts | obsoleteWebRtcCipherSuite": {
1410
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́."
1411
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
+ },
1412
1463
  "models/issues_manager/DeprecationIssue.ts | pictureSourceSrc": {
1413
1464
  "message": "<source src> ŵít̂h́ â <picture> ṕâŕêńt̂ íŝ ín̂v́âĺîd́ âńd̂ t́ĥér̂éf̂ór̂é îǵn̂ór̂éd̂. Ṕl̂éâśê úŝé <source srcset> îńŝt́êád̂."
1414
1465
  },
@@ -1418,6 +1469,33 @@
1418
1469
  "models/issues_manager/DeprecationIssue.ts | prefixedRequestAnimationFrame": {
1419
1470
  "message": "webkitRequestAnimationFrame îś v̂én̂d́ôŕ-ŝṕêćîf́îć. P̂ĺêáŝé ûśê t́ĥé ŝt́âńd̂ár̂d́ requestAnimationFrame îńŝt́êád̂."
1420
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
+ },
1421
1499
  "models/issues_manager/DeprecationIssue.ts | rtcConstraintEnableDtlsSrtpFalse": {
1422
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 ḱêý n̂éĝót̂íât́îón̂ ḿêt́ĥód̂. T́ĥíŝ f́ûńĉt́îón̂ál̂ít̂ý îś r̂ém̂óv̂éd̂; úŝé â śêŕv̂íĉé t̂h́ât́ ŝúp̂ṕôŕt̂ś D̂T́L̂Ś k̂éŷ ńêǵôt́îát̂íôń îńŝt́êád̂."
1423
1501
  },
@@ -1430,12 +1508,24 @@
1430
1508
  "models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionLegacyCreateWithMediaConstraints": {
1431
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́."
1432
1510
  },
1511
+ "models/issues_manager/DeprecationIssue.ts | rtcPeerConnectionSdpSemanticsPlanB": {
1512
+ "message": "P̂ĺâń B̂ ŚD̂Ṕ ŝém̂án̂t́îćŝ, ẃĥíĉh́ îś ûśêd́ ŵh́êń ĉón̂śt̂ŕûćt̂ín̂ǵ âń RTCPeerConnection ŵít̂h́ {sdpSemantics:'plan-b'}, îś â ĺêǵâćŷ ńôń-ŝt́âńd̂ár̂d́ v̂ér̂śîón̂ óf̂ t́ĥé Ŝéŝśîón̂ D́êśĉŕîṕt̂íôń P̂ŕôt́ôćôĺ t̂h́ât́ ĥáŝ b́êén̂ ṕêŕm̂án̂én̂t́l̂ý d̂él̂ét̂éd̂ f́r̂óm̂ t́ĥé Ŵéb̂ Ṕl̂át̂f́ôŕm̂. Ít̂ íŝ śt̂íl̂ĺ âv́âíl̂áb̂ĺê ẃĥén̂ b́ûíl̂d́îńĝ ẃît́ĥ ÍŜ_F́ÛĆĤŚÎÁ, 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
+ },
1433
1517
  "models/issues_manager/DeprecationIssue.ts | rtpDataChannel": {
1434
1518
  "message": "R̂T́P̂ d́ât́â ćĥán̂ńêĺŝ ár̂é n̂ó l̂ón̂ǵêŕ ŝúp̂ṕôŕt̂éd̂. T́ĥé RtpDataChannels ĉón̂śt̂ŕâín̂t́ îś ĉúr̂ŕêńt̂ĺŷ íĝńôŕêd́, âńd̂ ḿâý ĉáûśê án̂ ér̂ŕôŕ ât́ â ĺât́êŕ d̂át̂é."
1435
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
+ },
1436
1523
  "models/issues_manager/DeprecationIssue.ts | sharedArrayBufferConstructedWithoutIsolation": {
1437
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̂ś."
1438
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
+ },
1439
1529
  "models/issues_manager/DeprecationIssue.ts | title": {
1440
1530
  "message": "D̂ép̂ŕêćât́êd́ F̂éât́ûŕê Úŝéd̂"
1441
1531
  },
@@ -1451,6 +1541,9 @@
1451
1541
  "models/issues_manager/DeprecationIssue.ts | xmlHttpRequestSynchronousInNonWorkerOutsideBeforeUnload": {
1452
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̂ǵ/."
1453
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
+ },
1454
1547
  "models/issues_manager/FederatedAuthRequestIssue.ts | fedCm": {
1455
1548
  "message": "F̂éd̂ér̂át̂éd̂ Ćr̂éd̂én̂t́îál̂ Ḿâńâǵêḿêńt̂ ÁP̂Í"
1456
1549
  },
@@ -10004,6 +10097,12 @@
10004
10097
  "panels/sources/sources-meta.ts | toggleBreakpointInputWindow": {
10005
10098
  "message": "T̂óĝǵl̂é b̂ŕêák̂ṕôín̂t́ îńp̂út̂ ẃîńd̂óŵ"
10006
10099
  },
10100
+ "panels/sources/sources-meta.ts | toggleDebuggerSidebar": {
10101
+ "message": "T̂óĝǵl̂é d̂éb̂úĝǵêŕ ŝíd̂éb̂ár̂"
10102
+ },
10103
+ "panels/sources/sources-meta.ts | toggleNavigatorSidebar": {
10104
+ "message": "T̂óĝǵl̂é n̂áv̂íĝát̂ór̂ śîd́êb́âŕ"
10105
+ },
10007
10106
  "panels/sources/sources-meta.ts | trailing": {
10008
10107
  "message": "T̂ŕâíl̂ín̂ǵ"
10009
10108
  },
@@ -12563,6 +12662,9 @@
12563
12662
  "ui/legacy/TargetCrashedScreen.ts | oncePageIsReloadedDevtoolsWill": {
12564
12663
  "message": "Ôńĉé p̂áĝé îś r̂él̂óâd́êd́, D̂év̂T́ôól̂ś ŵíl̂ĺ âút̂óm̂át̂íĉál̂ĺŷ ŕêćôńn̂éĉt́."
12565
12664
  },
12665
+ "ui/legacy/Toolbar.ts | clearInput": {
12666
+ "message": "Ĉĺêár̂ ín̂ṕût́"
12667
+ },
12566
12668
  "ui/legacy/Toolbar.ts | notPressed": {
12567
12669
  "message": "n̂ót̂ ṕr̂éŝśêd́"
12568
12670
  },
@@ -206,6 +206,11 @@ export class ExperimentsSupport {
206
206
  this.#enabledTransiently.add(experimentName);
207
207
  }
208
208
 
209
+ disableForTest(experimentName: string): void {
210
+ this.checkExperiment(experimentName);
211
+ this.#enabledTransiently.delete(experimentName);
212
+ }
213
+
209
214
  clearForTest(): void {
210
215
  this.#experiments = [];
211
216
  this.#experimentNames.clear();