chrome-devtools-frontend 1.0.1516909 → 1.0.1518653

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 (94) hide show
  1. package/docs/checklist/README.md +2 -2
  2. package/docs/checklist/javascript.md +1 -1
  3. package/docs/contributing/README.md +1 -1
  4. package/docs/contributing/settings-experiments-features.md +9 -8
  5. package/docs/cookbook/devtools_on_devtools.md +2 -2
  6. package/docs/cookbook/localization.md +10 -10
  7. package/docs/devtools-protocol.md +9 -8
  8. package/docs/ecosystem/automatic_workspace_folders.md +3 -3
  9. package/docs/get_the_code.md +0 -2
  10. package/docs/styleguide/ux/components.md +166 -85
  11. package/docs/styleguide/ux/numbers.md +3 -4
  12. package/front_end/core/common/README.md +13 -12
  13. package/front_end/core/host/GdpClient.ts +16 -1
  14. package/front_end/core/host/UserMetrics.ts +4 -2
  15. package/front_end/core/root/Runtime.ts +13 -0
  16. package/front_end/core/sdk/CSSMatchedStyles.ts +5 -1
  17. package/front_end/entrypoints/main/MainImpl.ts +6 -3
  18. package/front_end/generated/InspectorBackendCommands.js +10 -7
  19. package/front_end/generated/SupportedCSSProperties.js +21 -7
  20. package/front_end/generated/protocol-mapping.d.ts +16 -1
  21. package/front_end/generated/protocol-proxy-api.d.ts +13 -1
  22. package/front_end/generated/protocol.ts +95 -0
  23. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +166 -49
  24. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +14 -181
  25. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +13 -315
  26. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +224 -50
  27. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +310 -11
  28. package/front_end/models/ai_assistance/performance/AIContext.ts +15 -2
  29. package/front_end/models/ai_code_completion/AiCodeCompletion.ts +17 -11
  30. package/front_end/models/badges/Badge.ts +8 -3
  31. package/front_end/models/badges/CodeWhispererBadge.ts +2 -4
  32. package/front_end/models/badges/StarterBadge.ts +2 -2
  33. package/front_end/models/badges/UserBadges.ts +21 -3
  34. package/front_end/models/javascript_metadata/NativeFunctions.js +1 -1
  35. package/front_end/models/trace/README.md +28 -1
  36. package/front_end/models/trace/handlers/UserTimingsHandler.ts +1 -1
  37. package/front_end/models/trace/helpers/Trace.ts +99 -43
  38. package/front_end/models/trace/types/TraceEvents.ts +9 -0
  39. package/front_end/panels/accessibility/ARIAAttributesView.ts +113 -191
  40. package/front_end/panels/accessibility/AccessibilityNodeView.ts +9 -9
  41. package/front_end/panels/accessibility/AccessibilitySubPane.ts +6 -4
  42. package/front_end/panels/accessibility/accessibilityProperties.css +2 -0
  43. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +16 -2
  44. package/front_end/panels/ai_assistance/components/ChatView.ts +9 -10
  45. package/front_end/panels/ai_assistance/components/PerformanceAgentMarkdownRenderer.ts +42 -0
  46. package/front_end/panels/common/AiCodeCompletionDisclaimer.ts +32 -9
  47. package/front_end/panels/common/AiCodeCompletionSummaryToolbar.ts +7 -1
  48. package/front_end/panels/common/BadgeNotification.ts +21 -5
  49. package/front_end/panels/common/GdpSignUpDialog.ts +18 -9
  50. package/front_end/panels/console/ConsolePrompt.ts +1 -1
  51. package/front_end/panels/console/ConsoleView.ts +6 -2
  52. package/front_end/panels/elements/ElementsPanel.ts +4 -0
  53. package/front_end/panels/elements/ElementsTreeElement.ts +18 -0
  54. package/front_end/panels/elements/ElementsTreeOutline.ts +13 -0
  55. package/front_end/panels/elements/StylePropertyTreeElement.ts +21 -6
  56. package/front_end/panels/media/TickingFlameChart.ts +1 -1
  57. package/front_end/panels/profiler/HeapSnapshotView.ts +34 -19
  58. package/front_end/panels/search/SearchResultsPane.ts +124 -128
  59. package/front_end/panels/search/SearchView.ts +24 -17
  60. package/front_end/panels/settings/components/SyncSection.ts +16 -8
  61. package/front_end/panels/sources/AiCodeCompletionPlugin.ts +6 -1
  62. package/front_end/panels/sources/SourcesPanel.ts +3 -0
  63. package/front_end/panels/timeline/AppenderUtils.ts +2 -2
  64. package/front_end/panels/timeline/ExtensionTrackAppender.ts +13 -4
  65. package/front_end/panels/timeline/GPUTrackAppender.ts +2 -1
  66. package/front_end/panels/timeline/InteractionsTrackAppender.ts +5 -1
  67. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +2 -1
  68. package/front_end/panels/timeline/ThreadAppender.ts +12 -3
  69. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +9 -4
  70. package/front_end/panels/timeline/TimelinePanel.ts +3 -2
  71. package/front_end/panels/timeline/TimelineUIUtils.ts +5 -4
  72. package/front_end/panels/timeline/TimingsTrackAppender.ts +6 -1
  73. package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +95 -82
  74. package/front_end/panels/timeline/components/LiveMetricsView.ts +2 -2
  75. package/front_end/panels/timeline/components/cpuThrottlingSelector.css +17 -15
  76. package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +3 -0
  77. package/front_end/third_party/chromium/README.chromium +1 -1
  78. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  79. package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
  80. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +6 -9
  81. package/front_end/third_party/codemirror.next/package.json +2 -1
  82. package/front_end/third_party/diff/README.chromium +1 -0
  83. package/front_end/ui/components/text_editor/config.ts +6 -7
  84. package/front_end/ui/components/tooltips/Tooltip.ts +70 -31
  85. package/front_end/ui/legacy/README.md +33 -24
  86. package/front_end/ui/legacy/SearchableView.ts +19 -26
  87. package/front_end/ui/legacy/TextPrompt.ts +166 -1
  88. package/front_end/ui/legacy/Treeoutline.ts +16 -2
  89. package/front_end/ui/legacy/UIUtils.ts +15 -2
  90. package/front_end/ui/legacy/XElement.ts +0 -43
  91. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +20 -4
  92. package/front_end/ui/visual_logging/KnownContextValues.ts +19 -6
  93. package/front_end/ui/visual_logging/README.md +43 -27
  94. package/package.json +1 -1
