chrome-devtools-frontend 1.0.1002543 → 1.0.1003496

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 (34) hide show
  1. package/config/gni/devtools_grd_files.gni +1 -0
  2. package/front_end/core/host/InspectorFrontendHostAPI.ts +1 -0
  3. package/front_end/core/host/UserMetrics.ts +17 -1
  4. package/front_end/core/i18n/locales/en-US.json +20 -35
  5. package/front_end/core/i18n/locales/en-XL.json +20 -35
  6. package/front_end/core/sdk/TracingModel.ts +5 -4
  7. package/front_end/devtools_compatibility.js +1 -0
  8. package/front_end/entrypoints/main/MainImpl.ts +1 -0
  9. package/front_end/generated/InspectorBackendCommands.js +4 -2
  10. package/front_end/generated/SupportedCSSProperties.js +3 -5
  11. package/front_end/generated/protocol.ts +18 -4
  12. package/front_end/models/issues_manager/AttributionReportingIssue.ts +4 -1
  13. package/front_end/models/issues_manager/DeprecationIssue.ts +84 -103
  14. package/front_end/models/issues_manager/descriptions/arInvalidHeader.md +3 -0
  15. package/front_end/models/persistence/NetworkPersistenceManager.ts +20 -0
  16. package/front_end/models/timeline_model/TimelineModel.ts +2 -1
  17. package/front_end/panels/elements/StylesSidebarPane.ts +21 -5
  18. package/front_end/panels/elements/stylesSidebarPane.css +3 -0
  19. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +14 -0
  20. package/front_end/panels/lighthouse/LighthouseController.ts +2 -1
  21. package/front_end/panels/network/NetworkLogView.ts +32 -0
  22. package/front_end/panels/sources/SourcesNavigator.ts +1 -1
  23. package/front_end/panels/sources/SourcesPanel.ts +1 -1
  24. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +4 -12
  25. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +409 -409
  26. package/front_end/third_party/lighthouse/locales/en-US.json +3 -0
  27. package/front_end/third_party/lighthouse/locales/en-XL.json +3 -0
  28. package/front_end/third_party/lighthouse/report/bundle.d.ts +2 -22
  29. package/front_end/third_party/lighthouse/report/bundle.js +5 -354
  30. package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
  31. package/front_end/ui/components/text_editor/javascript.ts +6 -15
  32. package/front_end/ui/legacy/InspectorView.ts +29 -0
  33. package/package.json +1 -1
  34. package/scripts/whitespaces.txt +1 -0
