chrome-devtools-frontend 1.0.1515796 → 1.0.1516909
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/contributing/infrastructure.md +131 -82
- package/front_end/Tests.js +3 -29
- package/front_end/core/common/Progress.ts +73 -55
- package/front_end/core/host/GdpClient.ts +1 -1
- package/front_end/core/host/UserMetrics.ts +5 -2
- package/front_end/core/protocol_client/InspectorBackend.ts +2 -0
- package/front_end/core/root/Runtime.ts +0 -1
- package/front_end/core/sdk/CSSMatchedStyles.ts +12 -10
- package/front_end/core/sdk/CSSModel.ts +1 -31
- package/front_end/core/sdk/CSSPropertyParserMatchers.ts +27 -7
- package/front_end/core/sdk/DebuggerModel.ts +1 -31
- package/front_end/core/sdk/EnhancedTracesParser.ts +81 -50
- package/front_end/core/sdk/NetworkManager.ts +1 -31
- package/front_end/core/sdk/NetworkRequest.ts +1 -31
- package/front_end/core/sdk/RehydratingConnection.snapshot.txt +1003 -0
- package/front_end/core/sdk/RehydratingConnection.ts +13 -18
- package/front_end/core/sdk/RehydratingObject.ts +8 -31
- package/front_end/core/sdk/RemoteObject.ts +1 -31
- package/front_end/core/sdk/ResourceTreeModel.ts +1 -31
- package/front_end/core/sdk/RuntimeModel.ts +1 -31
- package/front_end/core/sdk/ServiceWorkerManager.ts +1 -31
- package/front_end/core/sdk/SourceMap.ts +1 -31
- package/front_end/core/sdk/TraceObject.ts +8 -3
- package/front_end/entrypoints/main/MainImpl.ts +1 -3
- package/front_end/models/ai_assistance/AiHistoryStorage.ts +1 -3
- package/front_end/models/ai_assistance/ConversationHandler.ts +4 -6
- package/front_end/models/ai_assistance/agents/AiAgent.ts +4 -1
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +110 -76
- package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.ts +2 -2
- package/front_end/models/ai_assistance/agents/StylingAgent.ts +2 -2
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +178 -85
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +308 -218
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +100 -100
- package/front_end/models/ai_assistance/data_formatters/UnitFormatters.ts +10 -1
- package/front_end/models/ai_assistance/performance/AIContext.ts +19 -21
- package/front_end/models/ai_code_completion/AiCodeCompletion.ts +24 -8
- package/front_end/models/badges/UserBadges.ts +38 -3
- package/front_end/models/bindings/ContentProviderBasedProject.ts +6 -4
- package/front_end/models/breakpoints/BreakpointManager.ts +3 -3
- package/front_end/models/formatter/FormatterWorkerPool.ts +3 -3
- package/front_end/models/har/Writer.ts +11 -11
- package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +3 -3
- package/front_end/models/persistence/IsolatedFileSystem.ts +4 -4
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +7 -7
- package/front_end/models/persistence/PersistenceImpl.ts +8 -8
- package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
- package/front_end/models/trace/ModelImpl.ts +2 -16
- package/front_end/models/trace/Processor.ts +15 -9
- package/front_end/models/trace/handlers/AuctionWorkletsHandler.ts +4 -4
- package/front_end/models/trace/handlers/FramesHandler.ts +2 -2
- package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +7 -10
- package/front_end/models/trace/handlers/MetaHandler.ts +11 -9
- package/front_end/models/trace/handlers/ScreenshotsHandler.ts +1 -1
- package/front_end/models/trace/handlers/ScriptsHandler.ts +5 -5
- package/front_end/models/trace/handlers/UserInteractionsHandler.ts +2 -14
- package/front_end/models/trace/handlers/UserTimingsHandler.ts +3 -4
- package/front_end/models/trace/insights/CLSCulprits.ts +1 -1
- package/front_end/models/trace/insights/DocumentLatency.ts +3 -4
- package/front_end/models/trace/insights/DuplicatedJavaScript.ts +1 -1
- package/front_end/models/trace/insights/INPBreakdown.ts +1 -1
- package/front_end/models/trace/insights/ImageDelivery.ts +1 -1
- package/front_end/models/trace/insights/LCPBreakdown.ts +1 -1
- package/front_end/models/trace/insights/LCPDiscovery.ts +1 -1
- package/front_end/models/trace/insights/ModernHTTP.ts +1 -1
- package/front_end/models/trace/insights/NetworkDependencyTree.ts +1 -1
- package/front_end/models/trace/insights/RenderBlocking.ts +1 -1
- package/front_end/models/trace/insights/types.ts +2 -0
- package/front_end/models/trace/types/TraceEvents.ts +41 -64
- package/front_end/models/trace_source_maps_resolver/trace_source_maps_resolver.ts +1 -1
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +21 -99
- package/front_end/panels/application/ServiceWorkersView.ts +0 -1
- package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +2 -3
- package/front_end/panels/common/BadgeNotification.ts +46 -10
- package/front_end/panels/common/GdpSignUpDialog.ts +6 -3
- package/front_end/panels/console/ConsoleView.ts +23 -28
- package/front_end/panels/console/ConsoleViewport.ts +2 -2
- package/front_end/panels/console/consoleView.css +11 -1
- package/front_end/panels/coverage/CoverageView.ts +2 -2
- package/front_end/panels/elements/ComputedStyleWidget.ts +1 -2
- package/front_end/panels/elements/ElementsTreeOutline.ts +2 -2
- package/front_end/panels/elements/LayoutPane.ts +1 -1
- package/front_end/panels/elements/StyleEditorWidget.ts +8 -19
- package/front_end/panels/elements/StylePropertyTreeElement.ts +39 -25
- package/front_end/panels/elements/StylesSidebarPane.ts +2 -2
- package/front_end/panels/elements/stylePropertiesTreeOutline.css +4 -3
- package/front_end/panels/layer_viewer/Layers3DView.ts +2 -2
- package/front_end/panels/layers/LayerTreeModel.ts +3 -3
- package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +4 -4
- package/front_end/panels/network/NetworkLogView.ts +6 -2
- package/front_end/panels/network/NetworkLogViewColumns.ts +3 -3
- package/front_end/panels/network/NetworkSearchScope.ts +6 -6
- package/front_end/panels/search/SearchResultsPane.ts +32 -47
- package/front_end/panels/search/SearchView.ts +58 -80
- package/front_end/panels/settings/components/SyncSection.ts +7 -2
- package/front_end/panels/sources/OutlineQuickOpen.ts +3 -1
- package/front_end/panels/sources/SourcesSearchScope.ts +4 -4
- package/front_end/panels/sources/TabbedEditorContainer.ts +5 -5
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +10 -5
- package/front_end/panels/timeline/TimelineFlameChartView.ts +18 -15
- package/front_end/panels/timeline/TimelinePanel.ts +41 -22
- package/front_end/panels/timeline/TimelineUIUtils.ts +13 -8
- package/front_end/panels/timeline/TracingLayerTree.ts +4 -5
- package/front_end/panels/timeline/components/ExportTraceOptions.ts +37 -22
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +17 -7
- package/front_end/third_party/axe-core/README.chromium +1 -0
- package/front_end/third_party/codemirror/README.chromium +1 -0
- package/front_end/third_party/codemirror.next/README.chromium +1 -0
- package/front_end/third_party/csp_evaluator/README.chromium +1 -0
- package/front_end/third_party/diff/README.chromium +1 -0
- package/front_end/third_party/i18n/README.chromium +1 -0
- package/front_end/third_party/intl-messageformat/README.chromium +1 -0
- package/front_end/third_party/json5/README.chromium +1 -0
- package/front_end/third_party/legacy-javascript/README.chromium +1 -0
- package/front_end/third_party/lighthouse/README.chromium +1 -0
- package/front_end/third_party/lit/README.chromium +1 -0
- package/front_end/third_party/marked/README.chromium +1 -0
- package/front_end/third_party/puppeteer/README.chromium +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +0 -20
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +2 -23
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +0 -20
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/package.json +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +1 -21
- package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/revisions.ts +1 -1
- package/front_end/third_party/puppeteer-replay/README.chromium +1 -0
- package/front_end/third_party/third-party-web/README.chromium +1 -0
- package/front_end/third_party/vscode.web-custom-data/README.chromium +1 -0
- package/front_end/third_party/wasmparser/README.chromium +1 -0
- package/front_end/third_party/web-vitals/README.chromium +1 -0
- package/front_end/ui/components/text_editor/config.ts +30 -1
- package/front_end/ui/components/tooltips/Tooltip.ts +18 -4
- package/front_end/ui/legacy/ContextMenu.ts +2 -2
- package/front_end/ui/legacy/GlassPane.ts +7 -3
- package/front_end/ui/legacy/ProgressIndicator.ts +29 -16
- package/front_end/ui/legacy/TabbedPane.ts +2 -2
- package/front_end/ui/legacy/Treeoutline.ts +10 -5
- package/front_end/ui/legacy/UIUtils.ts +42 -10
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +14 -14
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +6 -6
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +3 -29
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +14 -14
- package/front_end/ui/visual_logging/KnownContextValues.ts +7 -0
- package/inspector_overlay/highlight_common.ts +1 -27
- package/inspector_overlay/highlight_grid_common.ts +1 -27
- package/inspector_overlay/tool_highlight.ts +1 -27
- package/inspector_overlay/tool_persistent.ts +1 -27
- package/inspector_overlay/tool_source_order.ts +1 -27
- package/package.json +1 -1
package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt
CHANGED
@@ -6,18 +6,18 @@ Content:
|
|
6
6
|
This insight is used to analyze the time spent that contributed to the final LCP time and identify which of the 4 phases (or 2 if there was no LCP resource) are contributing most to the delay in rendering the LCP element.
|
7
7
|
|
8
8
|
## Detailed analysis:
|
9
|
-
The Largest Contentful Paint (LCP) time for this navigation was
|
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
12
|
Timings:
|
13
|
-
- Queued at:
|
14
|
-
- Request sent at: 60
|
15
|
-
- Download complete at: 220
|
16
|
-
- Main thread processing completed at: 220
|
13
|
+
- Queued at: 55 ms
|
14
|
+
- Request sent at: 60 ms
|
15
|
+
- Download complete at: 220 ms
|
16
|
+
- Main thread processing completed at: 220 ms
|
17
17
|
Durations:
|
18
|
-
- Download time:
|
18
|
+
- Download time: 9 ms
|
19
19
|
- Main thread processing time: 0.2 ms
|
20
|
-
- Total duration:
|
20
|
+
- Total duration: 166 ms
|
21
21
|
Initiator: file:///Users/cjamcl/surge/misc/display-dpr/index.html
|
22
22
|
Redirects: no redirects
|
23
23
|
Status code: 200
|
@@ -46,10 +46,10 @@ Response headers
|
|
46
46
|
|
47
47
|
We can break this time down into the 4 phases that combine to make the LCP time:
|
48
48
|
|
49
|
-
- Time to first byte:
|
49
|
+
- Time to first byte: 2 ms (0.7% of total LCP time)
|
50
50
|
- Resource load delay: 53 ms (22.1% of total LCP time)
|
51
|
-
- Resource load duration:
|
52
|
-
- Element render delay:
|
51
|
+
- Resource load duration: 166 ms (69.1% of total LCP time)
|
52
|
+
- Element render delay: 20 ms (8.2% of total LCP time)
|
53
53
|
|
54
54
|
## Estimated savings: none
|
55
55
|
|
@@ -66,18 +66,18 @@ Content:
|
|
66
66
|
This insight is used to analyze the time spent that contributed to the final LCP time and identify which of the 4 phases (or 2 if there was no LCP resource) are contributing most to the delay in rendering the LCP element.
|
67
67
|
|
68
68
|
## Detailed analysis:
|
69
|
-
The Largest Contentful Paint (LCP) time for this navigation was 129
|
69
|
+
The Largest Contentful Paint (LCP) time for this navigation was 129 ms.
|
70
70
|
The LCP element is an image fetched from `https://web-dev.imgix.net/image/kheDArv5csY6rvQUJDbWRscckLr1/4i7JstVZvgTFk9dxCe4a.svg`.
|
71
71
|
## LCP resource network request: https://web-dev.imgix.net/image/kheDArv5csY6rvQUJDbWRscckLr1/4i7JstVZvgTFk9dxCe4a.svg
|
72
72
|
Timings:
|
73
|
-
- Queued at: 41
|
74
|
-
- Request sent at:
|
75
|
-
- Download complete at:
|
76
|
-
- Main thread processing completed at: 58
|
73
|
+
- Queued at: 41 ms
|
74
|
+
- Request sent at: 47 ms
|
75
|
+
- Download complete at: 56 ms
|
76
|
+
- Main thread processing completed at: 58 ms
|
77
77
|
Durations:
|
78
78
|
- Download time: 0.3 ms
|
79
|
-
- Main thread processing time: 2
|
80
|
-
- Total duration: 17
|
79
|
+
- Main thread processing time: 2 ms
|
80
|
+
- Total duration: 17 ms
|
81
81
|
Redirects: no redirects
|
82
82
|
Status code: 200
|
83
83
|
MIME Type: image/svg+xml
|
@@ -90,10 +90,10 @@ Initiators (root request to the request that directly loaded this one): none
|
|
90
90
|
|
91
91
|
We can break this time down into the 4 phases that combine to make the LCP time:
|
92
92
|
|
93
|
-
- Time to first byte:
|
94
|
-
- Resource load delay: 33
|
95
|
-
- Resource load duration:
|
96
|
-
- Element render delay: 73
|
93
|
+
- Time to first byte: 8 ms (6.1% of total LCP time)
|
94
|
+
- Resource load delay: 33 ms (25.7% of total LCP time)
|
95
|
+
- Resource load duration: 15 ms (11.4% of total LCP time)
|
96
|
+
- Element render delay: 73 ms (56.8% of total LCP time)
|
97
97
|
|
98
98
|
## Estimated savings: none
|
99
99
|
|
@@ -110,13 +110,13 @@ Content:
|
|
110
110
|
This insight is used to analyze the time spent that contributed to the final LCP time and identify which of the 4 phases (or 2 if there was no LCP resource) are contributing most to the delay in rendering the LCP element.
|
111
111
|
|
112
112
|
## Detailed analysis:
|
113
|
-
The Largest Contentful Paint (LCP) time for this navigation was 106
|
113
|
+
The Largest Contentful Paint (LCP) time for this navigation was 106 ms.
|
114
114
|
The LCP element is text and was not fetched from the network.
|
115
115
|
|
116
116
|
We can break this time down into the 2 phases that combine to make the LCP time:
|
117
117
|
|
118
|
-
- Time to first byte: 6
|
119
|
-
- Element render delay: 100
|
118
|
+
- Time to first byte: 6 ms (5.7% of total LCP time)
|
119
|
+
- Element render delay: 100 ms (94.3% of total LCP time)
|
120
120
|
|
121
121
|
## Estimated savings: none
|
122
122
|
|
@@ -159,9 +159,9 @@ Network requests data:
|
|
159
159
|
|
160
160
|
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
161
|
|
162
|
-
0;581
|
163
|
-
2;
|
164
|
-
3;
|
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]
|
165
165
|
|
166
166
|
## Estimated savings: FCP 2015 ms, LCP 0 ms
|
167
167
|
|
@@ -183,18 +183,18 @@ This insight analyzes the time taken to discover the LCP resource and request it
|
|
183
183
|
It is important that all of these checks pass to minimize the delay between the initial page load and the LCP resource being loaded.
|
184
184
|
|
185
185
|
## Detailed analysis:
|
186
|
-
The Largest Contentful Paint (LCP) time for this navigation was 1,077
|
186
|
+
The Largest Contentful Paint (LCP) time for this navigation was 1,077 ms.
|
187
187
|
The LCP element is an image fetched from `http://localhost:8787/lcp-discovery-delay/lcp-image.jpg`.
|
188
188
|
## LCP resource network request: http://localhost:8787/lcp-discovery-delay/lcp-image.jpg
|
189
189
|
Timings:
|
190
|
-
- Queued at: 1,010
|
191
|
-
- Request sent at: 1,011
|
192
|
-
- Download complete at: 1,
|
193
|
-
- Main thread processing completed at: 1,
|
190
|
+
- Queued at: 1,010 ms
|
191
|
+
- Request sent at: 1,011 ms
|
192
|
+
- Download complete at: 1,014 ms
|
193
|
+
- Main thread processing completed at: 1,017 ms
|
194
194
|
Durations:
|
195
195
|
- Download time: 1 ms
|
196
|
-
- Main thread processing time: 3
|
197
|
-
- Total duration:
|
196
|
+
- Main thread processing time: 3 ms
|
197
|
+
- Total duration: 7 ms
|
198
198
|
Initiator: http://localhost:8787/lcp-discovery-delay/index.html
|
199
199
|
Redirects: no redirects
|
200
200
|
Status code: 200
|
@@ -239,29 +239,29 @@ This insight checks that the first request is responded to promptly. We use the
|
|
239
239
|
3. Was there compression applied to the response to minimize the transfer size?
|
240
240
|
|
241
241
|
## Detailed analysis:
|
242
|
-
The Largest Contentful Paint (LCP) time for this navigation was 3,604
|
242
|
+
The Largest Contentful Paint (LCP) time for this navigation was 3,604 ms.
|
243
243
|
The LCP element is text and was not fetched from the network.
|
244
244
|
|
245
245
|
## Document network request: http://localhost:3000/redirect3
|
246
246
|
Timings:
|
247
247
|
- Queued at: 3 ms
|
248
|
-
- Request sent at: 1,529
|
249
|
-
- Download complete at: 3,
|
250
|
-
- Main thread processing completed at: 3,
|
248
|
+
- Request sent at: 1,529 ms
|
249
|
+
- Download complete at: 3,533 ms
|
250
|
+
- Main thread processing completed at: 3,538 ms
|
251
251
|
Durations:
|
252
252
|
- Download time: 0.1 ms
|
253
|
-
- Main thread processing time: 5
|
254
|
-
- Total duration: 3,
|
253
|
+
- Main thread processing time: 5 ms
|
254
|
+
- Total duration: 3,535 ms
|
255
255
|
Redirects:
|
256
256
|
#### Redirect 1: http://localhost:3000/
|
257
257
|
- Start time: 3 ms
|
258
258
|
- Duration: 512 ms
|
259
259
|
#### Redirect 2: http://localhost:3000/redirect1
|
260
|
-
- Start time: 515
|
261
|
-
- Duration:
|
260
|
+
- Start time: 515 ms
|
261
|
+
- Duration: 506 ms
|
262
262
|
#### Redirect 3: http://localhost:3000/redirect2
|
263
|
-
- Start time: 1,
|
264
|
-
- Duration: 507
|
263
|
+
- Start time: 1,021 ms
|
264
|
+
- Duration: 507 ms
|
265
265
|
Status code: 200
|
266
266
|
MIME Type: text/html
|
267
267
|
Protocol: http/1.1
|
@@ -298,32 +298,32 @@ Cumulative Layout Shifts (CLS) is a measure of the largest burst of layout shift
|
|
298
298
|
- Bad: over 0.25
|
299
299
|
|
300
300
|
## Detailed analysis:
|
301
|
-
The worst layout shift cluster was the cluster that started at
|
301
|
+
The worst layout shift cluster was the cluster that started at 472 ms and ended at 3,343 ms, with a duration of 2,871 ms.
|
302
302
|
The score for this cluster is 0.7656.
|
303
303
|
|
304
304
|
Layout shifts in this cluster:
|
305
305
|
### Layout shift 1:
|
306
|
-
- Start time:
|
306
|
+
- Start time: 472 ms
|
307
307
|
- Score: 0.0003
|
308
308
|
- Potential root causes:
|
309
309
|
- A font that was loaded over the network (https://fonts.gstatic.com/s/specialgothicexpandedone/v2/IurO6Zxk74-YaYk1r3HOet4g75ENmBxUmOK61tA0Iu5QmJF_.woff2).
|
310
310
|
### Layout shift 2:
|
311
|
-
- Start time: 857
|
311
|
+
- Start time: 857 ms
|
312
312
|
- Score: 0.0844
|
313
313
|
- Potential root causes:
|
314
314
|
- An iframe (id: 8AF3A9ADB81CA7B35302D07E0B591104, url: https://www.google.com/ was injected into the page)
|
315
315
|
### Layout shift 3:
|
316
|
-
- Start time: 1,352
|
316
|
+
- Start time: 1,352 ms
|
317
317
|
- Score: 0.0068
|
318
318
|
- Potential root causes:
|
319
319
|
- An unsized image (IMG) (url: http://localhost:8000/unsized-image.png).
|
320
320
|
### Layout shift 4:
|
321
|
-
- Start time: 1,537
|
321
|
+
- Start time: 1,537 ms
|
322
322
|
- Score: 0.3344
|
323
323
|
- Potential root causes:
|
324
324
|
- An unsized image (IMG) (url: http://localhost:8000/unsized-image.png).
|
325
325
|
### Layout shift 5:
|
326
|
-
- Start time: 2,
|
326
|
+
- Start time: 2,343 ms
|
327
327
|
- Score: 0.3396
|
328
328
|
- No potential root causes identified
|
329
329
|
|
@@ -413,13 +413,13 @@ Network requests data:
|
|
413
413
|
|
414
414
|
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
415
|
|
416
|
-
0;8
|
417
|
-
2;8
|
418
|
-
3;8
|
419
|
-
4;8
|
420
|
-
5;8
|
421
|
-
6;8
|
422
|
-
7;8
|
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>]
|
423
423
|
|
424
424
|
## Estimated savings: FCP 0 ms, LCP 0 ms
|
425
425
|
|
@@ -427,18 +427,55 @@ allUrls = [0: https://ads.jetpackdigital.com/sites/_uploads/1742278386bg_opt_640
|
|
427
427
|
- https://developer.chrome.com/docs/lighthouse/best-practices/uses-http2
|
428
428
|
=== end content
|
429
429
|
|
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
|
+
|
430
467
|
Title: PerformanceInsightFormatter Formatting TraceEvents formats network requests in verbose mode
|
431
468
|
Content:
|
432
469
|
## Network request: https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,800
|
433
470
|
Timings:
|
434
|
-
- Queued at:
|
435
|
-
- Request sent at:
|
471
|
+
- Queued at: 38 ms
|
472
|
+
- Request sent at: 42 ms
|
436
473
|
- Download complete at: 48 ms
|
437
|
-
- Main thread processing completed at:
|
474
|
+
- Main thread processing completed at: 52 ms
|
438
475
|
Durations:
|
439
|
-
- Download time:
|
440
|
-
- Main thread processing time:
|
441
|
-
- Total duration:
|
476
|
+
- Download time: 5 ms
|
477
|
+
- Main thread processing time: 4 ms
|
478
|
+
- Total duration: 14 ms
|
442
479
|
Initiator: https://chromedevtools.github.io/performance-stories/lcp-large-image/index.html
|
443
480
|
Redirects: no redirects
|
444
481
|
Status code: 200
|
@@ -470,14 +507,14 @@ Title: PerformanceInsightFormatter Formatting TraceEvents defaults to verbose mo
|
|
470
507
|
Content:
|
471
508
|
## Network request: https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,800
|
472
509
|
Timings:
|
473
|
-
- Queued at:
|
474
|
-
- Request sent at:
|
510
|
+
- Queued at: 38 ms
|
511
|
+
- Request sent at: 42 ms
|
475
512
|
- Download complete at: 48 ms
|
476
|
-
- Main thread processing completed at:
|
513
|
+
- Main thread processing completed at: 52 ms
|
477
514
|
Durations:
|
478
|
-
- Download time:
|
479
|
-
- Main thread processing time:
|
480
|
-
- Total duration:
|
515
|
+
- Download time: 5 ms
|
516
|
+
- Main thread processing time: 4 ms
|
517
|
+
- Total duration: 14 ms
|
481
518
|
Initiator: https://chromedevtools.github.io/performance-stories/lcp-large-image/index.html
|
482
519
|
Redirects: no redirects
|
483
520
|
Status code: 200
|
@@ -505,6 +542,62 @@ Response headers
|
|
505
542
|
- expires: Thu, 07 Mar 2024 21:17:02 GMT
|
506
543
|
=== end content
|
507
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
|
+
|
508
601
|
Title: PerformanceInsightFormatter DomSize serializes correctly when there are no results
|
509
602
|
Content:
|
510
603
|
## Insight Title: Optimize DOM size
|
@@ -547,8 +640,8 @@ Most children: 5, for parent 'BODY' (node id: 19).
|
|
547
640
|
|
548
641
|
Large layout updates/style calculations:
|
549
642
|
|
550
|
-
- Layout update: Duration:
|
551
|
-
- Style recalculation: Duration:
|
643
|
+
- Layout update: Duration: 59 ms, with 2004 of 2012 nodes needing layout.
|
644
|
+
- Style recalculation: Duration: 151 ms, with 1001 elements affected.
|
552
645
|
|
553
646
|
## Estimated savings: none
|
554
647
|
|
@@ -854,21 +947,21 @@ The following is the top function call that caused forced reflow(s):
|
|
854
947
|
|
855
948
|
- (anonymous) @ https://player.aniview.com/script/6.1/player.js:6:25217
|
856
949
|
|
857
|
-
Total reflow time: 26
|
950
|
+
Total reflow time: 26 ms
|
858
951
|
|
859
952
|
Stack trace (including total time):
|
860
953
|
|
861
|
-
- 56
|
862
|
-
-
|
863
|
-
- 14
|
954
|
+
- 56 ms in sidemenuitemintoview @ https://www.w3schools.com/lib/w3schools_footer.js?update=20240910:383:11
|
955
|
+
- 5 ms in ko @ https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202411070102/pubads_impl.js?cb=31088843:32:197203
|
956
|
+
- 14 ms in e @ unknown location
|
864
957
|
- 0.1 ms in position @ https://tg1.aniview.com/api/adserver/spt?AV_TAGID=5fc0cff7da5879436d110535&AV_PUBLISHERID=5f280c598c04cd5e910ff0a1:453:30
|
865
958
|
- 0.7 ms in o @ https://adengine.snigelweb.com/w3schools.com/12609-1731501024324/adngin.js:0:6042
|
866
|
-
- 2
|
959
|
+
- 2 ms in [unattributed]
|
867
960
|
- 0.3 ms in Aq @ https://pagead2.googlesyndication.com/pagead/managed/js/activeview/current/ufs_web_display.js:273:705
|
868
961
|
- 0.2 ms in E @ https://player.aniview.com/script/6.1/player.js:6:21336
|
869
962
|
- 0.4 ms in getPlaceholderWidth @ https://player.aniview.com/script/6.1/player.js:6:38512
|
870
|
-
- 24
|
871
|
-
-
|
963
|
+
- 24 ms in (anonymous) @ https://player.aniview.com/script/6.1/AVmanager.js?v=1.0&type=s&pid=5f280c598c04cd5e910ff0a1:7:364165
|
964
|
+
- 2 ms in e.getAdPosition @ https://player.aniview.com/script/6.1/AVmanager.js?v=1.0&type=s&pid=5f280c598c04cd5e910ff0a1:6:104270
|
872
965
|
- 0.5 ms in detect_visibility_inview_1s @ unknown location
|
873
966
|
- 0 ms in (anonymous) @ https://player.aniview.com/script/6.1/AVmanager.js?v=1.0&type=s&pid=5f280c598c04cd5e910ff0a1:6:101588
|
874
967
|
- 0.3 ms in Wr @ https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202411070102/pubads_impl.js?cb=31088843:32:94243
|
@@ -923,12 +1016,12 @@ This insight analyzes the network dependency tree to identify:
|
|
923
1016
|
## Detailed analysis:
|
924
1017
|
The network dependency tree checks found one or more problems.
|
925
1018
|
|
926
|
-
Max critical path latency is 5,
|
1019
|
+
Max critical path latency is 5,015 ms
|
927
1020
|
|
928
1021
|
The following is the critical request chain:
|
929
|
-
- http://localhost:8787/lcp-iframes/index.html (5,
|
930
|
-
- http://localhost:8787/lcp-iframes/app.js (5,
|
931
|
-
- http://localhost:8787/lcp-iframes/app.css (5,010
|
1022
|
+
- http://localhost:8787/lcp-iframes/index.html (5,006 ms) (longest chain)
|
1023
|
+
- http://localhost:8787/lcp-iframes/app.js (5,015 ms) (longest chain)
|
1024
|
+
- http://localhost:8787/lcp-iframes/app.css (5,010 ms)
|
932
1025
|
|
933
1026
|
no origins were preconnected.
|
934
1027
|
|
@@ -1014,9 +1107,9 @@ The following list contains the largest transfer sizes by a 3rd party script:
|
|
1014
1107
|
|
1015
1108
|
The following list contains the largest amount spent by a 3rd party script on the main thread:
|
1016
1109
|
|
1017
|
-
- Google Tag Manager: 28
|
1018
|
-
- Google Analytics:
|
1019
|
-
- noondiphcddnnabmjcihcjfbhfklnnep:
|
1110
|
+
- Google Tag Manager: 28 ms
|
1111
|
+
- Google Analytics: 6 ms
|
1112
|
+
- noondiphcddnnabmjcihcjfbhfklnnep: 2 ms
|
1020
1113
|
- web.app: 0.2 ms
|
1021
1114
|
|
1022
1115
|
3rd party code can significantly impact load performance. [Reduce and defer loading of 3rd party code](https://web.dev/articles/optimizing-content-efficiency-loading-third-party-javascript/) to prioritize your page's content.
|