@@ -9,6 +9,7 @@ This insight is used to analyze the time spent that contributed to the final LCP
9
9
  The Largest Contentful Paint (LCP) time for this navigation was 240 ms.
10
10
  The LCP element (IMG) is an image fetched from `https://creativetouchrotherham.co.uk/images/creative-touch-home/creative_touch_rotherham_homehero/creative_touch_rotherham_homehero_700.webp`.
11
11
  ## LCP resource network request: https://creativetouchrotherham.co.uk/images/creative-touch-home/creative_touch_rotherham_homehero/creative_touch_rotherham_homehero_700.webp
12
+ eventKey: s-1418
12
13
  Timings:
13
14
  - Queued at: 55 ms
14
15
  - Request sent at: 60 ms
@@ -69,6 +70,7 @@ This insight is used to analyze the time spent that contributed to the final LCP
69
70
  The Largest Contentful Paint (LCP) time for this navigation was 129 ms.
70
71
  The LCP element is an image fetched from `https://web-dev.imgix.net/image/kheDArv5csY6rvQUJDbWRscckLr1/4i7JstVZvgTFk9dxCe4a.svg`.
71
72
  ## LCP resource network request: https://web-dev.imgix.net/image/kheDArv5csY6rvQUJDbWRscckLr1/4i7JstVZvgTFk9dxCe4a.svg
73
+ eventKey: s-1314
72
74
  Timings:
73
75
  - Queued at: 41 ms
74
76
  - Request sent at: 47 ms
@@ -159,9 +161,9 @@ Network requests data:
159
161
 
