chrome-devtools-frontend 1.0.1515446 → 1.0.1515988
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/UserMetrics.ts +0 -1
- 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 +0 -2
- package/front_end/entrypoints/main/main-meta.ts +2 -2
- package/front_end/generated/InspectorBackendCommands.js +4 -4
- package/front_end/generated/SupportedCSSProperties.js +12 -0
- package/front_end/generated/protocol.ts +10 -1
- 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 +107 -72
- 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 +161 -97
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.ts +78 -58
- 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 +123 -55
- package/front_end/models/bindings/ContentProviderBasedProject.ts +6 -4
- package/front_end/models/breakpoints/BreakpointManager.ts +3 -3
- package/front_end/models/har/Writer.ts +11 -11
- package/front_end/models/javascript_metadata/NativeFunctions.js +7 -7
- 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/text_utils/TextUtils.ts +26 -0
- package/front_end/models/trace/ModelImpl.ts +2 -16
- package/front_end/models/trace/Processor.ts +14 -8
- 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 +8 -7
- 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/Configuration.ts +12 -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/application/components/BackForwardCacheStrings.ts +8 -2
- package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +2 -3
- package/front_end/panels/common/BadgeNotification.ts +10 -8
- package/front_end/panels/common/GdpSignUpDialog.ts +30 -14
- package/front_end/panels/common/gdpSignUpDialog.css +4 -0
- 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/ElementsTreeOutline.ts +2 -2
- 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 +1 -1
- package/front_end/panels/network/NetworkLogViewColumns.ts +3 -3
- package/front_end/panels/network/NetworkSearchScope.ts +6 -6
- package/front_end/panels/search/SearchView.ts +220 -159
- package/front_end/panels/settings/components/SyncSection.ts +64 -10
- package/front_end/panels/settings/components/syncSection.css +6 -0
- package/front_end/panels/sources/AiCodeCompletionPlugin.ts +1 -4
- 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/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/panels/webauthn/WebauthnPane.ts +1 -1
- package/front_end/third_party/axe-core/README.chromium +1 -0
- package/front_end/third_party/chromium/README.chromium +1 -1
- 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/README.md +6 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +11 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts +5 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +30 -8
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js +1 -3
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
- 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/NetworkManager.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js +8 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts +5 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js +8 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.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/node/BrowserLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js +5 -0
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.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.d.ts +12 -2
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +22 -8
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +11 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js +2 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts +5 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +30 -8
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js +1 -3
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js +8 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts +5 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js +8 -2
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.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/node/BrowserLauncher.d.ts.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js +5 -0
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/types.d.ts +12 -2
- package/front_end/third_party/puppeteer/package/package.json +4 -4
- package/front_end/third_party/puppeteer/package/src/api/Browser.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/api/Page.ts +13 -2
- package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +50 -8
- package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +0 -1
- package/front_end/third_party/puppeteer/package/src/cdp/NetworkManager.ts +8 -1
- package/front_end/third_party/puppeteer/package/src/cdp/Page.ts +21 -5
- package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts +12 -0
- 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 +66 -16
- package/front_end/ui/components/tooltips/Tooltip.ts +17 -1
- 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 +33 -21
- 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/data_grid/DataGridElement.ts +4 -2
- 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/Debugging.ts +24 -12
- package/front_end/ui/visual_logging/KnownContextValues.ts +3 -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 +3 -3
package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt
CHANGED
@@ -8,43 +8,43 @@ Network requests data:
|
|
8
8
|
|
9
9
|
allUrls = [0: http://localhost:8000/, 1: https://code.jquery.com/jquery-3.7.1.js, 2: http://localhost:8000/render-blocking-stylesheet.css, 3: http://localhost:8000/render-blocking-script.js]
|
10
10
|
|
11
|
-
0;
|
12
|
-
1;581
|
13
|
-
2;
|
14
|
-
3;
|
11
|
+
0;2 ms;3 ms;576 ms;583 ms;582 ms;0.4 ms;7 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;http/1.0;f;;[];[Content-Length: <redacted>|Date: Fri, 07 Mar 2025 15:02:27 GMT|Content-type: text/html|Last-Modified: Fri, 07 Mar 2025 14:58:55 GMT|Server: SimpleHTTP/0.6 Python/3.9.6]
|
12
|
+
1;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;0;[];[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]
|
13
|
+
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;0;[];[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]
|
14
|
+
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;0;[];[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]
|
15
15
|
=== end content
|
16
16
|
|
17
17
|
Title: PerformanceTraceFormatter formatLongestTasks
|
18
18
|
Content:
|
19
19
|
Longest 3 tasks:
|
20
|
-
- total time:
|
21
|
-
- total time:
|
22
|
-
- total time:
|
20
|
+
- total time: 11 ms, event: (eventKey: r-62, ts: 2297273193336)
|
21
|
+
- total time: 3 ms, event: (eventKey: r-723, ts: 2297274436743)
|
22
|
+
- total time: 2 ms, event: (eventKey: r-631, ts: 2297274234151)
|
23
23
|
=== end content
|
24
24
|
|
25
25
|
Title: PerformanceTraceFormatter formatMainThreadBottomUpSummary
|
26
26
|
Content:
|
27
27
|
This is the bottom-up summary for the entire trace. Only the top 10 activities (sorted by self time) are shown. An activity is all the aggregated time spent on the same type of work. For example, it can be all the time spent in a specific JavaScript function, or all the time spent in a specific browser rendering stage (like layout, v8 compile, parsing html). "Self time" represents the aggregated time spent directly in an activity, across all occurrences. "Total time" represents the aggregated time spent in an activity or any of its children.
|
28
28
|
|
29
|
-
- self: 186
|
30
|
-
- self: 98
|
31
|
-
- self:
|
32
|
-
- self:
|
33
|
-
- self:
|
29
|
+
- self: 186 ms, total: 193 ms, source: Compile code
|
30
|
+
- self: 98 ms, total: 993 ms, source: Task
|
31
|
+
- self: 56 ms, total: 70 ms, source: Compile script
|
32
|
+
- self: 52 ms, total: 64 ms, source: setTimeout
|
33
|
+
- self: 38 ms, total: 40 ms, source: aC (url: https://s.yimg.com/aaq/f10d509c/d1irmdsmbztlvx.js, line: 0, column: 19068)
|
34
34
|
- self: 35 ms, total: 35 ms, source: Recalculate style (url: https://news.yahoo.com/, line: 57, column: 187957)
|
35
|
-
- self:
|
36
|
-
- self: 31
|
37
|
-
- self: 30
|
38
|
-
- self:
|
35
|
+
- self: 34 ms, total: 34 ms, source: Layout (url: https://news.yahoo.com/, line: 57, column: 187957)
|
36
|
+
- self: 31 ms, total: 34 ms, source: clearTimeout
|
37
|
+
- self: 30 ms, total: 53 ms, source: Parse HTML
|
38
|
+
- self: 26 ms, total: 259 ms, source: Function call
|
39
39
|
=== end content
|
40
40
|
|
41
41
|
Title: PerformanceTraceFormatter formatThirdPartySummary
|
42
42
|
Content:
|
43
43
|
Third party summary:
|
44
|
-
- name: Google/Doubleclick Ads, main thread time: 53
|
45
|
-
- name: Taboola, main thread time:
|
46
|
-
- name: Google Tag Manager, main thread time:
|
47
|
-
- name: AOL / Oath / Verizon Media, main thread time:
|
44
|
+
- name: Google/Doubleclick Ads, main thread time: 53 ms, network transfer size: 258.6 kB
|
45
|
+
- name: Taboola, main thread time: 43 ms, network transfer size: 393.6 kB
|
46
|
+
- name: Google Tag Manager, main thread time: 19 ms, network transfer size: 123.8 kB
|
47
|
+
- name: AOL / Oath / Verizon Media, main thread time: 5 ms, network transfer size: 42.3 kB
|
48
48
|
- name: ay.delivery, main thread time: 4 ms, network transfer size: 123 kB
|
49
49
|
=== end content
|
50
50
|
|
@@ -698,34 +698,34 @@ IMPORTANT: Never show eventKey to the user.
|
|
698
698
|
|
699
699
|
This is the bottom-up summary for the entire trace. Only the top 20 activities (sorted by self time) are shown. An activity is all the aggregated time spent on the same type of work. For example, it can be all the time spent in a specific JavaScript function, or all the time spent in a specific browser rendering stage (like layout, v8 compile, parsing html). "Self time" represents the aggregated time spent directly in an activity, across all occurrences. "Total time" represents the aggregated time spent in an activity or any of its children.
|
700
700
|
|
701
|
-
- self: 148
|
702
|
-
- self: 71 ms, total:
|
703
|
-
- self: 49
|
704
|
-
- self:
|
701
|
+
- self: 148 ms, total: 153 ms, source: Compile code
|
702
|
+
- self: 71 ms, total: 772 ms, source: Task
|
703
|
+
- self: 49 ms, total: 55 ms, source: Compile script
|
704
|
+
- self: 49 ms, total: 61 ms, source: setTimeout
|
705
705
|
- self: 31 ms, total: 31 ms, source: Layout (url: https://news.yahoo.com/, line: 57, column: 187957)
|
706
|
-
- self:
|
707
|
-
- self: 29
|
708
|
-
- self:
|
709
|
-
- self:
|
710
|
-
- self:
|
711
|
-
- self:
|
712
|
-
- self: 12
|
713
|
-
- self: 12
|
714
|
-
- self: 11
|
715
|
-
- self: 11
|
716
|
-
- self: 10
|
717
|
-
- self:
|
718
|
-
- self:
|
719
|
-
- self:
|
720
|
-
- self: 7
|
706
|
+
- self: 31 ms, total: 31 ms, source: Recalculate style (url: https://news.yahoo.com/, line: 57, column: 187957)
|
707
|
+
- self: 29 ms, total: 32 ms, source: clearTimeout
|
708
|
+
- self: 27 ms, total: 50 ms, source: Parse HTML
|
709
|
+
- self: 18 ms, total: 19 ms, source: aC (url: https://s.yimg.com/aaq/f10d509c/d1irmdsmbztlvx.js, line: 0, column: 19068)
|
710
|
+
- self: 18 ms, total: 186 ms, source: (anonymous) (url: https://s.yimg.com/aaq/prebid/prebid-2.0.js, line: 5, column: 1)
|
711
|
+
- self: 16 ms, total: 226 ms, source: Function call
|
712
|
+
- self: 12 ms, total: 163 ms, source: (anonymous) (url: https://s.yimg.com/aaq/f10d509c/d1irmdsmbztlvx.js, line: 0, column: 0)
|
713
|
+
- self: 12 ms, total: 83 ms, source: (anonymous) (url: https://cdn.taboola.com/libtrc/yahooweb-network/loader.js, line: 0, column: 9)
|
714
|
+
- self: 11 ms, total: 12 ms, source: fetch
|
715
|
+
- self: 11 ms, total: 12 ms, source: evaluate
|
716
|
+
- self: 10 ms, total: 212 ms, source: Run microtasks
|
717
|
+
- self: 9 ms, total: 19 ms, source: (anonymous) (url: https://s.yimg.com/du/ay/wnsrvbjmeprtfrnfx.js, line: 0, column: 0)
|
718
|
+
- self: 9 ms, total: 10 ms, source: Minor GC
|
719
|
+
- self: 8 ms, total: 226 ms, source: Evaluate script
|
720
|
+
- self: 7 ms, total: 109 ms, source: n (url: https://s.yimg.com/aaq/prebid/prebid-2.0.js, line: 11, column: 4263)
|
721
721
|
|
722
722
|
# Third parties
|
723
723
|
|
724
|
-
- name: Yahoo!, main thread time:
|
725
|
-
- name: Taboola, main thread time: 41
|
724
|
+
- name: Yahoo!, main thread time: 214 ms, network transfer size: 2.4 MB
|
725
|
+
- name: Taboola, main thread time: 41 ms, network transfer size: 391.7 kB
|
726
726
|
- name: Google/Doubleclick Ads, main thread time: 41 ms, network transfer size: 225.7 kB
|
727
|
-
- name: Google Tag Manager, main thread time:
|
728
|
-
- name: AOL / Oath / Verizon Media, main thread time:
|
727
|
+
- name: Google Tag Manager, main thread time: 19 ms, network transfer size: 123.8 kB
|
728
|
+
- name: AOL / Oath / Verizon Media, main thread time: 5 ms, network transfer size: 42.3 kB
|
729
729
|
|
730
730
|
# Related insights
|
731
731
|
|
@@ -745,52 +745,52 @@ Network requests data:
|
|
745
745
|
|
746
746
|
allUrls = [0: https://news.yahoo.com/, 1: https://s.yimg.com/cv/apiv2/ngy-fonts/YahooSans-VF-Web.woff2, 2: https://s.yimg.com/aaq/wf/wf-loader-2.7.21-modern.js, 3: https://consent.cmp.oath.com/version/7.0.0/cmp.js, 4: https://s.yimg.com/oa/consent.js, 5: https://s.yimg.com/aaq/fp/js/tdv2-wafer-utils.customErrorHandler.bcda778b736c3a054af62f437b536e78.js, 6: https://s.yimg.com/aaq/scp/js/fpDesktop.46ec7cd52ee9f5c1236b0dea5072690a.js, 7: https://s.yimg.com/aaq/benji/benji-2.2.99.js, 8: https://s.yimg.com/aaq/wf/wf-caas-1.36.6-modern.js, 9: https://s.yimg.com/aaq/wf/wf-toggle-1.15.4-modern.js, 10: https://s.yimg.com/aaq/fp/js/react-wafer-featurebar.custom.modern.12732500bc8e47693f0d777bbe88001c.js, 11: https://s.yimg.com/aaq/wf/wf-bind-1.1.3-modern.js, 12: https://s.yimg.com/aaq/wf/wf-text-1.2.0-modern.js, 13: https://s.yimg.com/aaq/wf/wf-video-3.2.2-modern.js, 14: https://s.yimg.com/aaq/wf/wf-image-1.4.0-modern.js, 15: https://s.yimg.com/aaq/wf/wf-rapid-1.10.9-modern.js, 16: https://s.yimg.com/aaq/wf/wf-action-1.8.1-modern.js, 17: https://s.yimg.com/aaq/wf/wf-template-1.4.3-modern.js, 18: https://s.yimg.com/aaq/wf/wf-menu-1.3.5-modern.js, 19: https://s.yimg.com/aaq/wf/wf-fetch-1.19.1-modern.js, 20: https://s.yimg.com/aaq/wf/wf-beacon-1.3.4-modern.js, 21: https://s.yimg.com/aaq/wf/wf-benji-1.2.0-modern.js, 22: https://s.yimg.com/aaq/wf/wf-clipboard-copy-1.0.2-modern.js, 23: https://s.yimg.com/aaq/wf/wf-form-1.34.5-modern.js, 24: https://s.yimg.com/aaq/wf/wf-countdown-1.2.5-modern.js, 25: https://s.yimg.com/aaq/wf/wf-scrollview-2.23.3-modern.js, 26: https://s.yimg.com/aaq/wf/wf-lightbox-1.10.6-modern.js, 27: https://s.yimg.com/aaq/wf/wf-native-da-1.0.5-modern.js, 28: https://s.yimg.com/aaq/fp/js/react-wafer-stream.custom.modern.1ed4fe71b1fc647ddbf37a7050944309.js, 29: https://s.yimg.com/aaq/wf/wf-autocomplete-1.31.8-modern.js, 30: https://s.yimg.com/aaq/wf/wf-geolocation-1.3.0-modern.js, 31: https://s.yimg.com/aaq/wf/wf-sticky-1.2.6-modern.js, 32: https://s.yimg.com/aaq/c/25fa214.caas-news_web.min.js, 33: https://news.yahoo.com/info/p.gif?apptype=default&beaconType=pageRenderStart&code=pageRender&bucket=ushnel-ibv2-ctrl%2CCurrentlyDesktopUH3Test1-updated%2Cusnel-batchconfig-ctrl%2Cseamless&device=desktop&intl=us&rid=1oa3lh9juean4&site=news&t=1743203044494, 34: https://s.yimg.com/aaq/f10d509c/d1irmdsmbztlvx.js, 35: https://noa.yahoo.com/p?s=1197800621&t=1743203044438&_I=&_AO=0&_NOL=0&etrg=backgroundPost&outcm=gamDebug&src=unknown&site=news&partner=none&lang=en-US®ion=US&device=desktop&colo=gq1&bucket=ushnel-ibv2-ctrl%2CCurrentlyDesktopUH3Test1-updated%2Cusnel-batchconfig-ctrl%2Cseamless%2Cdmi_consent_false&rid=1oa3lh9juean4&limitedAds=false&NPA=false&pd=unknown&pt=unknown&usercountry=US&benjiVersion=2.2.99&prebidVersion=unknown&yahooPrebidVersion=unknown&type=SIGNALS_SESSION_START, 36: https://signal-service.pbs.yahoo.com/v1/signal/refresh, 37: https://securepubads.g.doubleclick.net/tag/js/gpt.js, 38: https://noa.yahoo.com/p?s=1197800621&t=1743203044440&_I=&_AO=0&_NOL=0&etrg=backgroundPost&outcm=gamDebug&src=unknown&site=news&partner=none&lang=en-US®ion=US&device=desktop&colo=gq1&bucket=ushnel-ibv2-ctrl%2CCurrentlyDesktopUH3Test1-updated%2Cusnel-batchconfig-ctrl%2Cseamless%2Cdmi_consent_false&rid=1oa3lh9juean4&limitedAds=false&NPA=false&pd=unknown&pt=unknown&usercountry=US&benjiVersion=2.2.99&prebidVersion=unknown&yahooPrebidVersion=unknown&type=PREBID_SESSION_START, 39: https://s.yimg.com/du/ay/wnsrvbjmeprtfrnfx.js, 40: https://s.yimg.com/aaq/prebid/prebid-2.0.js, 41: https://s.yimg.com/eh/prebid-config/bp-news.json, 42: https://noa.yahoo.com/p?s=1197800621&t=1743203044441&_I=&_AO=0&_NOL=0&etrg=backgroundPost&outcm=taboolaDebug&src=unknown&site=news&partner=none&lang=en-US®ion=US&device=desktop&colo=gq1&bucket=ushnel-ibv2-ctrl%2CCurrentlyDesktopUH3Test1-updated%2Cusnel-batchconfig-ctrl%2Cseamless%2Cdmi_consent_false&rid=1oa3lh9juean4&limitedAds=false&NPA=false&pd=unknown&pt=home&usercountry=US&benjiVersion=2.2.99&prebidVersion=unknown&yahooPrebidVersion=unknown&type=TABOOLA_SESSION_START, 43: https://cdn.taboola.com/libtrc/yahooweb-network/loader.js, 44: https://opus.analytics.yahoo.com/tag/opus.js, 45: https://noa.yahoo.com/p?s=1197800621&t=1743203044441&_I=&_AO=0&_NOL=0&etrg=backgroundPost&outcm=gamDebug&src=unknown&site=news&partner=none&lang=en-US®ion=US&device=desktop&colo=gq1&bucket=ushnel-ibv2-ctrl%2CCurrentlyDesktopUH3Test1-updated%2Cusnel-batchconfig-ctrl%2Cseamless%2Cdmi_consent_false&rid=1oa3lh9juean4&limitedAds=false&NPA=false&pd=unknown&pt=home&usercountry=US&benjiVersion=2.2.99&prebidVersion=unknown&yahooPrebidVersion=unknown&type=BENJI_SESSION_START]
|
747
747
|
|
748
|
-
0;0.4 ms;3
|
749
|
-
1;220 ms;224
|
750
|
-
2;
|
751
|
-
3;
|
752
|
-
4;
|
753
|
-
5;
|
754
|
-
6;
|
755
|
-
7;
|
756
|
-
8;
|
757
|
-
9;254 ms;257
|
758
|
-
10;254 ms;257
|
759
|
-
11;254 ms;257
|
760
|
-
12;254
|
761
|
-
13;254
|
762
|
-
14;254
|
763
|
-
15;254
|
764
|
-
16;254
|
765
|
-
17;254
|
766
|
-
18;254
|
767
|
-
19;254
|
768
|
-
20;254
|
769
|
-
21;254
|
770
|
-
22;254
|
771
|
-
23;254
|
772
|
-
24;254
|
773
|
-
25;
|
774
|
-
26;
|
775
|
-
27;
|
776
|
-
28;
|
777
|
-
29;
|
778
|
-
30;
|
779
|
-
31;
|
780
|
-
32;
|
781
|
-
33;
|
782
|
-
34;
|
783
|
-
35;
|
784
|
-
36;
|
785
|
-
37;
|
786
|
-
38;272 ms;273
|
787
|
-
39;272
|
788
|
-
40;272
|
789
|
-
41;272
|
790
|
-
42;273
|
791
|
-
43;273
|
792
|
-
44;
|
793
|
-
45;
|
748
|
+
0;0.4 ms;3 ms;393 ms;493 ms;492 ms;177 ms;100 ms;200;text/html;VeryHigh;VeryHigh;VeryHigh;f;h2;f;;[];[strict-transport-security: max-age=31536000|content-security-policy: frame-ancestors 'self' https://*.builtbygirls.com https://*.rivals.com https://*.engadget.com https://*.intheknow.com https://*.autoblog.com https://*.techcrunch.com https://*.yahoo.com https://*.aol.com https://*.huffingtonpost.com https://*.oath.com https://*.search.yahoo.com https://*.pnr.ouryahoo.com https://pnr.ouryahoo.com https://*.search.aol.com https://*.search.huffpost.com https://*.onesearch.com https://*.verizonmedia.com https://*.publishing.oath.com https://*.autoblog.com; sandbox allow-forms allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox allow-presentation; report-uri https://csp.yahoo.com/beacon/csp?src=ats&site=news®ion=US&lang=en-US&device=desktop&yrid=1oa3lh9juean4&partner=;|content-encoding: gzip|x-envoy-upstream-service-time: <redacted>|age: 0|expect-ct: max-age=31536000, report-uri="http://csp.yahoo.com/beacon/csp?src=yahoocom-expect-ct-report-only|referrer-policy: <redacted>|x-content-type-options: nosniff|x-xss-protection: 1; mode=block|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: text/html; charset=utf-8|vary: Accept-Encoding|server: ATS|x-frame-options: SAMEORIGIN]
|
749
|
+
1;220 ms;224 ms;306 ms;340 ms;120 ms;54 ms;34 ms;200;font/woff2;High;High;High;f;h2;f;0;[];[etag: <redacted>|age: 1586039|date: Mon, 10 Mar 2025 14:30:06 GMT|last-modified: Mon, 30 Nov 2020 20:20:29 GMT|content-type: font/woff2|vary: Origin|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|access-control-allow-origin: *|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
750
|
+
2;253 ms;257 ms;260 ms;261 ms;8 ms;2 ms;0.8 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1678049|x-amz-version-id: <redacted>|date: Sun, 09 Mar 2025 12:55:21 GMT|content-type: application/javascript|last-modified: Mon, 16 Sep 2024 04:28:36 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
751
|
+
3;254 ms;258 ms;282 ms;284 ms;30 ms;2 ms;2 ms;200;application/javascript;Low;Low;Low;f;h2;f;0;[];[x-amz-cf-pop: <redacted>|vary: accept-encoding|cache-control: max-age=3600|content-encoding: gzip|etag: <redacted>|age: 2567|via: 1.1 d8792dbd3191bbe722eba5b536b979c8.cloudfront.net (CloudFront)|x-cache: <redacted>|x-amz-cf-id: <redacted>|date: Fri, 28 Mar 2025 22:21:18 GMT|content-type: application/javascript|last-modified: Thu, 14 Nov 2024 18:50:18 GMT|x-amz-expiration: <redacted>|server: AmazonS3|x-amz-server-side-encryption: <redacted>]
|
752
|
+
4;254 ms;259 ms;319 ms;340 ms;87 ms;39 ms;22 ms;200;application/javascript;Low;Low;Low;f;h2;f;0;[];[content-encoding: gzip|etag: <redacted>|age: 11|date: Fri, 28 Mar 2025 23:03:54 GMT|last-modified: Thu, 27 Mar 2025 06:47:41 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: max-age=300|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
753
|
+
5;254 ms;257 ms;260 ms;261 ms;7 ms;2 ms;1 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1189304|x-amz-version-id: <redacted>|date: Sat, 15 Mar 2025 04:41:06 GMT|content-type: application/javascript|last-modified: Wed, 22 Nov 2023 02:30:41 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
754
|
+
6;254 ms;257 ms;260 ms;261 ms;7 ms;2 ms;0.7 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1180484|x-amz-version-id: <redacted>|date: Sat, 15 Mar 2025 07:08:06 GMT|content-type: application/javascript|last-modified: Tue, 17 Sep 2024 14:42:49 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
755
|
+
7;254 ms;257 ms;262 ms;266 ms;13 ms;4 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 779545|x-amz-version-id: <redacted>|date: Wed, 19 Mar 2025 22:30:25 GMT|content-type: application/javascript|last-modified: Wed, 19 Mar 2025 21:18:45 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
756
|
+
8;254 ms;257 ms;263 ms;263 ms;9 ms;4 ms;0.4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1404952|x-amz-version-id: <redacted>|date: Wed, 12 Mar 2025 16:46:58 GMT|content-type: application/javascript|last-modified: Mon, 24 Jun 2024 16:46:18 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
757
|
+
9;254 ms;257 ms;263 ms;264 ms;10 ms;4 ms;0.8 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 116033|x-amz-version-id: <redacted>|date: Thu, 27 Mar 2025 14:48:58 GMT|content-type: application/javascript|last-modified: Wed, 20 Apr 2022 09:12:23 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
758
|
+
10;254 ms;257 ms;263 ms;264 ms;10 ms;4 ms;0.6 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1665967|x-amz-version-id: <redacted>|date: Sun, 09 Mar 2025 16:16:43 GMT|content-type: application/javascript|last-modified: Thu, 04 Aug 2022 04:32:27 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
759
|
+
11;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 335566|x-amz-version-id: <redacted>|date: Tue, 25 Mar 2025 01:50:04 GMT|content-type: application/javascript|last-modified: Tue, 11 Jan 2022 10:14:03 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
760
|
+
12;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1262862|x-amz-version-id: <redacted>|date: Fri, 14 Mar 2025 08:15:08 GMT|content-type: application/javascript|last-modified: Mon, 23 Aug 2021 06:24:25 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
761
|
+
13;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 110834|x-amz-version-id: <redacted>|date: Thu, 27 Mar 2025 16:15:36 GMT|content-type: application/javascript|last-modified: Mon, 16 Sep 2024 04:28:36 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
762
|
+
14;254 ms;257 ms;263 ms;266 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1036009|x-amz-version-id: <redacted>|date: Sun, 16 Mar 2025 23:16:01 GMT|content-type: application/javascript|last-modified: Fri, 15 Apr 2022 16:44:15 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
763
|
+
15;254 ms;257 ms;263 ms;267 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 197559|x-amz-version-id: <redacted>|date: Wed, 26 Mar 2025 16:10:12 GMT|content-type: application/javascript|last-modified: Tue, 02 Jul 2024 08:11:25 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
764
|
+
16;254 ms;257 ms;263 ms;267 ms;12 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1373344|x-amz-version-id: <redacted>|date: Thu, 13 Mar 2025 01:33:47 GMT|content-type: application/javascript|last-modified: Thu, 21 Dec 2023 17:55:26 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
765
|
+
17;254 ms;257 ms;263 ms;267 ms;13 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 272797|x-amz-version-id: <redacted>|date: Tue, 25 Mar 2025 19:16:13 GMT|content-type: application/javascript|last-modified: Wed, 21 Sep 2022 02:22:21 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
766
|
+
18;254 ms;257 ms;264 ms;267 ms;13 ms;4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 687342|x-amz-version-id: <redacted>|date: Fri, 21 Mar 2025 00:07:08 GMT|content-type: application/javascript|last-modified: Mon, 20 May 2024 05:06:00 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
767
|
+
19;254 ms;257 ms;264 ms;267 ms;13 ms;3 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 412067|x-amz-version-id: <redacted>|date: Mon, 24 Mar 2025 04:35:03 GMT|content-type: application/javascript|last-modified: Fri, 20 Oct 2023 09:18:13 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
768
|
+
20;254 ms;257 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1630236|x-amz-version-id: <redacted>|date: Mon, 10 Mar 2025 02:12:14 GMT|content-type: application/javascript|last-modified: Mon, 13 Feb 2023 05:31:36 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
769
|
+
21;254 ms;258 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 226768|x-amz-version-id: <redacted>|date: Wed, 26 Mar 2025 08:03:23 GMT|content-type: application/javascript|last-modified: Mon, 20 May 2024 21:26:01 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
770
|
+
22;254 ms;258 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1033339|x-amz-version-id: <redacted>|date: Mon, 17 Mar 2025 00:00:31 GMT|content-type: application/javascript|last-modified: Mon, 24 May 2021 16:40:35 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
771
|
+
23;254 ms;258 ms;264 ms;267 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 950151|x-amz-version-id: <redacted>|date: Mon, 17 Mar 2025 23:06:59 GMT|content-type: application/javascript|last-modified: Mon, 13 Nov 2023 22:30:39 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
772
|
+
24;254 ms;258 ms;264 ms;268 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 903529|x-amz-version-id: <redacted>|date: Tue, 18 Mar 2025 12:04:01 GMT|content-type: application/javascript|last-modified: Sun, 13 Sep 2020 18:50:05 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=315360000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
773
|
+
25;255 ms;258 ms;264 ms;268 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 108194|x-amz-version-id: <redacted>|date: Thu, 27 Mar 2025 16:59:36 GMT|content-type: application/javascript|last-modified: Thu, 13 Jun 2024 07:21:57 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
774
|
+
26;255 ms;258 ms;264 ms;268 ms;13 ms;3 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 1047519|x-amz-version-id: <redacted>|date: Sun, 16 Mar 2025 20:04:11 GMT|content-type: application/javascript|last-modified: Wed, 01 Mar 2023 01:43:59 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
775
|
+
27;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 15169|x-amz-version-id: <redacted>|date: Fri, 28 Mar 2025 18:50:01 GMT|content-type: application/javascript|last-modified: Wed, 13 Mar 2024 00:20:57 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
776
|
+
28;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 277599|x-amz-version-id: <redacted>|date: Tue, 25 Mar 2025 17:56:11 GMT|content-type: application/javascript|last-modified: Sat, 02 Dec 2023 00:17:32 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
777
|
+
29;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 538292|x-amz-version-id: <redacted>|date: Sat, 22 Mar 2025 17:31:18 GMT|content-type: application/javascript|last-modified: Mon, 04 Dec 2023 12:09:37 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
778
|
+
30;255 ms;258 ms;264 ms;268 ms;13 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 185757|x-amz-version-id: <redacted>|date: Wed, 26 Mar 2025 19:26:54 GMT|content-type: application/javascript|last-modified: Sun, 26 Jun 2022 23:02:47 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
779
|
+
31;255 ms;258 ms;264 ms;268 ms;14 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 653962|x-amz-version-id: <redacted>|date: Fri, 21 Mar 2025 09:23:28 GMT|content-type: application/javascript|last-modified: Fri, 26 Jan 2024 23:41:32 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
780
|
+
32;255 ms;258 ms;264 ms;268 ms;14 ms;2 ms;4 ms;200;application/javascript;Low;Low;Low;f;h2;t;0;[];[content-encoding: gzip|etag: <redacted>|age: 67892|x-amz-version-id: <redacted>|date: Fri, 28 Mar 2025 04:11:18 GMT|content-type: application/javascript|last-modified: Fri, 28 Mar 2025 02:55:19 GMT|vary: Origin, Accept-Encoding|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=31536000|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
781
|
+
33;256 ms;258 ms;306 ms;306 ms;51 ms;0.4 ms;0.8 ms;204;image/gif;Low;Low;Low;f;h2;f;0;[];[strict-transport-security: max-age=31536000|content-security-policy: frame-ancestors 'self' https://*.builtbygirls.com https://*.rivals.com https://*.engadget.com https://*.intheknow.com https://*.autoblog.com https://*.techcrunch.com https://*.yahoo.com https://*.aol.com https://*.huffingtonpost.com https://*.oath.com https://*.search.yahoo.com https://*.pnr.ouryahoo.com https://pnr.ouryahoo.com https://*.search.aol.com https://*.search.huffpost.com https://*.onesearch.com https://*.verizonmedia.com https://*.publishing.oath.com https://*.autoblog.com; sandbox allow-forms allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox allow-presentation; report-uri https://csp.yahoo.com/beacon/csp?src=ats&site=news®ion=US&lang=en-US&device=desktop&yrid=5agdahtjuean4&partner=;|cache-control: max-age=0, private|x-envoy-upstream-service-time: <redacted>|age: 0|expect-ct: max-age=31536000, report-uri="http://csp.yahoo.com/beacon/csp?src=yahoocom-expect-ct-report-only|referrer-policy: <redacted>|content-security-policy-report-only: <redacted>|x-content-type-options: nosniff|expires: -1|x-xss-protection: 1; mode=block|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|x-powered-by: Express|server: ATS]
|
782
|
+
34;271 ms;276 ms;336 ms;341 ms;70 ms;17 ms;5 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|x-amz-version-id: <redacted>|etag: <redacted>|age: 1195|date: Fri, 28 Mar 2025 22:44:10 GMT|last-modified: Tue, 25 Mar 2025 14:28:13 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=1800|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
783
|
+
35;271 ms;272 ms;301 ms;306 ms;36 ms;0.7 ms;5 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
784
|
+
36;272 ms;334 ms;373 ms;483 ms;212 ms;0.2 ms;110 ms;200;application/json;High;High;High;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|x-envoy-upstream-service-time: <redacted>|age: 0|access-control-allow-credentials: true|x-content-type-options: nosniff|referrer-policy: <redacted>|x-envoy-decorator-operation: <redacted>|access-control-allow-origin: https://news.yahoo.com|content-length: <redacted>|x-xss-protection: 1; mode=block|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: application/json|vary: Origin,Accept-Encoding|server: ATS|x-frame-options: SAMEORIGIN]
|
785
|
+
37;272 ms;276 ms;317 ms;340 ms;68 ms;1 ms;24 ms;200;text/javascript;Low;Low;Low;f;h3;f;0,7;[];[content-encoding: br|etag: <redacted>|x-content-type-options: nosniff|expires: Fri, 28 Mar 2025 23:04:04 GMT|alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000|p3p: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: text/javascript; charset=UTF-8|vary: Accept-Encoding|content-disposition: attachment; filename="f.txt"|cache-control: private, max-age=900, stale-while-revalidate=3600|timing-allow-origin: *|cross-origin-resource-policy: <redacted>|access-control-allow-origin: *|content-length: <redacted>|x-xss-protection: 0|server: cafe]
|
786
|
+
38;272 ms;273 ms;301 ms;307 ms;35 ms;0.9 ms;6 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
787
|
+
39;272 ms;276 ms;338 ms;341 ms;69 ms;2 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|etag: <redacted>|age: 304|date: Fri, 28 Mar 2025 22:59:01 GMT|last-modified: Mon, 20 Jan 2025 00:24:25 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=600|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
788
|
+
40;272 ms;276 ms;369 ms;440 ms;168 ms;31 ms;71 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|x-amz-version-id: <redacted>|etag: <redacted>|age: 1207|date: Fri, 28 Mar 2025 22:43:58 GMT|last-modified: Thu, 27 Mar 2025 19:05:16 GMT|vary: Origin, Accept-Encoding|content-type: application/javascript|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=1800|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
789
|
+
41;272 ms;273 ms;307 ms;350 ms;77 ms;0.5 ms;43 ms;200;application/json;High;High;High;f;h2;f;0,7;[];[access-control-max-age: 3000|access-control-expose-headers: Access-Control-Allow-Origin|content-encoding: gzip|etag: <redacted>|age: 203|access-control-allow-methods: GET, HEAD|date: Fri, 28 Mar 2025 23:00:42 GMT|last-modified: Fri, 28 Mar 2025 21:13:20 GMT|vary: Origin, Access-Control-Request-Headers, Access-Control-Request-Method, Accept-Encoding|content-type: application/json|x-amz-id-2: <redacted>|strict-transport-security: max-age=31536000|cache-control: public,max-age=86400|ats-carp-promotion: <redacted>|referrer-policy: <redacted>|x-amz-request-id: <redacted>|accept-ranges: bytes|access-control-allow-origin: *|content-length: <redacted>|server: ATS|x-amz-server-side-encryption: <redacted>]
|
790
|
+
42;273 ms;274 ms;301 ms;307 ms;34 ms;0.8 ms;6 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
791
|
+
43;273 ms;276 ms;322 ms;341 ms;67 ms;6 ms;18 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[content-encoding: gzip|etag: <redacted>|x-amz-version-id: <redacted>|age: 63|x-cache: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|last-modified: Thu, 27 Mar 2025 14:46:52 GMT|x-served-by: <redacted>|x-cache-hits: <redacted>|content-type: application/javascript; charset=utf-8|x-amz-id-2: <redacted>|vary: Accept-Encoding|x-amz-replication-status: <redacted>|cache-control: private,max-age=14401|x-timer: <redacted>|via: 1.1 varnish|x-amz-request-id: <redacted>|accept-ranges: bytes|access-control-allow-origin: *|abp: <redacted>|content-length: <redacted>|server: AmazonS3|x-amz-server-side-encryption: <redacted>]
|
792
|
+
44;274 ms;275 ms;296 ms;300 ms;26 ms;0.4 ms;3 ms;200;application/javascript;Low;Low;Low;f;h2;f;0,7;[];[x-amz-cf-pop: <redacted>|content-security-policy: default-src https:; script-src https: 'unsafe-inline'; style-src https: 'unsafe-inline'|content-encoding: gzip|etag: <redacted>|age: 54075|via: 1.1 7e87179efaa9e3c316bd3d3a74cfded8.cloudfront.net (CloudFront)|x-cache: <redacted>|x-amz-cf-id: <redacted>|date: Fri, 28 Mar 2025 08:02:50 GMT|content-type: application/javascript|vary: Accept-Encoding|server: AmazonS3|last-modified: Wed, 12 Mar 2025 14:48:50 GMT|x-amz-server-side-encryption: <redacted>]
|
793
|
+
45;274 ms;276 ms;305 ms;340 ms;66 ms;0.3 ms;34 ms;200;image/gif;VeryLow;VeryLow;VeryLow;f;h2;f;0,7;[];[strict-transport-security: max-age=31536000|cache-control: no-cache, no-store, private|pragma: no-cache|x-envoy-upstream-service-time: <redacted>|age: 0|p3p: <redacted>|content-length: <redacted>|date: Fri, 28 Mar 2025 23:04:04 GMT|content-type: image/gif|server: ATS]
|
794
794
|
|
795
795
|
# Related insights
|
796
796
|
|
@@ -833,8 +833,8 @@ Network throttling: none
|
|
833
833
|
Metrics (lab / observed):
|
834
834
|
- LCP: 118 ms, event: (eventKey: r-1802, ts: 1020034953358)
|
835
835
|
- LCP breakdown:
|
836
|
-
- TTFB: 31
|
837
|
-
- Render delay: 87
|
836
|
+
- TTFB: 31 ms, bounds: {min: 1020034834921, max: 1020034866264}
|
837
|
+
- Render delay: 87 ms, bounds: {min: 1020034866264, max: 1020034953358}
|
838
838
|
- CLS: 0.00
|
839
839
|
Metrics (field / real users): n/a – no data for this page in CrUX
|
840
840
|
Available insights:
|
@@ -866,10 +866,10 @@ Network throttling: none
|
|
866
866
|
Metrics (lab / observed):
|
867
867
|
- LCP: 464 ms, event: (eventKey: r-33210, ts: 157423953162)
|
868
868
|
- LCP breakdown:
|
869
|
-
- TTFB:
|
870
|
-
- Load delay: 90
|
869
|
+
- TTFB: 216 ms, bounds: {min: 157423488682, max: 157423704371}
|
870
|
+
- Load delay: 90 ms, bounds: {min: 157423704371, max: 157423794709}
|
871
871
|
- Load duration: 64 ms, bounds: {min: 157423794709, max: 157423858674}
|
872
|
-
- Render delay: 94
|
872
|
+
- Render delay: 94 ms, bounds: {min: 157423858674, max: 157423953162}
|
873
873
|
- CLS: 0.04, event: (eventKey: s--1, ts: 157425604232)
|
874
874
|
Metrics (field / real users): n/a – no data for this page in CrUX
|
875
875
|
Available insights:
|
@@ -919,6 +919,70 @@ Available insights:
|
|
919
919
|
example question: How can I reduce the amount of legacy JavaScript on my page?
|
920
920
|
=== end content
|
921
921
|
|
922
|
+
Title: PerformanceTraceFormatter formatTraceSummary deals with CrUX manager errors
|
923
|
+
Content:
|
924
|
+
URL: http://localhost/image-delivery-cases.html
|
925
|
+
Bounds: {min: 59728641874, max: 59734400108}
|
926
|
+
CPU throttling: 1x
|
927
|
+
Network throttling: No throttling
|
928
|
+
Metrics (lab / observed):
|
929
|
+
- LCP: 663 ms, event: (eventKey: r-14753, ts: 59729312744)
|
930
|
+
- LCP breakdown:
|
931
|
+
- TTFB: 7 ms, bounds: {min: 59728649746, max: 59728656735}
|
932
|
+
- Load delay: 46 ms, bounds: {min: 59728656735, max: 59728702313}
|
933
|
+
- Load duration: 506 ms, bounds: {min: 59728702313, max: 59729208600}
|
934
|
+
- Render delay: 104 ms, bounds: {min: 59729208600, max: 59729312744}
|
935
|
+
- CLS: 0.31, event: (eventKey: s--1, ts: 59729100192)
|
936
|
+
Metrics (field / real users): n/a – no data for this page in CrUX
|
937
|
+
Available insights:
|
938
|
+
- insight name: Cache
|
939
|
+
description: A long cache lifetime can speed up repeat visits to your page. [Learn more](https://web.dev/uses-long-cache-ttl/).
|
940
|
+
relevant trace bounds: {min: 59728702014, max: 59728867430}
|
941
|
+
estimated metric savings: FCP 0 ms, LCP 150 ms
|
942
|
+
estimated wasted bytes: 971.5 kB
|
943
|
+
example question: What caching strategies can I apply to improve my page performance?
|
944
|
+
- insight name: ImageDelivery
|
945
|
+
description: Reducing the download time of images can improve the perceived load time of the page and LCP. [Learn more about optimizing image size](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)
|
946
|
+
relevant trace bounds: {min: 59728701403, max: 59729395208}
|
947
|
+
estimated metric savings: FCP 0 ms, LCP 100 ms
|
948
|
+
estimated wasted bytes: 2 MB
|
949
|
+
example question: What should I do to improve and optimize the time taken to fetch and display images on the page?
|
950
|
+
example question: Are all images on my site optimized?
|
951
|
+
- insight name: LCPBreakdown
|
952
|
+
description: Each [subpart has specific improvement strategies](https://web.dev/articles/optimize-lcp#lcp-breakdown). Ideally, most of the LCP time should be spent on loading the resources, not within delays.
|
953
|
+
relevant trace bounds: {min: 59728649746, max: 59729312744}
|
954
|
+
example question: Help me optimize my LCP score
|
955
|
+
example question: Which LCP phase was most problematic?
|
956
|
+
example question: What can I do to reduce the LCP time for this page load?
|
957
|
+
- insight name: LCPDiscovery
|
958
|
+
description: Optimize LCP by making the LCP image [discoverable](https://web.dev/articles/optimize-lcp#1_eliminate_resource_load_delay) from the HTML immediately, and [avoiding lazy-loading](https://web.dev/articles/lcp-lazy-loading)
|
959
|
+
relevant trace bounds: {min: 59728656735, max: 59729209036}
|
960
|
+
example question: Suggest fixes to reduce my LCP
|
961
|
+
example question: What can I do to reduce my LCP discovery time?
|
962
|
+
example question: Why is LCP discovery time important?
|
963
|
+
- insight name: CLSCulprits
|
964
|
+
description: Layout shifts occur when elements move absent any user interaction. [Investigate the causes of layout shifts](https://web.dev/articles/optimize-cls), such as elements being added, removed, or their fonts changing as the page loads.
|
965
|
+
relevant trace bounds: {min: 59729100192, max: 59730317334}
|
966
|
+
example question: Help me optimize my CLS score
|
967
|
+
example question: How can I prevent layout shifts on this page?
|
968
|
+
- insight name: DocumentLatency
|
969
|
+
description: Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
|
970
|
+
relevant trace bounds: {min: 59728651057, max: 59728790724}
|
971
|
+
estimated metric savings: FCP 0 ms, LCP 0 ms
|
972
|
+
estimated wasted bytes: 1.6 kB
|
973
|
+
example question: How do I decrease the initial loading time of my page?
|
974
|
+
example question: Did anything slow down the request for this document?
|
975
|
+
- insight name: Viewport
|
976
|
+
description: Tap interactions may be [delayed by up to 300 ms](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/) if the viewport is not optimized for mobile.
|
977
|
+
relevant trace bounds: {min: 59728649746, max: 59734400108}
|
978
|
+
estimated metric savings: INP 0 ms
|
979
|
+
example question: How do I make sure my page is optimized for mobile viewing?
|
980
|
+
- insight name: ThirdParties
|
981
|
+
description: 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.
|
982
|
+
relevant trace bounds: {min: 59728701403, max: 59729465969}
|
983
|
+
example question: Which third parties are having the largest impact on my page performance?
|
984
|
+
=== end content
|
985
|
+
|
922
986
|
Title: PerformanceTraceFormatter formatTraceSummary image-delivery.json.gz
|
923
987
|
Content:
|
924
988
|
URL: http://localhost/image-delivery-cases.html
|
@@ -929,9 +993,9 @@ Metrics (lab / observed):
|
|
929
993
|
- LCP: 663 ms, event: (eventKey: r-14753, ts: 59729312744)
|
930
994
|
- LCP breakdown:
|
931
995
|
- TTFB: 7 ms, bounds: {min: 59728649746, max: 59728656735}
|
932
|
-
- Load delay:
|
933
|
-
- Load duration: 506
|
934
|
-
- Render delay: 104
|
996
|
+
- Load delay: 46 ms, bounds: {min: 59728656735, max: 59728702313}
|
997
|
+
- Load duration: 506 ms, bounds: {min: 59728702313, max: 59729208600}
|
998
|
+
- Render delay: 104 ms, bounds: {min: 59729208600, max: 59729312744}
|
935
999
|
- CLS: 0.31, event: (eventKey: s--1, ts: 59729100192)
|
936
1000
|
Metrics (field / real users):
|
937
1001
|
- LCP: 1740 ms (scope: url)
|