@@ -279,6 +279,7 @@ grd_files_release_sources = [
279
279
  "front_end/models/issues_manager/descriptions/arAttributionSourceUntrustworthyOrigin.md",
280
280
  "front_end/models/issues_manager/descriptions/arAttributionUntrustworthyFrameOrigin.md",
281
281
  "front_end/models/issues_manager/descriptions/arAttributionUntrustworthyOrigin.md",
282
+ "front_end/models/issues_manager/descriptions/arInvalidHeader.md",
282
283
  "front_end/models/issues_manager/descriptions/arPermissionPolicyDisabled.md",
283
284
  "front_end/models/issues_manager/descriptions/clientHintMetaTagAllowListInvalidOrigin.md",
284
285
  "front_end/models/issues_manager/descriptions/clientHintMetaTagModifiedHTML.md",
@@ -372,6 +372,7 @@ export enum EnumeratedHistogram {
372
372
  RecordingEdited = 'DevTools.RecordingEdited',
373
373
  RecordingExported = 'DevTools.RecordingExported',
374
374
  RecordingReplayFinished = 'DevTools.RecordingReplayFinished',
375
+ RecordingReplaySpeed = 'DevTools.RecordingReplaySpeed',
375
376
  RecordingReplayStarted = 'DevTools.RecordingReplayStarted',
376
377
  RecordingToggled = 'DevTools.RecordingToggled',
377
378
  StyleTextCopied = 'DevTools.StyleTextCopied',
@@ -246,6 +246,11 @@ export class UserMetrics {
246
246
  EnumeratedHistogram.RecordingReplayFinished, value, RecordingReplayFinished.MaxValue);
247
247
  }
248
248
 
249
+ recordingReplaySpeed(value: RecordingReplaySpeed): void {
250
+ InspectorFrontendHostInstance.recordEnumeratedHistogram(
251
+ EnumeratedHistogram.RecordingReplaySpeed, value, RecordingReplaySpeed.MaxValue);
252
+ }
253
+
249
254
  recordingReplayStarted(value: RecordingReplayStarted): void {
250
255
  InspectorFrontendHostInstance.recordEnumeratedHistogram(
251
256
  EnumeratedHistogram.RecordingReplayStarted, value, RecordingReplayStarted.MaxValue);
@@ -339,7 +344,8 @@ export enum Action {
339
344
  ConsoleSidebarOpened = 53,
340
345
  PerfPanelTraceImported = 54,
341
346
  PerfPanelTraceExported = 55,
342
- MaxValue = 56,
347
+ StackFrameRestarted = 56,
348
+ MaxValue = 57,
343
349
  }
344
350
 
345
351
  /* eslint-disable @typescript-eslint/naming-convention */
@@ -894,6 +900,16 @@ export enum RecordingReplayFinished {
894
900
  MaxValue = 5,
895
901
  }
896
902
 
903
+ // TODO(crbug.com/1167717): Make this a const enum again
904
+ // eslint-disable-next-line rulesdir/const_enum
905
+ export enum RecordingReplaySpeed {
906
+ Normal = 1,
907
+ Slow = 2,
908
+ VerySlow = 3,
909
+ ExtremelySlow = 4,
910
+ MaxValue = 5,
911
+ }
912
+
897
913
  // TODO(crbug.com/1167717): Make this a const enum again
898
914
  // eslint-disable-next-line rulesdir/const_enum
899
915
  export enum RecordingReplayStarted {
@@ -1376,11 +1376,8 @@
1376
1376
  "models/issues_manager/DeprecationIssue.ts | crossOriginAccessBasedOnDocumentDomain": {
1377
1377
  "message": "Relaxing the same-origin policy by setting document.domain is deprecated, and will be disabled by default. This deprecation warning is for a cross-origin access that was enabled by setting document.domain."
1378
1378
  },
1379
- "models/issues_manager/DeprecationIssue.ts | 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."
1379
+ "models/issues_manager/DeprecationIssue.ts | crossOriginWindowApi": {
1380
+ "message": "Triggering {PH1} from cross origin iframes has been deprecated and will be removed in the future."
1384
1381
  },
1385
1382
  "models/issues_manager/DeprecationIssue.ts | cssSelectorInternalMediaControlsOverlayCastButton": {
1386
1383
  "message": "The disableRemotePlayback attribute should be used in order to disable the default Cast integration instead of using -internal-media-controls-overlay-cast-button selector."
@@ -1388,6 +1385,9 @@
1388
1385
  "models/issues_manager/DeprecationIssue.ts | customCursorIntersectsViewport": {
1389
1386
  "message": "Custom cursors with size greater than 32x32 DIP intersecting native UI is deprecated and will be removed."
1390
1387
  },
1388
+ "models/issues_manager/DeprecationIssue.ts | deprecatedWithReplacement": {
1389
+ "message": "{PH1} is deprecated. Please use {PH2} instead."
1390
+ },
1391
1391
  "models/issues_manager/DeprecationIssue.ts | deprecationExample": {
1392
1392
  "message": "This is an example of a translated deprecation issue message."
1393
1393
  },
@@ -1454,36 +1454,9 @@
1454
1454
  "models/issues_manager/DeprecationIssue.ts | pictureSourceSrc": {
1455
1455
  "message": "<source src> with a <picture> parent is invalid and therefore ignored. Please use <source srcset> instead."
1456
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
1457
  "models/issues_manager/DeprecationIssue.ts | prefixedStorageInfo": {
1464
1458
  "message": "window.webkitStorageInfo is deprecated. Please use navigator.webkitTemporaryStorage or navigator.webkitPersistentStorage instead."
1465
1459
  },
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
1460
  "models/issues_manager/DeprecationIssue.ts | requestedSubresourceWithEmbeddedCredentials": {
1488
1461
  "message": "Subresource requests whose URLs contain embedded credentials (e.g. https://user:pass@host/) are blocked."
1489
1462
  },
@@ -1517,6 +1490,9 @@
1517
1490
  "models/issues_manager/DeprecationIssue.ts | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
1518
1491
  "message": "Extensions should opt into cross-origin isolation to continue using SharedArrayBuffer. See https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/."
1519
1492
  },
1493
+ "models/issues_manager/DeprecationIssue.ts | vendorSpecificApi": {
1494
+ "message": "{PH1} is vendor-specific. Please use the standard {PH2} instead."
1495
+ },
1520
1496
  "models/issues_manager/DeprecationIssue.ts | xhrJSONEncodingDetection": {
1521
1497
  "message": "UTF-16 is not supported by response json in XMLHttpRequest"
1522
1498
  },
@@ -5537,6 +5513,9 @@
5537
5513
  "panels/issues/AttributionReportingIssueDetailsView.ts | frame": {
5538
5514
  "message": "Frame"
5539
5515
  },
5516
+ "panels/issues/AttributionReportingIssueDetailsView.ts | invalidHeaderValue": {
5517
+ "message": "Invalid Header Value"
5518
+ },
5540
5519
  "panels/issues/AttributionReportingIssueDetailsView.ts | nViolations": {
5541
5520
  "message": "{n, plural, =1 {# violation} other {# violations}}"
5542
5521
  },
@@ -7046,6 +7025,9 @@
7046
7025
  "panels/network/NetworkLogView.ts | copyStacktrace": {
7047
7026
  "message": "Copy stack trace"
7048
7027
  },
7028
+ "panels/network/NetworkLogView.ts | createResponseHeaderOverride": {
7029
+ "message": "Create response header override"
7030
+ },
7049
7031
  "panels/network/NetworkLogView.ts | domcontentloadedS": {
7050
7032
  "message": "DOMContentLoaded: {PH1}"
7051
7033
  },
@@ -10445,9 +10427,6 @@
10445
10427
  "panels/timeline/TimelineFlameChartDataProvider.ts | idleFrame": {
10446
10428
  "message": "Idle Frame"
10447
10429
  },
10448
- "panels/timeline/TimelineFlameChartDataProvider.ts | interactions": {
10449
- "message": "Interactions"
10450
- },
10451
10430
  "panels/timeline/TimelineFlameChartDataProvider.ts | longFrame": {
10452
10431
  "message": "Long frame"
10453
10432
  },
@@ -12518,6 +12497,12 @@
12518
12497
  "ui/legacy/InspectorView.ts | reloadDevtools": {
12519
12498
  "message": "Reload DevTools"
12520
12499
  },
12500
+ "ui/legacy/InspectorView.ts | selectFolder": {
12501
+ "message": "Select folder"
12502
+ },
12503
+ "ui/legacy/InspectorView.ts | selectOverrideFolder": {
12504
+ "message": "Select a folder to store override files in."
12505
+ },
12521
12506
  "ui/legacy/InspectorView.ts | setToBrowserLanguage": {
12522
12507
  "message": "Always match Chrome's language"
12523
12508
  },
@@ -1376,11 +1376,8 @@
1376
1376
  "models/issues_manager/DeprecationIssue.ts | crossOriginAccessBasedOnDocumentDomain": {
1377
1377
  "message": "R̂él̂áx̂ín̂ǵ t̂h́ê śâḿê-ór̂íĝín̂ ṕôĺîćŷ b́ŷ śêt́t̂ín̂ǵ document.domain îś d̂ép̂ŕêćât́êd́, âńd̂ ẃîĺl̂ b́ê d́îśâb́l̂éd̂ b́ŷ d́êf́âúl̂t́. T̂h́îś d̂ép̂ŕêćât́îón̂ ẃâŕn̂ín̂ǵ îś f̂ór̂ á ĉŕôśŝ-ór̂íĝín̂ áĉćêśŝ t́ĥát̂ ẃâś êńâb́l̂éd̂ b́ŷ śêt́t̂ín̂ǵ document.domain."
1378
1378
  },
1379
- "models/issues_manager/DeprecationIssue.ts | 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̂é."
1379
+ "models/issues_manager/DeprecationIssue.ts | crossOriginWindowApi": {
1380
+ "message": "T̂ŕîǵĝér̂ín̂ǵ {PH1} f̂ŕôḿ ĉŕôśŝ ór̂íĝín̂ íf̂ŕâḿêś ĥáŝ b́êén̂ d́êṕr̂éĉát̂éd̂ án̂d́ ŵíl̂ĺ b̂é r̂ém̂óv̂éd̂ ín̂ t́ĥé f̂út̂úr̂é."
1384
1381
  },
1385
1382
  "models/issues_manager/DeprecationIssue.ts | cssSelectorInternalMediaControlsOverlayCastButton": {
1386
1383
  "message": "T̂h́ê disableRemotePlayback át̂t́r̂íb̂út̂é ŝh́ôúl̂d́ b̂é ûśêd́ îń ôŕd̂ér̂ t́ô d́îśâb́l̂é t̂h́ê d́êf́âúl̂t́ Ĉáŝt́ îńt̂éĝŕât́îón̂ ín̂śt̂éâd́ ôf́ ûśîńĝ -internal-media-controls-overlay-cast-button śêĺêćt̂ór̂."
@@ -1388,6 +1385,9 @@
1388
1385
  "models/issues_manager/DeprecationIssue.ts | customCursorIntersectsViewport": {
1389
1386
  "message": "Ĉúŝt́ôḿ ĉúr̂śôŕŝ ẃît́ĥ śîźê ǵr̂éât́êŕ t̂h́âń 32x̂32 D́ÎṔ îńt̂ér̂śêćt̂ín̂ǵ n̂át̂ív̂é ÛÍ îś d̂ép̂ŕêćât́êd́ âńd̂ ẃîĺl̂ b́ê ŕêḿôv́êd́."
1390
1387
  },
1388
+ "models/issues_manager/DeprecationIssue.ts | deprecatedWithReplacement": {
1389
+ "message": "{PH1} îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê {PH2} ín̂śt̂éâd́."
1390
+ },
1391
1391
  "models/issues_manager/DeprecationIssue.ts | deprecationExample": {
1392
1392
  "message": "T̂h́îś îś âń êx́âḿp̂ĺê óf̂ á t̂ŕâńŝĺât́êd́ d̂ép̂ŕêćât́îón̂ íŝśûé m̂éŝśâǵê."
1393
1393
  },
@@ -1454,36 +1454,9 @@
1454
1454
  "models/issues_manager/DeprecationIssue.ts | pictureSourceSrc": {
1455
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
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
1457
  "models/issues_manager/DeprecationIssue.ts | prefixedStorageInfo": {
1464
1458
  "message": "window.webkitStorageInfo îś d̂ép̂ŕêćât́êd́. P̂ĺêáŝé ûśê navigator.webkitTemporaryStorage ór̂ navigator.webkitPersistentStorage ín̂śt̂éâd́."
1465
1459
  },
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
1460
  "models/issues_manager/DeprecationIssue.ts | requestedSubresourceWithEmbeddedCredentials": {
1488
1461
  "message": "Ŝúb̂ŕêśôúr̂ćê ŕêq́ûéŝt́ŝ ẃĥóŝé ÛŔL̂ś ĉón̂t́âín̂ ém̂b́êd́d̂éd̂ ćr̂éd̂én̂t́îál̂ś (ê.ǵ. https://user:pass@host/) âŕê b́l̂óĉḱêd́."
1489
1462
  },
@@ -1517,6 +1490,9 @@
1517
1490
  "models/issues_manager/DeprecationIssue.ts | v8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
1518
1491
  "message": "Êx́t̂én̂śîón̂ś ŝh́ôúl̂d́ ôṕt̂ ín̂t́ô ćr̂óŝś-ôŕîǵîń îśôĺât́îón̂ t́ô ćôńt̂ín̂úê úŝín̂ǵ SharedArrayBuffer. Ŝéê h́t̂t́p̂ś://d̂év̂él̂óp̂ér̂.ćĥŕôḿê.ćôḿ/d̂óĉś/êx́t̂én̂śîón̂ś/m̂v́3/ĉŕôśŝ-ór̂íĝín̂-íŝól̂át̂íôń/."
1519
1492
  },
1493
+ "models/issues_manager/DeprecationIssue.ts | vendorSpecificApi": {
1494
+ "message": "{PH1} îś v̂én̂d́ôŕ-ŝṕêćîf́îć. P̂ĺêáŝé ûśê t́ĥé ŝt́âńd̂ár̂d́ {PH2} îńŝt́êád̂."
1495
+ },
1520
1496
  "models/issues_manager/DeprecationIssue.ts | xhrJSONEncodingDetection": {
1521
1497
  "message": "ÛT́F̂-16 íŝ ńôt́ ŝúp̂ṕôŕt̂éd̂ b́ŷ ŕêśp̂ón̂śê j́ŝón̂ ín̂ XMLHttpRequest"
1522
1498
  },
@@ -5537,6 +5513,9 @@
5537
5513
  "panels/issues/AttributionReportingIssueDetailsView.ts | frame": {
5538
5514
  "message": "F̂ŕâḿê"
5539
5515
  },
5516
+ "panels/issues/AttributionReportingIssueDetailsView.ts | invalidHeaderValue": {
5517
+ "message": "Îńv̂ál̂íd̂ H́êád̂ér̂ V́âĺûé"
5518
+ },
5540
5519
  "panels/issues/AttributionReportingIssueDetailsView.ts | nViolations": {
5541
5520
  "message": "{n, plural, =1 {# v̂íôĺât́îón̂} other {# v́îól̂át̂íôńŝ}}"
5542
5521
  },
@@ -7046,6 +7025,9 @@
7046
7025
  "panels/network/NetworkLogView.ts | copyStacktrace": {
7047
7026
  "message": "Ĉóp̂ý ŝt́âćk̂ t́r̂áĉé"
7048
7027
  },
7028
+ "panels/network/NetworkLogView.ts | createResponseHeaderOverride": {
7029
+ "message": "Ĉŕêát̂é r̂éŝṕôńŝé ĥéâd́êŕ ôv́êŕr̂íd̂é"
7030
+ },
7049
7031
  "panels/network/NetworkLogView.ts | domcontentloadedS": {
7050
7032
  "message": "D̂ÓM̂Ćôńt̂én̂t́L̂óâd́êd́: {PH1}"
7051
7033
  },
@@ -10445,9 +10427,6 @@
10445
10427
  "panels/timeline/TimelineFlameChartDataProvider.ts | idleFrame": {
10446
10428
  "message": "Îd́l̂é F̂ŕâḿê"
10447
10429
  },
10448
- "panels/timeline/TimelineFlameChartDataProvider.ts | interactions": {
10449
- "message": "Îńt̂ér̂áĉt́îón̂ś"
10450
- },
10451
10430
  "panels/timeline/TimelineFlameChartDataProvider.ts | longFrame": {
10452
10431
  "message": "L̂ón̂ǵ f̂ŕâḿê"
10453
10432
  },
@@ -12518,6 +12497,12 @@
12518
12497
  "ui/legacy/InspectorView.ts | reloadDevtools": {
12519
12498
  "message": "R̂él̂óâd́ D̂év̂T́ôól̂ś"
12520
12499
  },
12500
+ "ui/legacy/InspectorView.ts | selectFolder": {
12501
+ "message": "Ŝél̂éĉt́ f̂ól̂d́êŕ"
12502
+ },
12503
+ "ui/legacy/InspectorView.ts | selectOverrideFolder": {
12504
+ "message": "Ŝél̂éĉt́ â f́ôĺd̂ér̂ t́ô śt̂ór̂é ôv́êŕr̂íd̂é f̂íl̂éŝ ín̂."
12505
+ },
12521
12506
  "ui/legacy/InspectorView.ts | setToBrowserLanguage": {
12522
12507
  "message": "Âĺŵáŷś m̂át̂ćĥ Ćĥŕôḿê'ś l̂án̂ǵûáĝé"
12523
12508
  },
@@ -203,17 +203,18 @@ export class TracingModel {
203
203
  this.#minimumRecordTimeInternal = timestamp;
204
204
  }
205
205
 
206
- // Track only main thread navigation start items. This is done by tracking isLoadingMainFrame,
207
- // and whether documentLoaderURL is set.
206
+ // Track only main thread navigation start items. This is done by tracking
207
+ // isOutermostMainFrame, and whether documentLoaderURL is set.
208
208
  if (payload.name === 'navigationStart') {
209
209
  const data = (payload.args.data as {
210
210
  isLoadingMainFrame: boolean,
211
211
  documentLoaderURL: string,
212
212
  navigationId: string,
213
+ isOutermostMainFrame?: boolean,
213
214
  } | null);
214
215
  if (data) {
215
- const {isLoadingMainFrame, documentLoaderURL, navigationId} = data;
216
- if (isLoadingMainFrame && documentLoaderURL !== '') {
216
+ const {isLoadingMainFrame, documentLoaderURL, navigationId, isOutermostMainFrame} = data;
217
+ if ((isOutermostMainFrame ?? isLoadingMainFrame) && documentLoaderURL !== '') {
217
218
  const thread = process.threadById(payload.tid);
218
219
  const navStartEvent = Event.fromPayload(payload, thread);
219
220
  this.#mainFrameNavStartTimes.set(navigationId, navStartEvent);
@@ -416,6 +416,7 @@
416
416
  RecordingEdited: 'DevTools.RecordingEdited',
417
417
  RecordingExported: 'DevTools.RecordingExported',
418
418
  RecordingReplayFinished: 'DevTools.RecordingReplayFinished',
419
+ RecordingReplaySpeed: 'DevTools.RecordingReplaySpeed',
419
420
  RecordingReplayStarted: 'DevTools.RecordingReplayStarted',
420
421
  RecordingToggled: 'DevTools.RecordingToggled',
421
422
  SyncSetting: 'DevTools.SyncSetting',
@@ -407,6 +407,7 @@ export class MainImpl {
407
407
  Root.Runtime.ExperimentName.SYNC_SETTINGS,
408
408
  Root.Runtime.ExperimentName.CSS_LAYERS,
409
409
  Root.Runtime.ExperimentName.EYEDROPPER_COLOR_PICKER,
410
+ 'lighthousePanelFR',
410
411
  ]);
411
412
 
412
413
  Root.Runtime.experiments.cleanUpStaleExperiments();
@@ -3348,7 +3348,8 @@ export function registerCommands(inspectorBackend) {
3348
3348
  [
3349
3349
  {'name': 'reportProgress', 'type': 'boolean', 'optional': true},
3350
3350
  {'name': 'treatGlobalObjectsAsRoots', 'type': 'boolean', 'optional': true},
3351
- {'name': 'captureNumericValue', 'type': 'boolean', 'optional': true}
3351
+ {'name': 'captureNumericValue', 'type': 'boolean', 'optional': true},
3352
+ {'name': 'exposeInternals', 'type': 'boolean', 'optional': true}
3352
3353
  ],
3353
3354
  []);
3354
3355
  inspectorBackend.registerCommand(
@@ -3356,7 +3357,8 @@ export function registerCommands(inspectorBackend) {
3356
3357
  [
3357
3358
  {'name': 'reportProgress', 'type': 'boolean', 'optional': true},
3358
3359
  {'name': 'treatGlobalObjectsAsRoots', 'type': 'boolean', 'optional': true},
3359
- {'name': 'captureNumericValue', 'type': 'boolean', 'optional': true}
3360
+ {'name': 'captureNumericValue', 'type': 'boolean', 'optional': true},
3361
+ {'name': 'exposeInternals', 'type': 'boolean', 'optional': true}
3360
3362
  ],
3361
3363
  []);
3362
3364
 
@@ -486,11 +486,11 @@ export const generatedProperties = [
486
486
  {'name': 'forced-color-adjust', 'inherited': true, 'keywords': ['auto', 'none', 'preserve-parent-color']},
487
487
  {'longhands': ['row-gap', 'column-gap'], 'name': 'gap'},
488
488
  {
489
- 'name': 'grid',
490
489
  'longhands': [
491
490
  'grid-template-rows', 'grid-template-columns', 'grid-template-areas', 'grid-auto-flow', 'grid-auto-rows',
492
491
  'grid-auto-columns'
493
- ]
492
+ ],
493
+ 'name': 'grid'
494
494
  },
495
495
  {'longhands': ['grid-row-start', 'grid-column-start', 'grid-row-end', 'grid-column-end'], 'name': 'grid-area'},
496
496
  {'name': 'grid-auto-columns', 'keywords': ['auto', 'min-content', 'max-content']},
@@ -505,7 +505,7 @@ export const generatedProperties = [
505
505
  {'name': 'grid-row-end', 'keywords': ['auto']},
506
506
  {'longhands': ['row-gap'], 'name': 'grid-row-gap'},
507
507
  {'name': 'grid-row-start', 'keywords': ['auto']},
508
- {'name': 'grid-template', 'longhands': ['grid-template-rows', 'grid-template-columns', 'grid-template-areas']},
508
+ {'longhands': ['grid-template-rows', 'grid-template-columns', 'grid-template-areas'], 'name': 'grid-template'},
509
509
  {'keywords': ['none'], 'name': 'grid-template-areas'},
510
510
  {'name': 'grid-template-columns', 'keywords': ['none']},
511
511
  {'name': 'grid-template-rows', 'keywords': ['none']},
@@ -589,7 +589,6 @@ export const generatedProperties = [
589
589
  },
590
590
  {'name': 'negative'},
591
591
  {'name': 'object-fit', 'keywords': ['fill', 'contain', 'cover', 'none', 'scale-down']},
592
- {'name': 'object-overflow', 'keywords': ['clip', 'visible']},
593
592
  {'name': 'object-position'},
594
593
  {'name': 'object-view-box', 'keywords': ['none']},
595
594
  {
@@ -1101,7 +1100,6 @@ export const generatedPropertyValues = {
1101
1100
  ]
1102
1101
  },
1103
1102
  'object-fit': {'values': ['fill', 'contain', 'cover', 'none', 'scale-down']},
1104
- 'object-overflow': {'values': ['clip', 'visible']},
1105
1103
  'object-view-box': {'values': ['none']},
1106
1104
  'offset-anchor': {'values': ['auto']},
1107
1105
  'offset-path': {'values': ['none']},
@@ -15414,7 +15414,7 @@ export namespace Debugger {
15414
15414
  */
15415
15415
  executionContextId: Runtime.ExecutionContextId;
15416
15416
  /**
15417
- * Content hash of the script.
15417
+ * Content hash of the script, SHA-256.
15418
15418
  */
15419
15419
  hash: string;
15420
15420
  /**
@@ -15489,7 +15489,7 @@ export namespace Debugger {
15489
15489
  */
15490
15490
  executionContextId: Runtime.ExecutionContextId;
15491
15491
  /**
15492
- * Content hash of the script.
15492
+ * Content hash of the script, SHA-256.
15493
15493
  */
15494
15494
  hash: string;
15495
15495
  /**
@@ -15663,11 +15663,18 @@ export namespace HeapProfiler {
15663
15663
  * when the tracking is stopped.
15664
15664
  */
15665
15665
  reportProgress?: boolean;
15666
+ /**
15667
+ * Deprecated in favor of `exposeInternals`.
15668
+ */
15666
15669
  treatGlobalObjectsAsRoots?: boolean;
15667
15670
  /**
15668
15671
  * If true, numerical values are included in the snapshot
15669
15672
  */
15670
15673
  captureNumericValue?: boolean;
15674
+ /**
15675
+ * If true, exposes internals of the snapshot.
15676
+ */
15677
+ exposeInternals?: boolean;
15671
15678
  }
15672
15679
 
15673
15680
  export interface TakeHeapSnapshotRequest {
@@ -15676,13 +15683,18 @@ export namespace HeapProfiler {
15676
15683
  */
15677
15684
  reportProgress?: boolean;
15678
15685
  /**
15679
- * If true, a raw snapshot without artificial roots will be generated
15686
+ * If true, a raw snapshot without artificial roots will be generated.
15687
+ * Deprecated in favor of `exposeInternals`.
15680
15688
  */
15681
15689
  treatGlobalObjectsAsRoots?: boolean;
15682
15690
  /**
15683
15691
  * If true, numerical values are included in the snapshot
15684
15692
  */
15685
15693
  captureNumericValue?: boolean;
15694
+ /**
15695
+ * If true, exposes internals of the snapshot.
15696
+ */
15697
+ exposeInternals?: boolean;
15686
15698
  }
15687
15699
 
15688
15700
  export interface AddHeapSnapshotChunkEvent {
@@ -16625,7 +16637,9 @@ export namespace Runtime {
16625
16637
  */
16626
16638
  throwOnSideEffect?: boolean;
16627
16639
  /**
16628
- * Whether the result should be serialized according to https://w3c.github.io/webdriver-bidi.
16640
+ * Whether the result should contain `webDriverValue`, serialized according to
16641
+ * https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
16642
+ * resulting `objectId` is still provided.
16629
16643
  */
16630
16644
  generateWebDriverValue?: boolean;
16631
16645
  }
@@ -84,7 +84,10 @@ export class AttributionReportingIssue extends Issue<IssueCode> {
84
84
  links: [],
85
85
  };
86
86
  case IssueCode.InvalidHeader:
87
- return null;
87
+ return {
88
+ file: 'arInvalidHeader.md',
89
+ links: [],
90
+ };
88
91
  }
89
92
  }
90
93