160
162
  allUrls = [0: https://code.jquery.com/jquery-3.7.1.js, 1: http://localhost:8000/, 2: http://localhost:8000/render-blocking-stylesheet.css, 3: http://localhost:8000/render-blocking-script.js]
161
163
 
162
- 0;581 ms;585 ms;1,943 ms;1,944 ms;1,363 ms;776 ms;1 ms;200;application/javascript;High;High;High;t;h2;f;1;[];[content-encoding: gzip|etag: <redacted>|age: 3975412|x-cache: <redacted>|date: Fri, 07 Mar 2025 15:02:28 GMT|content-type: application/javascript; charset=utf-8|vary: Accept-Encoding|x-cache-hits: <redacted>|last-modified: Fri, 18 Oct 1991 12:00:00 GMT|x-served-by: <redacted>|cache-control: public, max-age=31536000, stale-while-revalidate=604800|x-timer: <redacted>|via: 1.1 varnish, 1.1 varnish|accept-ranges: bytes|access-control-allow-origin: *|content-length: <redacted>|server: nginx]
163
- 2;582 ms;583 ms;1,193 ms;1,193 ms;612 ms;0.2 ms;0.2 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;http/1.0;f;1;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:28 GMT|Content-type: text/css|Last-Modified: Fri, 07 Mar 2025 14:58:07 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
164
- 3;582 ms;583 ms;1,177 ms;1,178 ms;596 ms;0.4 ms;1 ms;200;text/javascript;High;High;High;t;http/1.0;f;1;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:28 GMT|Content-type: text/javascript|Last-Modified: Fri, 07 Mar 2025 15:00:28 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
164
+ 0;s-1920;581 ms;585 ms;1,943 ms;1,944 ms;1,363 ms;776 ms;1 ms;200;application/javascript;High;High;High;t;h2;f;1;[];[content-encoding: gzip|etag: <redacted>|age: 3975412|x-cache: <redacted>|date: Fri, 07 Mar 2025 15:02:28 GMT|content-type: application/javascript; charset=utf-8|vary: Accept-Encoding|x-cache-hits: <redacted>|last-modified: Fri, 18 Oct 1991 12:00:00 GMT|x-served-by: <redacted>|cache-control: public, max-age=31536000, stale-while-revalidate=604800|x-timer: <redacted>|via: 1.1 varnish, 1.1 varnish|accept-ranges: bytes|access-control-allow-origin: *|content-length: <redacted>|server: nginx]
165
+ 2;s-1924;582 ms;583 ms;1,193 ms;1,193 ms;612 ms;0.2 ms;0.2 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;http/1.0;f;1;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:28 GMT|Content-type: text/css|Last-Modified: Fri, 07 Mar 2025 14:58:07 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
166
+ 3;s-1922;582 ms;583 ms;1,177 ms;1,178 ms;596 ms;0.4 ms;1 ms;200;text/javascript;High;High;High;t;http/1.0;f;1;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:28 GMT|Content-type: text/javascript|Last-Modified: Fri, 07 Mar 2025 15:00:28 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
165
167
 
166
168
  ## Estimated savings: FCP 2015 ms, LCP 0 ms
167
169
 
@@ -186,6 +188,7 @@ It is important that all of these checks pass to minimize the delay between the
186
188
  The Largest Contentful Paint (LCP) time for this navigation was 1,077 ms.
187
189
  The LCP element is an image fetched from `http://localhost:8787/lcp-discovery-delay/lcp-image.jpg`.
188
190
  ## LCP resource network request: http://localhost:8787/lcp-discovery-delay/lcp-image.jpg
191
+ eventKey: s-25281
189
192
  Timings:
190
193
  - Queued at: 1,010 ms
191
194
  - Request sent at: 1,011 ms
@@ -243,6 +246,7 @@ The Largest Contentful Paint (LCP) time for this navigation was 3,604 ms.
243
246
  The LCP element is text and was not fetched from the network.
244
247
 
245
248
  ## Document network request: http://localhost:3000/redirect3
249
+ eventKey: s-9843
246
250
  Timings:
247
251
  - Queued at: 3 ms
248
252
  - Request sent at: 1,529 ms
@@ -413,13 +417,13 @@ Network requests data:
413
417
 
414
418
  allUrls = [0: https://ads.jetpackdigital.com/sites/_uploads/1742278386bg_opt_640x350-avif.avif, 1: http://localhost/old-http.html, 2: https://ads.jetpackdigital.com/sites/_uploads/1583540859Play.png, 3: https://ads.jetpackdigital.com/sites/_uploads/1583540859Muted.png, 4: https://ads.jetpackdigital.com/h5media/sites/_uploads/1742363510mm_allthefeels_20_mob.mp4, 5: https://ads.jetpackdigital.com/sites/_uploads/1583540860Pause.png, 6: https://ads.jetpackdigital.com/tracking_pixel.gif?8852762616, 7: https://ads.jetpackdigital.com/tracking_pixel.gif?7753243273]
415
419
 
416
- 0;8 ms;12 ms;26 ms;26 ms;18 ms;2 ms;93 μs;200;image/avif;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|ETag: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 18 Mar 2025 06:13:07 GMT|Content-Type: image/avif|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
417
- 2;8 ms;13 ms;24 ms;24 ms;16 ms;0.6 ms;0.3 ms;200;image/png;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|ETag: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 24 Jan 2023 19:05:17 GMT|Content-Type: image/png|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
418
- 3;8 ms;13 ms;25 ms;25 ms;17 ms;1 ms;0.3 ms;200;image/png;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|ETag: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 24 Jan 2023 19:05:17 GMT|Content-Type: image/png|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
419
- 4;8 ms;13 ms;24 ms;24 ms;16 ms;0.4 ms;11 μs;200;video/mp4;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|ETag: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Wed, 19 Mar 2025 05:51:52 GMT|Content-Type: video/mp4|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
420
- 5;8 ms;13 ms;25 ms;25 ms;17 ms;1 ms;0.3 ms;200;image/png;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|ETag: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 24 Jan 2023 19:05:18 GMT|Content-Type: image/png|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
421
- 6;8 ms;24 ms;39 ms;39 ms;30 ms;0.1 ms;0.2 ms;200;image/gif;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|x-amz-meta-jets3t-original-file-date-iso8601: <redacted>|ETag: <redacted>|x-amz-meta-md5-hash: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 24 Jan 2023 19:54:47 GMT|Content-Type: image/gif|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
422
- 7;8 ms;25 ms;38 ms;38 ms;30 ms;0.2 ms;0.2 ms;200;image/gif;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|x-amz-meta-jets3t-original-file-date-iso8601: <redacted>|ETag: <redacted>|x-amz-meta-md5-hash: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 24 Jan 2023 19:54:47 GMT|Content-Type: image/gif|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
420
+ 0;s-1285;8 ms;12 ms;26 ms;26 ms;18 ms;2 ms;93 μs;200;image/avif;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|ETag: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 18 Mar 2025 06:13:07 GMT|Content-Type: image/avif|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
421
+ 2;s-1298;8 ms;13 ms;24 ms;24 ms;16 ms;0.6 ms;0.3 ms;200;image/png;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|ETag: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 24 Jan 2023 19:05:17 GMT|Content-Type: image/png|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
422
+ 3;s-1312;8 ms;13 ms;25 ms;25 ms;17 ms;1 ms;0.3 ms;200;image/png;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|ETag: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 24 Jan 2023 19:05:17 GMT|Content-Type: image/png|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
423
+ 4;s-1329;8 ms;13 ms;24 ms;24 ms;16 ms;0.4 ms;11 μs;200;video/mp4;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|ETag: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Wed, 19 Mar 2025 05:51:52 GMT|Content-Type: video/mp4|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
424
+ 5;s-1336;8 ms;13 ms;25 ms;25 ms;17 ms;1 ms;0.3 ms;200;image/png;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|ETag: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 24 Jan 2023 19:05:18 GMT|Content-Type: image/png|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
425
+ 6;s-1338;8 ms;24 ms;39 ms;39 ms;30 ms;0.1 ms;0.2 ms;200;image/gif;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|x-amz-meta-jets3t-original-file-date-iso8601: <redacted>|ETag: <redacted>|x-amz-meta-md5-hash: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 24 Jan 2023 19:54:47 GMT|Content-Type: image/gif|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
426
+ 7;s-1341;8 ms;25 ms;38 ms;38 ms;30 ms;0.2 ms;0.2 ms;200;image/gif;Low;Low;Low;f;http/1.1;f;1;[];[x-amz-id-2: <redacted>|x-amz-meta-jets3t-original-file-date-iso8601: <redacted>|ETag: <redacted>|x-amz-meta-md5-hash: <redacted>|Connection: keep-alive|Access-Control-Allow-Methods: GET,HEAD,POST|x-amz-request-id: <redacted>|Accept-Ranges: bytes|Access-Control-Allow-Origin: *|Content-Length: <redacted>|Date: Thu, 20 Mar 2025 19:45:22 GMT|Last-Modified: Tue, 24 Jan 2023 19:54:47 GMT|Content-Type: image/gif|Server: AmazonS3|x-amz-server-side-encryption: <redacted>]
423
427
 
424
428
  ## Estimated savings: FCP 0 ms, LCP 0 ms
425
429
 
@@ -427,177 +431,6 @@ allUrls = [0: https://ads.jetpackdigital.com/sites/_uploads/1742278386bg_opt_640
427
431
  - https://developer.chrome.com/docs/lighthouse/best-practices/uses-http2
428
432
  === end content
429
433
 
430
- Title: PerformanceInsightFormatter Formatting TraceEvents formats network requests that have redirects
431
- Content:
432
- ## Network request: http://localhost:3000/redirect3
433
- Timings:
434
- - Queued at: 3 ms
435
- - Request sent at: 1,529 ms
436
- - Download complete at: 3,533 ms
437
- - Main thread processing completed at: 3,538 ms
438
- Durations:
439
- - Download time: 0.1 ms
440
- - Main thread processing time: 5 ms
441
- - Total duration: 3,535 ms
442
- Redirects:
443
- #### Redirect 1: http://localhost:3000/
444
- - Start time: 3 ms
445
- - Duration: 512 ms
446
- #### Redirect 2: http://localhost:3000/redirect1
447
- - Start time: 515 ms
448
- - Duration: 506 ms
449
- #### Redirect 3: http://localhost:3000/redirect2
450
- - Start time: 1,021 ms
451
- - Duration: 507 ms
452
- Status code: 200
453
- MIME Type: text/html
454
- Protocol: http/1.1
455
- Priority: VeryHigh
456
- Render blocking: No
457
- From a service worker: No
458
- Initiators (root request to the request that directly loaded this one): none
459
- Response headers
460
- - Transfer-Encoding: chunked
461
- - Keep-Alive: <redacted>
462
- - Date: Tue, 11 Mar 2025 10:19:12 GMT
463
- - Content-Type: text/html
464
- - Connection: keep-alive
465
- === end content
466
-
467
- Title: PerformanceInsightFormatter Formatting TraceEvents formats network requests in verbose mode
468
- Content:
469
- ## Network request: https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,800
470
- Timings:
471
- - Queued at: 38 ms
472
- - Request sent at: 42 ms
473
- - Download complete at: 48 ms
474
- - Main thread processing completed at: 52 ms
475
- Durations:
476
- - Download time: 5 ms
477
- - Main thread processing time: 4 ms
478
- - Total duration: 14 ms
479
- Initiator: https://chromedevtools.github.io/performance-stories/lcp-large-image/index.html
480
- Redirects: no redirects
481
- Status code: 200
482
- MIME Type: text/css
483
- Protocol: unknown
484
- Priority: VeryHigh
485
- Render blocking: Yes
486
- From a service worker: No
487
- Initiators (root request to the request that directly loaded this one): https://chromedevtools.github.io/performance-stories/lcp-large-image/index.html
488
- Response headers
489
- - date: Thu, 07 Mar 2024 21:17:02 GMT
490
- - content-encoding: gzip
491
- - x-content-type-options: nosniff
492
- - last-modified: Thu, 07 Mar 2024 21:17:02 GMT
493
- - server: ESF
494
- - cross-origin-opener-policy: <redacted>
495
- - x-frame-options: SAMEORIGIN
496
- - content-type: text/css; charset=utf-8
497
- - access-control-allow-origin: *
498
- - cache-control: private, max-age=86400, stale-while-revalidate=604800
499
- - cross-origin-resource-policy: <redacted>
500
- - timing-allow-origin: *
501
- - link: <https://fonts.gstatic.com>; rel=preconnect; crossorigin
502
- - x-xss-protection: 0
503
- - expires: Thu, 07 Mar 2024 21:17:02 GMT
504
- === end content
505
-
506
- Title: PerformanceInsightFormatter Formatting TraceEvents defaults to verbose mode when 1 request and verbose option is not defined
507
- Content:
508
- ## Network request: https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,800
509
- Timings:
510
- - Queued at: 38 ms
511
- - Request sent at: 42 ms
512
- - Download complete at: 48 ms
513
- - Main thread processing completed at: 52 ms
514
- Durations:
515
- - Download time: 5 ms
516
- - Main thread processing time: 4 ms
517
- - Total duration: 14 ms
518
- Initiator: https://chromedevtools.github.io/performance-stories/lcp-large-image/index.html
519
- Redirects: no redirects
520
- Status code: 200
521
- MIME Type: text/css
522
- Protocol: unknown
523
- Priority: VeryHigh
524
- Render blocking: Yes
525
- From a service worker: No
526
- Initiators (root request to the request that directly loaded this one): https://chromedevtools.github.io/performance-stories/lcp-large-image/index.html
527
- Response headers
528
- - date: Thu, 07 Mar 2024 21:17:02 GMT
529
- - content-encoding: gzip
530
- - x-content-type-options: nosniff
531
- - last-modified: Thu, 07 Mar 2024 21:17:02 GMT
532
- - server: ESF
533
- - cross-origin-opener-policy: <redacted>
534
- - x-frame-options: SAMEORIGIN
535
- - content-type: text/css; charset=utf-8
536
- - access-control-allow-origin: *
537
- - cache-control: private, max-age=86400, stale-while-revalidate=604800
538
- - cross-origin-resource-policy: <redacted>
539
- - timing-allow-origin: *
540
- - link: <https://fonts.gstatic.com>; rel=preconnect; crossorigin
541
- - x-xss-protection: 0
542
- - expires: Thu, 07 Mar 2024 21:17:02 GMT
543
- === end content
544
-
545
- Title: PerformanceInsightFormatter Formatting TraceEvents formats in compressed mode if a request is duplicated in the array
546
- Content:
547
- Network requests data:
548
-
549
-
550
-
551
- allUrls = [0: http://localhost:3000/redirect3, 1: http://localhost:3000/, 2: http://localhost:3000/redirect1, 3: http://localhost:3000/redirect2]
552
-
553
- 0;3 ms;1,529 ms;3,533 ms;3,538 ms;3,535 ms;0.1 ms;5 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;http/1.1;f;;[[1|3 ms|512 ms],[2|515 ms|506 ms],[3|1,021 ms|507 ms]];[Transfer-Encoding: chunked|Keep-Alive: <redacted>|Date: Tue, 11 Mar 2025 10:19:12 GMT|Content-Type: text/html|Connection: keep-alive]
554
- 0;3 ms;1,529 ms;3,533 ms;3,538 ms;3,535 ms;0.1 ms;5 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;http/1.1;f;;[[1|3 ms|512 ms],[2|515 ms|506 ms],[3|1,021 ms|507 ms]];[Transfer-Encoding: chunked|Keep-Alive: <redacted>|Date: Tue, 11 Mar 2025 10:19:12 GMT|Content-Type: text/html|Connection: keep-alive]
555
- === end content
556
-
557
- Title: PerformanceInsightFormatter Formatting TraceEvents correctly formats an initiator chain for network-requests-initiators trace
558
- Content:
559
- Network requests data:
560
-
561
-
562
-
563
- allUrls = [0: https://www.youtube.com/, 1: https://i.ytimg.com/generate_204, 2: https://www.youtube.com/s/desktop/28bb7000/jsbin/desktop_polymer.vflset/desktop_polymer.js, 3: https://www.youtube.com/s/desktop/28bb7000/jsbin/web-animations-next-lite.min.vflset/web-animations-next-lite.min.js, 4: https://www.youtube.com/s/desktop/28bb7000/jsbin/custom-elements-es5-adapter.vflset/custom-elements-es5-adapter.js, 5: https://www.youtube.com/s/desktop/28bb7000/jsbin/webcomponents-sd.vflset/webcomponents-sd.js, 6: https://www.youtube.com/s/desktop/28bb7000/jsbin/intersection-observer.min.vflset/intersection-observer.min.js, 7: https://www.youtube.com/s/desktop/28bb7000/jsbin/scheduler.vflset/scheduler.js, 8: https://www.youtube.com/s/desktop/28bb7000/jsbin/www-i18n-constants-en_US.vflset/www-i18n-constants.js, 9: https://www.youtube.com/s/desktop/28bb7000/jsbin/www-tampering.vflset/www-tampering.js, 10: https://www.youtube.com/s/desktop/28bb7000/jsbin/spf.vflset/spf.js, 11: https://www.youtube.com/s/desktop/28bb7000/jsbin/network.vflset/network.js, 12: https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=YouTube+Sans:wght@300..900&display=swap, 13: https://www.youtube.com/s/desktop/28bb7000/cssbin/www-main-desktop-home-page-skeleton.css, 14: https://www.youtube.com/s/desktop/28bb7000/cssbin/www-onepick.css, 15: https://www.youtube.com/s/_/ytmainappweb/_/ss/k=ytmainappweb.kevlar_base.YzCM3q0siy4.L.B1.O/am=ADA7AQ/d=0/br=1/rs=AGKMywG7cU8b38Gfv3WYn4_os7hoqR-TIw, 16: https://googleads.g.doubleclick.net/pagead/id?slf_rd=1, 17: https://googleads.g.doubleclick.net/pagead/id, 18: https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2, 19: https://www.youtube.com/s/search/audio/failure.mp3, 20: https://www.youtube.com/s/search/audio/no_input.mp3, 21: https://www.youtube.com/s/search/audio/open.mp3, 22: https://www.youtube.com/s/search/audio/success.mp3, 23: https://www.youtube.com/s/desktop/28bb7000/cssbin/www-main-desktop-watch-page-skeleton.css, 24: https://www.youtube.com/youtubei/v1/att/get?prettyPrint=false, 25: https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4.woff2, 26: https://fonts.gstatic.com/s/youtubesans/v30/Qw38ZQNGEDjaO2m6tqIqX5E-AVS5_rSejo46_PCTRspJ0OosolrBEJL3HO_T7fE.woff2, 27: https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fBBc4.woff2, 28: https://www.youtube.com/youtubei/v1/feedback?prettyPrint=false, 29: https://www.google.com/js/th/EirmVnnNlSgqRyHN1YLvHhRw11SWUqUPb76JYHphonQ.js, 30: https://www.youtube.com/manifest.webmanifest, 31: https://www.youtube.com/s/desktop/28bb7000/img/favicon.ico, 32: https://www.gstatic.com/youtube/img/branding/favicon/favicon_144x144.png, 33: https://www.youtube.com/s/player/5b22937f/player_ias.vflset/en_US/base.js, 34: https://www.youtube.com/s/player/5b22937f/www-player.css]
564
-
565
- 0;2 ms;11 ms;267 ms;281 ms;278 ms;189 ms;13 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;h2;t;;[];[date: Mon, 01 Jul 2024 08:58:55 GMT|content-encoding: br|x-content-type-options: nosniff|strict-transport-security: max-age=31536000|p3p: <redacted>|x-xss-protection: 0|pragma: no-cache|accept-ch: Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-WoW64, Sec-CH-UA-Form-Factors, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version|cross-origin-opener-policy: <redacted>|server: ESF|vary: Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-WoW64, Sec-CH-UA-Form-Factors, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version|report-to: {"group":"youtube_main","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube_main"}]}|content-type: text/html; charset=utf-8|x-frame-options: SAMEORIGIN|cache-control: no-cache, no-store, max-age=0, must-revalidate|origin-trial: <redacted>|permissions-policy: ch-ua-arch=*, ch-ua-bitness=*, ch-ua-full-version=*, ch-ua-full-version-list=*, ch-ua-model=*, ch-ua-wow64=*, ch-ua-form-factors=*, ch-ua-platform=*, ch-ua-platform-version=*|expires: Mon, 01 Jan 1990 00:00:00 GMT]
566
- 1;87 ms;146 ms;148 ms;149 ms;62 ms;1 ms;0.7 ms;204;text/plain;High;High;High;f;h2;f;0;[];[date: Mon, 01 Jul 2024 08:58:55 GMT|content-length: <redacted>|cross-origin-resource-policy: <redacted>]
567
- 2;87 ms;89 ms;170 ms;203 ms;115 ms;78 ms;33 ms;200;text/javascript;High;High;High;f;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
568
- 3;88 ms;89 ms;99 ms;102 ms;15 ms;7 ms;3 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
569
- 4;88 ms;102 ms;104 ms;107 ms;19 ms;0.5 ms;3 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
570
- 5;88 ms;108 ms;110 ms;113 ms;25 ms;0.9 ms;3 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
571
- 6;88 ms;113 ms;115 ms;122 ms;34 ms;0.6 ms;7 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
572
- 7;134 ms;134 ms;137 ms;140 ms;7 ms;0.9 ms;3 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
573
- 8;135 ms;140 ms;149 ms;151 ms;17 ms;4 ms;2 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 06:56:36 GMT|content-encoding: br|x-content-type-options: nosniff|age: 179740|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 06:56:36 GMT]
574
- 9;135 ms;141 ms;149 ms;153 ms;18 ms;3 ms;3 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
575
- 10;135 ms;141 ms;150 ms;154 ms;19 ms;3 ms;4 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 04:36:47 GMT|content-encoding: br|x-content-type-options: nosniff|age: 188129|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 04:36:47 GMT]
576
- 11;135 ms;141 ms;151 ms;168 ms;33 ms;3 ms;17 ms;200;text/javascript;High;High;High;t;h2;t;0;[];[date: Sat, 29 Jun 2024 04:36:47 GMT|content-encoding: br|x-content-type-options: nosniff|age: 188129|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 04:36:47 GMT]
577
- 12;136 ms;140 ms;143 ms;145 ms;10 ms;2 ms;2 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;h2;f;0;[];[date: Mon, 01 Jul 2024 08:52:16 GMT|content-encoding: gzip|x-content-type-options: nosniff|last-modified: Mon, 01 Jul 2024 07:19:04 GMT|server: ESF|cross-origin-opener-policy: <redacted>|x-frame-options: SAMEORIGIN|content-type: text/css; charset=utf-8|access-control-allow-origin: *|cache-control: private, max-age=86400, stale-while-revalidate=604800|cross-origin-resource-policy: <redacted>|timing-allow-origin: *|link: <https://fonts.gstatic.com>; rel=preconnect; crossorigin|x-xss-protection: 0|expires: Mon, 01 Jul 2024 08:52:16 GMT]
578
- 13;136 ms;140 ms;146 ms;146 ms;10 ms;4 ms;0.1 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;h2;t;0;[];[date: Sat, 29 Jun 2024 07:14:39 GMT|content-encoding: br|x-content-type-options: nosniff|age: 178657|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/css|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 07:14:39 GMT]
579
- 14;136 ms;140 ms;149 ms;149 ms;13 ms;6 ms;0.6 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;h2;t;0;[];[date: Sat, 29 Jun 2024 07:00:38 GMT|content-encoding: br|x-content-type-options: nosniff|age: 179498|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/css|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 07:00:38 GMT]
580
- 15;136 ms;140 ms;156 ms;167 ms;31 ms;11 ms;11 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;h2;t;0;[];[content-security-policy: require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/youtube-main-app-web-scs-key|content-encoding: br|x-content-type-options: nosniff|date: Sat, 29 Jun 2024 03:09:37 GMT|age: 193359|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 03:14:18 GMT|server: sffe|cross-origin-opener-policy: <redacted>|vary: Accept-Encoding|report-to: {"group":"youtube-main-app-web-scs-key","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube-main-app-web-scs-key"}]}|content-type: text/css; charset=UTF-8|cache-control: public, max-age=31536000|accept-ranges: bytes|expires: Sun, 29 Jun 2025 03:09:37 GMT]
581
- 16;663 ms;964 ms;969 ms;983 ms;321 ms;2 ms;14 ms;200;application/json;High;High;High;f;h3;f;0;[[17|663 ms|300 ms]];[date: Mon, 01 Jul 2024 08:58:56 GMT|content-encoding: gzip|x-content-type-options: nosniff|p3p: <redacted>|cross-origin-resource-policy: <redacted>|content-disposition: attachment; filename="f.txt"|alt-svc: h3=":443"; ma=2592000|content-length: <redacted>|x-xss-protection: 0|pragma: no-cache|server: cafe|content-type: application/json; charset=UTF-8|access-control-allow-origin: https://www.youtube.com|cache-control: no-cache, no-store, must-revalidate|access-control-allow-credentials: true|timing-allow-origin: *|expires: Fri, 01 Jan 1990 00:00:00 GMT]
582
- 18;795 ms;798 ms;800 ms;938 ms;142 ms;2 ms;138 ms;200;font/woff2;VeryHigh;VeryHigh;VeryHigh;f;h2;f;0,12;[];[date: Fri, 21 Jun 2024 11:22:06 GMT|x-content-type-options: nosniff|age: 269647|content-security-policy-report-only: <redacted>|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Wed, 11 May 2022 19:24:48 GMT|server: sffe|cross-origin-opener-policy: <redacted>|report-to: {"group":"apps-themes","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/apps-themes"}]}|content-type: font/woff2|access-control-allow-origin: *|cache-control: public, max-age=31536000|accept-ranges: bytes|timing-allow-origin: *|expires: Sat, 21 Jun 2025 11:22:06 GMT]
583
- 19;961 ms;965 ms;975 ms;984 ms;24 ms;6 ms;9 ms;206;audio/mpeg;Low;Low;Low;f;h2;f;0;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|x-content-type-options: nosniff|last-modified: Wed, 12 Jan 2022 21:08:00 GMT|server: sffe|report-to: {"group":"youtube-marketing","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube-marketing"}]}|content-type: audio/mpeg|Content-Range: bytes 0-6528/6529|cache-control: public, max-age=0|cross-origin-resource-policy: <redacted>|accept-ranges: bytes|Content-Length: <redacted>|x-xss-protection: 0|cross-origin-opener-policy-report-only: <redacted>|expires: Mon, 01 Jul 2024 08:58:56 GMT]
584
- 20;961 ms;965 ms;975 ms;987 ms;25 ms;2 ms;11 ms;206;audio/mpeg;Low;Low;Low;f;h2;f;0;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|x-content-type-options: nosniff|last-modified: Wed, 12 Jan 2022 21:08:00 GMT|server: sffe|report-to: {"group":"youtube-marketing","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube-marketing"}]}|content-type: audio/mpeg|Content-Range: bytes 0-6952/6953|cache-control: public, max-age=0|cross-origin-resource-policy: <redacted>|accept-ranges: bytes|Content-Length: <redacted>|x-xss-protection: 0|cross-origin-opener-policy-report-only: <redacted>|expires: Mon, 01 Jul 2024 08:58:56 GMT]
585
- 21;962 ms;966 ms;976 ms;985 ms;23 ms;4 ms;9 ms;206;audio/mpeg;Low;Low;Low;f;h2;f;0;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|x-content-type-options: nosniff|last-modified: Wed, 12 Jan 2022 21:08:00 GMT|server: sffe|report-to: {"group":"youtube-marketing","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube-marketing"}]}|content-type: audio/mpeg|Content-Range: bytes 0-6166/6167|cache-control: public, max-age=0|cross-origin-resource-policy: <redacted>|accept-ranges: bytes|Content-Length: <redacted>|x-xss-protection: 0|cross-origin-opener-policy-report-only: <redacted>|expires: Mon, 01 Jul 2024 08:58:56 GMT]
586
- 22;962 ms;966 ms;976 ms;986 ms;24 ms;3 ms;10 ms;206;audio/mpeg;Low;Low;Low;f;h2;f;0;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|x-content-type-options: nosniff|last-modified: Wed, 12 Jan 2022 21:08:00 GMT|server: sffe|report-to: {"group":"youtube-marketing","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube-marketing"}]}|content-type: audio/mpeg|Content-Range: bytes 0-6635/6636|cache-control: public, max-age=0|cross-origin-resource-policy: <redacted>|accept-ranges: bytes|Content-Length: <redacted>|x-xss-protection: 0|cross-origin-opener-policy-report-only: <redacted>|expires: Mon, 01 Jul 2024 08:58:56 GMT]
587
- 23;970 ms;971 ms;975 ms;981 ms;10 ms;3 ms;5 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;t;h2;t;0;[];[date: Sat, 29 Jun 2024 07:00:38 GMT|content-encoding: br|x-content-type-options: nosniff|age: 179498|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/css|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 07:00:38 GMT]
588
- 24;1,068 ms;1,070 ms;1,095 ms;1,257 ms;189 ms;2 ms;162 ms;200;application/json;High;High;High;f;h2;f;0,2;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|content-encoding: br|x-content-type-options: nosniff|server: scaffolding on HTTPServer2|x-frame-options: SAMEORIGIN|vary: Origin, X-Origin, Referer|content-type: application/json; charset=UTF-8|content-length: <redacted>|x-xss-protection: 0]
589
- 25;1,132 ms;1,134 ms;1,136 ms;1,185 ms;53 ms;2 ms;49 ms;200;font/woff2;VeryHigh;VeryHigh;VeryHigh;f;h2;f;0,12;[];[date: Fri, 21 Jun 2024 11:38:26 GMT|x-content-type-options: nosniff|age: 268667|content-security-policy-report-only: <redacted>|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Wed, 11 May 2022 19:24:42 GMT|server: sffe|cross-origin-opener-policy: <redacted>|report-to: {"group":"apps-themes","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/apps-themes"}]}|content-type: font/woff2|access-control-allow-origin: *|cache-control: public, max-age=31536000|accept-ranges: bytes|timing-allow-origin: *|expires: Sat, 21 Jun 2025 11:38:26 GMT]
590
- 26;1,173 ms;1,174 ms;1,176 ms;1,186 ms;13 ms;2 ms;9 ms;200;font/woff2;VeryHigh;VeryHigh;VeryHigh;f;h2;f;0,12;[];[date: Fri, 21 Jun 2024 11:49:35 GMT|x-content-type-options: nosniff|age: 267998|content-security-policy-report-only: <redacted>|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Tue, 16 Apr 2024 20:00:48 GMT|server: sffe|cross-origin-opener-policy: <redacted>|report-to: {"group":"apps-themes","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/apps-themes"}]}|content-type: font/woff2|access-control-allow-origin: *|cache-control: public, max-age=31536000|accept-ranges: bytes|timing-allow-origin: *|expires: Sat, 21 Jun 2025 11:49:35 GMT]
591
- 27;1,221 ms;1,223 ms;1,225 ms;1,231 ms;10 ms;2 ms;6 ms;200;font/woff2;VeryHigh;VeryHigh;VeryHigh;f;h2;f;0,12;[];[date: Fri, 21 Jun 2024 11:16:48 GMT|x-content-type-options: nosniff|age: 269965|content-security-policy-report-only: <redacted>|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Wed, 11 May 2022 19:24:45 GMT|server: sffe|cross-origin-opener-policy: <redacted>|report-to: {"group":"apps-themes","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/apps-themes"}]}|content-type: font/woff2|access-control-allow-origin: *|cache-control: public, max-age=31536000|accept-ranges: bytes|timing-allow-origin: *|expires: Sat, 21 Jun 2025 11:16:48 GMT]
592
- 28;1,230 ms;1,232 ms;1,274 ms;1,433 ms;203 ms;1 ms;159 ms;200;application/json;High;High;High;f;h2;f;0,2;[];[date: Mon, 01 Jul 2024 08:58:56 GMT|content-encoding: br|x-content-type-options: nosniff|server: scaffolding on HTTPServer2|x-frame-options: SAMEORIGIN|vary: Origin, X-Origin, Referer|content-type: application/json; charset=UTF-8|content-length: <redacted>|x-xss-protection: 0]
593
- 29;1,260 ms;1,261 ms;1,266 ms;1,269 ms;9 ms;2 ms;3 ms;200;text/javascript;Low;Low;Low;f;h3;f;0,2;[];[date: Sun, 23 Jun 2024 15:10:07 GMT|content-encoding: br|x-content-type-options: nosniff|age: 83158|content-security-policy-report-only: <redacted>|cross-origin-resource-policy: <redacted>|alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000|content-length: <redacted>|x-xss-protection: 0|last-modified: Mon, 03 Jun 2024 09:30:00 GMT|server: sffe|cross-origin-opener-policy: <redacted>|vary: Accept-Encoding|report-to: {"group":"botguard-scs","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/botguard-scs"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|expires: Mon, 23 Jun 2025 15:10:07 GMT]
594
- 30;1,260 ms;1,262 ms;1,265 ms;1,266 ms;6 ms;3 ms;1 ms;200;application/manifest+json;Medium;Medium;Medium;f;h2;f;;[];[date: Mon, 01 Jul 2024 08:52:17 GMT|x-content-type-options: nosniff|accept-ch: Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-WoW64, Sec-CH-UA-Form-Factors, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version|cross-origin-opener-policy: <redacted>|server: ESF|x-frame-options: SAMEORIGIN|vary: Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-WoW64, Sec-CH-UA-Form-Factors, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version|content-type: application/manifest+json; charset=utf-8|report-to: {"group":"youtube_main","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube_main"}]}|cache-control: public, max-age=86400|origin-trial: <redacted>|permissions-policy: ch-ua-arch=*, ch-ua-bitness=*, ch-ua-full-version=*, ch-ua-full-version-list=*, ch-ua-model=*, ch-ua-wow64=*, ch-ua-form-factors=*, ch-ua-platform=*, ch-ua-platform-version=*|x-xss-protection: 0|expires: Tue, 02 Jul 2024 08:52:17 GMT]
595
- 31;1,261 ms;1,261 ms;1,266 ms;1,269 ms;8 ms;1 ms;3 ms;200;image/x-icon;High;High;High;f;h2;t;;[];[date: Sat, 29 Jun 2024 03:09:37 GMT|content-encoding: br|x-content-type-options: nosniff|age: 193360|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Fri, 28 Jun 2024 09:12:42 GMT|server: sffe|vary: Accept-Encoding|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: image/x-icon|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 03:09:37 GMT]
596
- 32;1,269 ms;1,271 ms;1,274 ms;1,376 ms;106 ms;3 ms;101 ms;200;image/png;High;High;High;f;h2;f;;[];[date: Fri, 21 Jun 2024 11:32:23 GMT|x-content-type-options: nosniff|last-modified: Thu, 03 Oct 2019 10:15:00 GMT|server: sffe|age: 269031|report-to: {"group":"static-on-bigtable","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/static-on-bigtable"}]}|content-type: image/png|cache-control: public, max-age=31536000|cross-origin-resource-policy: <redacted>|accept-ranges: bytes|content-length: <redacted>|x-xss-protection: 0|cross-origin-opener-policy-report-only: <redacted>|expires: Sat, 21 Jun 2025 11:32:23 GMT]
597
- 33;1,372 ms;1,373 ms;1,433 ms;1,448 ms;76 ms;58 ms;15 ms;200;text/javascript;Low;Low;Low;f;h2;t;0,2;[];[date: Sat, 29 Jun 2024 02:54:09 GMT|content-encoding: gzip|x-content-type-options: nosniff|age: 194288|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Wed, 26 Jun 2024 04:16:28 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/javascript|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 02:54:09 GMT]
598
- 34;1,373 ms;1,373 ms;1,381 ms;1,420 ms;47 ms;4 ms;39 ms;200;text/css;VeryHigh;VeryHigh;VeryHigh;f;h2;t;0,2;[];[date: Sat, 29 Jun 2024 02:54:09 GMT|content-encoding: br|x-content-type-options: nosniff|age: 194288|cross-origin-resource-policy: <redacted>|content-length: <redacted>|x-xss-protection: 0|last-modified: Wed, 26 Jun 2024 04:16:28 GMT|server: sffe|vary: Accept-Encoding, Origin|report-to: {"group":"youtube","max_age":2592000,"endpoints":[{"url":"https://csp.withgoogle.com/csp/report-to/youtube"}]}|content-type: text/css|cache-control: public, max-age=31536000|accept-ranges: bytes|cross-origin-opener-policy-report-only: <redacted>|expires: Sun, 29 Jun 2025 02:54:09 GMT]
599
- === end content
600
-
601
434
  Title: PerformanceInsightFormatter DomSize serializes correctly when there are no results
602
435
  Content:
603
436
  ## Insight Title: Optimize DOM size