chrome-devtools-frontend 1.0.1515796 → 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.
Files changed (129) hide show
  1. package/docs/contributing/infrastructure.md +131 -82
  2. package/front_end/Tests.js +3 -29
  3. package/front_end/core/common/Progress.ts +73 -55
  4. package/front_end/core/host/UserMetrics.ts +0 -1
  5. package/front_end/core/protocol_client/InspectorBackend.ts +2 -0
  6. package/front_end/core/root/Runtime.ts +0 -1
  7. package/front_end/core/sdk/CSSMatchedStyles.ts +12 -10
  8. package/front_end/core/sdk/CSSModel.ts +1 -31
  9. package/front_end/core/sdk/CSSPropertyParserMatchers.ts +27 -7
  10. package/front_end/core/sdk/DebuggerModel.ts +1 -31
  11. package/front_end/core/sdk/EnhancedTracesParser.ts +81 -50
  12. package/front_end/core/sdk/NetworkManager.ts +1 -31
  13. package/front_end/core/sdk/NetworkRequest.ts +1 -31
  14. package/front_end/core/sdk/RehydratingConnection.snapshot.txt +1003 -0
  15. package/front_end/core/sdk/RehydratingConnection.ts +13 -18
  16. package/front_end/core/sdk/RehydratingObject.ts +8 -31
  17. package/front_end/core/sdk/RemoteObject.ts +1 -31
  18. package/front_end/core/sdk/ResourceTreeModel.ts +1 -31
  19. package/front_end/core/sdk/RuntimeModel.ts +1 -31
  20. package/front_end/core/sdk/ServiceWorkerManager.ts +1 -31
  21. package/front_end/core/sdk/SourceMap.ts +1 -31
  22. package/front_end/core/sdk/TraceObject.ts +8 -3
  23. package/front_end/entrypoints/main/MainImpl.ts +0 -2
  24. package/front_end/models/ai_assistance/AiHistoryStorage.ts +1 -3
  25. package/front_end/models/ai_assistance/ConversationHandler.ts +4 -6
  26. package/front_end/models/ai_assistance/agents/AiAgent.ts +4 -1
  27. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +107 -72
  28. package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.ts +2 -2
  29. package/front_end/models/ai_assistance/agents/StylingAgent.ts +2 -2
  30. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +178 -85
  31. package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +308 -218
  32. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +100 -100
  33. package/front_end/models/ai_assistance/data_formatters/UnitFormatters.ts +10 -1
  34. package/front_end/models/ai_assistance/performance/AIContext.ts +19 -21
  35. package/front_end/models/bindings/ContentProviderBasedProject.ts +6 -4
  36. package/front_end/models/breakpoints/BreakpointManager.ts +3 -3
  37. package/front_end/models/har/Writer.ts +11 -11
  38. package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +3 -3
  39. package/front_end/models/persistence/IsolatedFileSystem.ts +4 -4
  40. package/front_end/models/persistence/IsolatedFileSystemManager.ts +7 -7
  41. package/front_end/models/persistence/PersistenceImpl.ts +8 -8
  42. package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
  43. package/front_end/models/trace/ModelImpl.ts +2 -16
  44. package/front_end/models/trace/Processor.ts +15 -9
  45. package/front_end/models/trace/handlers/AuctionWorkletsHandler.ts +4 -4
  46. package/front_end/models/trace/handlers/FramesHandler.ts +2 -2
  47. package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +7 -10
  48. package/front_end/models/trace/handlers/MetaHandler.ts +11 -9
  49. package/front_end/models/trace/handlers/ScreenshotsHandler.ts +1 -1
  50. package/front_end/models/trace/handlers/ScriptsHandler.ts +5 -5
  51. package/front_end/models/trace/handlers/UserInteractionsHandler.ts +2 -14
  52. package/front_end/models/trace/handlers/UserTimingsHandler.ts +3 -4
  53. package/front_end/models/trace/insights/CLSCulprits.ts +1 -1
  54. package/front_end/models/trace/insights/DocumentLatency.ts +3 -4
  55. package/front_end/models/trace/insights/DuplicatedJavaScript.ts +1 -1
  56. package/front_end/models/trace/insights/INPBreakdown.ts +1 -1
  57. package/front_end/models/trace/insights/ImageDelivery.ts +1 -1
  58. package/front_end/models/trace/insights/LCPBreakdown.ts +1 -1
  59. package/front_end/models/trace/insights/LCPDiscovery.ts +1 -1
  60. package/front_end/models/trace/insights/ModernHTTP.ts +1 -1
  61. package/front_end/models/trace/insights/NetworkDependencyTree.ts +1 -1
  62. package/front_end/models/trace/insights/RenderBlocking.ts +1 -1
  63. package/front_end/models/trace/insights/types.ts +2 -0
  64. package/front_end/models/trace/types/TraceEvents.ts +41 -64
  65. package/front_end/models/trace_source_maps_resolver/trace_source_maps_resolver.ts +1 -1
  66. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +21 -99
  67. package/front_end/panels/application/ServiceWorkersView.ts +0 -1
  68. package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +2 -3
  69. package/front_end/panels/common/GdpSignUpDialog.ts +6 -3
  70. package/front_end/panels/console/ConsoleView.ts +23 -28
  71. package/front_end/panels/console/ConsoleViewport.ts +2 -2
  72. package/front_end/panels/console/consoleView.css +11 -1
  73. package/front_end/panels/coverage/CoverageView.ts +2 -2
  74. package/front_end/panels/elements/ElementsTreeOutline.ts +2 -2
  75. package/front_end/panels/elements/StyleEditorWidget.ts +8 -19
  76. package/front_end/panels/elements/StylePropertyTreeElement.ts +39 -25
  77. package/front_end/panels/elements/StylesSidebarPane.ts +2 -2
  78. package/front_end/panels/elements/stylePropertiesTreeOutline.css +4 -3
  79. package/front_end/panels/layer_viewer/Layers3DView.ts +2 -2
  80. package/front_end/panels/layers/LayerTreeModel.ts +3 -3
  81. package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +4 -4
  82. package/front_end/panels/network/NetworkLogView.ts +1 -1
  83. package/front_end/panels/network/NetworkLogViewColumns.ts +3 -3
  84. package/front_end/panels/network/NetworkSearchScope.ts +6 -6
  85. package/front_end/panels/search/SearchView.ts +33 -32
  86. package/front_end/panels/settings/components/SyncSection.ts +6 -1
  87. package/front_end/panels/sources/SourcesSearchScope.ts +4 -4
  88. package/front_end/panels/sources/TabbedEditorContainer.ts +5 -5
  89. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +10 -5
  90. package/front_end/panels/timeline/TimelineFlameChartView.ts +18 -15
  91. package/front_end/panels/timeline/TimelinePanel.ts +41 -22
  92. package/front_end/panels/timeline/TracingLayerTree.ts +4 -5
  93. package/front_end/panels/timeline/components/ExportTraceOptions.ts +37 -22
  94. package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +17 -7
  95. package/front_end/third_party/axe-core/README.chromium +1 -0
  96. package/front_end/third_party/codemirror/README.chromium +1 -0
  97. package/front_end/third_party/codemirror.next/README.chromium +1 -0
  98. package/front_end/third_party/csp_evaluator/README.chromium +1 -0
  99. package/front_end/third_party/diff/README.chromium +1 -0
  100. package/front_end/third_party/i18n/README.chromium +1 -0
  101. package/front_end/third_party/intl-messageformat/README.chromium +1 -0
  102. package/front_end/third_party/json5/README.chromium +1 -0
  103. package/front_end/third_party/legacy-javascript/README.chromium +1 -0
  104. package/front_end/third_party/lighthouse/README.chromium +1 -0
  105. package/front_end/third_party/lit/README.chromium +1 -0
  106. package/front_end/third_party/marked/README.chromium +1 -0
  107. package/front_end/third_party/puppeteer-replay/README.chromium +1 -0
  108. package/front_end/third_party/third-party-web/README.chromium +1 -0
  109. package/front_end/third_party/vscode.web-custom-data/README.chromium +1 -0
  110. package/front_end/third_party/wasmparser/README.chromium +1 -0
  111. package/front_end/third_party/web-vitals/README.chromium +1 -0
  112. package/front_end/ui/components/tooltips/Tooltip.ts +17 -1
  113. package/front_end/ui/legacy/ContextMenu.ts +2 -2
  114. package/front_end/ui/legacy/GlassPane.ts +7 -3
  115. package/front_end/ui/legacy/ProgressIndicator.ts +29 -16
  116. package/front_end/ui/legacy/TabbedPane.ts +2 -2
  117. package/front_end/ui/legacy/Treeoutline.ts +10 -5
  118. package/front_end/ui/legacy/UIUtils.ts +42 -10
  119. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +14 -14
  120. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +6 -6
  121. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +3 -29
  122. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +14 -14
  123. package/front_end/ui/visual_logging/KnownContextValues.ts +2 -0
  124. package/inspector_overlay/highlight_common.ts +1 -27
  125. package/inspector_overlay/highlight_grid_common.ts +1 -27
  126. package/inspector_overlay/tool_highlight.ts +1 -27
  127. package/inspector_overlay/tool_persistent.ts +1 -27
  128. package/inspector_overlay/tool_source_order.ts +1 -27
  129. package/package.json +1 -1
@@ -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;1.5 ms;2.8 ms;576 ms;583.4 ms;581.9 ms;0.4 ms;7.5 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.4 ms;584.5 ms;1,942.7 ms;1,944.1 ms;1,362.7 ms;775.5 ms;1.3 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;581.6 ms;583.1 ms;1,192.9 ms;1,193.2 ms;611.6 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;581.6 ms;583.3 ms;1,176.6 ms;1,177.9 ms;596.3 ms;0.4 ms;1.3 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]
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: 10.6 ms, event: (eventKey: r-62, ts: 2297273193336)
21
- - total time: 2.9 ms, event: (eventKey: r-723, ts: 2297274436743)
22
- - total time: 1.6 ms, event: (eventKey: r-631, ts: 2297274234151)
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.3 ms, total: 192.7 ms, source: Compile code
30
- - self: 98.4 ms, total: 992.8 ms, source: Task
31
- - self: 55.7 ms, total: 70 ms, source: Compile script
32
- - self: 51.7 ms, total: 64.1 ms, source: setTimeout
33
- - self: 37.5 ms, total: 40.3 ms, source: aC (url: https://s.yimg.com/aaq/f10d509c/d1irmdsmbztlvx.js, line: 0, column: 19068)
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: 33.7 ms, total: 33.7 ms, source: Layout (url: https://news.yahoo.com/, line: 57, column: 187957)
36
- - self: 31.3 ms, total: 33.9 ms, source: clearTimeout
37
- - self: 30.3 ms, total: 53.5 ms, source: Parse HTML
38
- - self: 25.9 ms, total: 259 ms, source: Function call
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.1 ms, network transfer size: 258.6 kB
45
- - name: Taboola, main thread time: 42.8 ms, network transfer size: 393.6 kB
46
- - name: Google Tag Manager, main thread time: 18.8 ms, network transfer size: 123.8 kB
47
- - name: AOL / Oath / Verizon Media, main thread time: 4.7 ms, network transfer size: 42.3 kB
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.1 ms, total: 153.5 ms, source: Compile code
702
- - self: 71 ms, total: 771.6 ms, source: Task
703
- - self: 49.1 ms, total: 54.6 ms, source: Compile script
704
- - self: 48.8 ms, total: 60.8 ms, source: setTimeout
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: 30.7 ms, total: 30.7 ms, source: Recalculate style (url: https://news.yahoo.com/, line: 57, column: 187957)
707
- - self: 29.3 ms, total: 31.7 ms, source: clearTimeout
708
- - self: 26.5 ms, total: 49.7 ms, source: Parse HTML
709
- - self: 17.9 ms, total: 19.4 ms, source: aC (url: https://s.yimg.com/aaq/f10d509c/d1irmdsmbztlvx.js, line: 0, column: 19068)
710
- - self: 17.6 ms, total: 185.9 ms, source: (anonymous) (url: https://s.yimg.com/aaq/prebid/prebid-2.0.js, line: 5, column: 1)
711
- - self: 15.5 ms, total: 226.3 ms, source: Function call
712
- - self: 12.1 ms, total: 162.9 ms, source: (anonymous) (url: https://s.yimg.com/aaq/f10d509c/d1irmdsmbztlvx.js, line: 0, column: 0)
713
- - self: 12.1 ms, total: 83 ms, source: (anonymous) (url: https://cdn.taboola.com/libtrc/yahooweb-network/loader.js, line: 0, column: 9)
714
- - self: 11.3 ms, total: 11.5 ms, source: fetch
715
- - self: 11.1 ms, total: 11.6 ms, source: evaluate
716
- - self: 10.1 ms, total: 212 ms, source: Run microtasks
717
- - self: 8.9 ms, total: 18.5 ms, source: (anonymous) (url: https://s.yimg.com/du/ay/wnsrvbjmeprtfrnfx.js, line: 0, column: 0)
718
- - self: 8.8 ms, total: 10 ms, source: Minor GC
719
- - self: 7.8 ms, total: 226.1 ms, source: Evaluate script
720
- - self: 7.3 ms, total: 108.9 ms, source: n (url: https://s.yimg.com/aaq/prebid/prebid-2.0.js, line: 11, column: 4263)
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: 213.6 ms, network transfer size: 2.4 MB
725
- - name: Taboola, main thread time: 41.4 ms, network transfer size: 391.7 kB
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: 18.8 ms, network transfer size: 123.8 kB
728
- - name: AOL / Oath / Verizon Media, main thread time: 4.7 ms, network transfer size: 42.3 kB
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&region=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&region=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&region=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&region=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.4 ms;392.9 ms;492.9 ms;492.5 ms;177.1 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&region=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.3 ms;306 ms;339.6 ms;119.6 ms;54.3 ms;33.6 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;252.8 ms;256.8 ms;260.2 ms;261 ms;8.2 ms;2.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;253.7 ms;258.4 ms;282 ms;283.7 ms;30 ms;2.3 ms;1.7 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;253.8 ms;258.5 ms;318.8 ms;340.4 ms;86.6 ms;39.2 ms;21.6 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;253.8 ms;256.9 ms;260.3 ms;261.3 ms;7.5 ms;2.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;253.8 ms;257 ms;260.5 ms;261.2 ms;7.3 ms;2.4 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;253.9 ms;257 ms;262.4 ms;266.4 ms;12.5 ms;3.9 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;253.9 ms;257 ms;263 ms;263.4 ms;9.4 ms;4.2 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.1 ms;263 ms;263.8 ms;9.8 ms;4.1 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.2 ms;263 ms;263.6 ms;9.6 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.2 ms;263.2 ms;266 ms;12 ms;4 ms;2.8 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.1 ms;257.3 ms;263.3 ms;266.2 ms;12.1 ms;4.1 ms;2.9 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.1 ms;257.3 ms;263.3 ms;266.3 ms;12.2 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.1 ms;257.4 ms;263.4 ms;266.5 ms;12.4 ms;3.9 ms;3.1 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.2 ms;257.4 ms;263.4 ms;266.6 ms;12.4 ms;3.8 ms;3.1 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.2 ms;257.4 ms;263.5 ms;266.7 ms;12.4 ms;3.7 ms;3.2 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.3 ms;257.4 ms;263.5 ms;266.8 ms;12.5 ms;3.6 ms;3.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.3 ms;257.4 ms;263.5 ms;266.9 ms;12.6 ms;3.6 ms;3.4 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.3 ms;257.5 ms;263.6 ms;267 ms;12.7 ms;3.5 ms;3.5 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.4 ms;257.5 ms;263.6 ms;267.1 ms;12.8 ms;3.4 ms;3.5 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.4 ms;257.5 ms;263.7 ms;267.2 ms;12.9 ms;3.3 ms;3.6 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.4 ms;257.6 ms;263.8 ms;267.3 ms;12.9 ms;3.2 ms;3.5 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.5 ms;257.6 ms;263.9 ms;267.5 ms;13 ms;2.9 ms;3.6 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.5 ms;257.6 ms;263.9 ms;267.6 ms;13.1 ms;2.8 ms;3.6 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;254.5 ms;257.6 ms;264 ms;267.7 ms;13.2 ms;2.9 ms;3.7 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;254.5 ms;257.7 ms;264.1 ms;267.8 ms;13.2 ms;2.7 ms;3.7 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;254.6 ms;257.7 ms;264.2 ms;267.9 ms;13.3 ms;2.5 ms;3.7 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;254.6 ms;257.7 ms;264.2 ms;268 ms;13.3 ms;2.1 ms;3.8 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;254.6 ms;257.7 ms;264.3 ms;268.1 ms;13.4 ms;2.1 ms;3.8 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;254.7 ms;257.8 ms;264.4 ms;268.2 ms;13.5 ms;2.1 ms;3.8 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;254.7 ms;257.9 ms;264.4 ms;268.3 ms;13.6 ms;2.1 ms;3.9 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;254.7 ms;257.9 ms;264.5 ms;268.3 ms;13.6 ms;1.9 ms;3.8 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;255.8 ms;258.2 ms;305.7 ms;306.5 ms;50.7 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&region=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;270.5 ms;275.9 ms;336 ms;340.8 ms;70.3 ms;17 ms;4.8 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;270.8 ms;271.9 ms;301 ms;306.3 ms;35.5 ms;0.7 ms;5.4 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;271.7 ms;333.8 ms;372.9 ms;483.4 ms;211.7 ms;0.2 ms;110.5 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;271.8 ms;275.9 ms;316.7 ms;340.3 ms;68.4 ms;1.2 ms;23.6 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.4 ms;301.2 ms;306.8 ms;34.8 ms;0.9 ms;5.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.1 ms;276.1 ms;338.2 ms;340.9 ms;68.8 ms;2.1 ms;2.7 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.2 ms;276.1 ms;369.4 ms;439.9 ms;167.7 ms;31 ms;70.5 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.4 ms;273.5 ms;306.7 ms;349.8 ms;77.5 ms;0.5 ms;43.1 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.1 ms;274.3 ms;301.1 ms;306.7 ms;33.5 ms;0.8 ms;5.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.3 ms;276.2 ms;322.3 ms;340.7 ms;67.4 ms;6 ms;18.4 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;273.7 ms;275.4 ms;296.4 ms;299.8 ms;26.1 ms;0.4 ms;3.4 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;273.8 ms;275.7 ms;305.4 ms;339.9 ms;66.1 ms;0.3 ms;34.4 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]
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&region=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&region=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.3 ms, bounds: {min: 1020034834921, max: 1020034866264}
837
- - Render delay: 87.1 ms, bounds: {min: 1020034866264, max: 1020034953358}
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: 215.7 ms, bounds: {min: 157423488682, max: 157423704371}
870
- - Load delay: 90.3 ms, bounds: {min: 157423704371, max: 157423794709}
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.5 ms, bounds: {min: 157423858674, max: 157423953162}
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:
@@ -929,9 +929,9 @@ Metrics (lab / observed):
929
929
  - LCP: 663 ms, event: (eventKey: r-14753, ts: 59729312744)
930
930
  - LCP breakdown:
931
931
  - TTFB: 7 ms, bounds: {min: 59728649746, max: 59728656735}
932
- - Load delay: 45.6 ms, bounds: {min: 59728656735, max: 59728702313}
933
- - Load duration: 506.3 ms, bounds: {min: 59728702313, max: 59729208600}
934
- - Render delay: 104.1 ms, bounds: {min: 59729208600, max: 59729312744}
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
935
  - CLS: 0.31, event: (eventKey: s--1, ts: 59729100192)
936
936
  Metrics (field / real users): n/a – no data for this page in CrUX
937
937
  Available insights:
@@ -993,9 +993,9 @@ Metrics (lab / observed):
993
993
  - LCP: 663 ms, event: (eventKey: r-14753, ts: 59729312744)
994
994
  - LCP breakdown:
995
995
  - TTFB: 7 ms, bounds: {min: 59728649746, max: 59728656735}
996
- - Load delay: 45.6 ms, bounds: {min: 59728656735, max: 59728702313}
997
- - Load duration: 506.3 ms, bounds: {min: 59728702313, max: 59729208600}
998
- - Render delay: 104.1 ms, bounds: {min: 59729208600, max: 59729312744}
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}
999
999
  - CLS: 0.31, event: (eventKey: s--1, ts: 59729100192)
1000
1000
  Metrics (field / real users):
1001
1001
  - LCP: 1740 ms (scope: url)
@@ -10,7 +10,7 @@ const defaultTimeFormatterOptions: Intl.NumberFormatOptions = {
10
10
  style: 'unit',
11
11
  unitDisplay: 'narrow',
12
12
  minimumFractionDigits: 0,
13
- maximumFractionDigits: 1,
13
+ maximumFractionDigits: 0,
14
14
  } as const;
15
15
 
16
16
  const defaultByteFormatterOptions: Intl.NumberFormatOptions = {
@@ -25,8 +25,14 @@ const timeFormatters = {
25
25
  ...defaultTimeFormatterOptions,
26
26
  unit: 'millisecond',
27
27
  }),
28
+ milliWithPrecision: new Intl.NumberFormat('en-US', {
29
+ ...defaultTimeFormatterOptions,
30
+ maximumFractionDigits: 1,
31
+ unit: 'millisecond',
32
+ }),
28
33
  second: new Intl.NumberFormat('en-US', {
29
34
  ...defaultTimeFormatterOptions,
35
+ maximumFractionDigits: 1,
30
36
  unit: 'second',
31
37
  }),
32
38
  micro: new Intl.NumberFormat('en-US', {
@@ -81,6 +87,9 @@ export function millis(x: number): string {
81
87
  if (numberIsTooLarge(x)) {
82
88
  return '-';
83
89
  }
90
+ if (x < 1) {
91
+ return formatAndEnsureSpace(timeFormatters.milliWithPrecision, x);
92
+ }
84
93
  return formatAndEnsureSpace(timeFormatters.milli, x);
85
94
  }
86
95
 
@@ -6,28 +6,13 @@ import * as Trace from '../../../models/trace/trace.js';
6
6
 
7
7
  import type {AICallTree} from './AICallTree.js';
8
8
 
9
- export interface AgentFocusDataFull {
10
- type: 'full';
9
+ export interface AgentFocusData {
11
10
  parsedTrace: Trace.TraceModel.ParsedTrace;
12
11
  insightSet: Trace.Insights.Types.InsightSet|null;
12
+ callTree: AICallTree|null;
13
+ insight: Trace.Insights.Types.InsightModel|null;
13
14
  }
14
15
 
15
- interface AgentFocusDataCallTree {
16
- type: 'call-tree';
17
- parsedTrace: Trace.TraceModel.ParsedTrace;
18
- insightSet: Trace.Insights.Types.InsightSet|null;
19
- callTree: AICallTree;
20
- }
21
-
22
- export interface AgentFocusDataInsight {
23
- type: 'insight';
24
- parsedTrace: Trace.TraceModel.ParsedTrace;
25
- insightSet: Trace.Insights.Types.InsightSet|null;
26
- insight: Trace.Insights.Types.InsightModel;
27
- }
28
-
29
- type AgentFocusData = AgentFocusDataCallTree|AgentFocusDataInsight|AgentFocusDataFull;
30
-
31
16
  function getFirstInsightSet(insights: Trace.Insights.Types.TraceInsightSets): Trace.Insights.Types.InsightSet|null {
32
17
  // Currently only support a single insight set. Pick the first one with a navigation.
33
18
  // TODO(cjamcl): we should just give the agent the entire insight set, and give
@@ -43,9 +28,10 @@ export class AgentFocus {
43
28
 
44
29
  const insightSet = getFirstInsightSet(parsedTrace.insights);
45
30
  return new AgentFocus({
46
- type: 'full',
47
31
  parsedTrace,
48
32
  insightSet,
33
+ callTree: null,
34
+ insight: null,
49
35
  });
50
36
  }
51
37
 
@@ -57,9 +43,9 @@ export class AgentFocus {
57
43
 
58
44
  const insightSet = getFirstInsightSet(parsedTrace.insights);
59
45
  return new AgentFocus({
60
- type: 'insight',
61
46
  parsedTrace,
62
47
  insightSet,
48
+ callTree: null,
63
49
  insight,
64
50
  });
65
51
  }
@@ -79,7 +65,7 @@ export class AgentFocus {
79
65
  getFirstInsightSet(insights);
80
66
  }
81
67
 
82
- return new AgentFocus({type: 'call-tree', parsedTrace: callTree.parsedTrace, insightSet, callTree});
68
+ return new AgentFocus({parsedTrace: callTree.parsedTrace, insightSet, callTree, insight: null});
83
69
  }
84
70
 
85
71
  #data: AgentFocusData;
@@ -91,6 +77,18 @@ export class AgentFocus {
91
77
  get data(): AgentFocusData {
92
78
  return this.#data;
93
79
  }
80
+
81
+ withInsight(insight: Trace.Insights.Types.InsightModel|null): AgentFocus {
82
+ const focus = new AgentFocus(this.#data);
83
+ focus.#data.insight = insight;
84
+ return focus;
85
+ }
86
+
87
+ withCallTree(callTree: AICallTree|null): AgentFocus {
88
+ const focus = new AgentFocus(this.#data);
89
+ focus.#data.callTree = callTree;
90
+ return focus;
91
+ }
94
92
  }
95
93
 
96
94
  export function getPerformanceAgentFocusFromModel(model: Trace.TraceModel.Model): AgentFocus|null {
@@ -126,9 +126,9 @@ export class ContentProviderBasedProject extends Workspace.Workspace.ProjectStor
126
126
  progress: Common.Progress.Progress):
127
127
  Promise<Map<Workspace.UISourceCode.UISourceCode, TextUtils.ContentProvider.SearchMatch[]|null>> {
128
128
  const result = new Map();
129
- progress.setTotalWork(filesMatchingFileQuery.length);
129
+ progress.totalWork = filesMatchingFileQuery.length;
130
130
  await Promise.all(filesMatchingFileQuery.map(searchInContent.bind(this)));
131
- progress.done();
131
+ progress.done = true;
132
132
  return result;
133
133
 
134
134
  async function searchInContent(
@@ -148,12 +148,14 @@ export class ContentProviderBasedProject extends Workspace.Workspace.ProjectStor
148
148
  if (allMatchesFound) {
149
149
  result.set(uiSourceCode, matches);
150
150
  }
151
- progress.incrementWorked(1);
151
+ ++progress.worked;
152
152
  }
153
153
  }
154
154
 
155
155
  override indexContent(progress: Common.Progress.Progress): void {
156
- queueMicrotask(progress.done.bind(progress));
156
+ queueMicrotask(() => {
157
+ progress.done = true;
158
+ });
157
159
  }
158
160
 
159
161
  addUISourceCodeWithProvider(
@@ -272,7 +272,7 @@ export class BreakpointManager extends Common.ObjectWrapper.ObjectWrapper<EventT
272
272
  if (!BreakpointManager.isValidPositionInScript(lineNumber, columnNumber, script)) {
273
273
  continue;
274
274
  }
275
- this.innerSetBreakpoint(
275
+ this.#setBreakpoint(
276
276
  uiSourceCode, lineNumber, columnNumber, breakpoint.condition, breakpoint.enabled, breakpoint.isLogpoint,
277
277
  BreakpointOrigin.OTHER);
278
278
  }
@@ -316,7 +316,7 @@ export class BreakpointManager extends Common.ObjectWrapper.ObjectWrapper<EventT
316
316
  const normalizedLocation = await this.debuggerWorkspaceBinding.normalizeUILocation(uiLocation);
317
317
  const breakpointLocation = BreakpointManager.breakpointLocationFromUiLocation(normalizedLocation);
318
318
 
319
- const breakpoint = this.innerSetBreakpoint(
319
+ const breakpoint = this.#setBreakpoint(
320
320
  normalizedLocation.uiSourceCode, breakpointLocation.lineNumber, breakpointLocation.columnNumber, condition,
321
321
  enabled, isLogpoint, origin);
322
322
 
@@ -333,7 +333,7 @@ export class BreakpointManager extends Common.ObjectWrapper.ObjectWrapper<EventT
333
333
  return primaryBreakpoint;
334
334
  }
335
335
 
336
- private innerSetBreakpoint(
336
+ #setBreakpoint(
337
337
  uiSourceCode: Workspace.UISourceCode.UISourceCode, lineNumber: number, columnNumber: number|undefined,
338
338
  condition: UserCondition, enabled: boolean, isLogpoint: boolean, origin: BreakpointOrigin): Breakpoint {
339
339
  const url = BreakpointManager.getScriptForInlineUiSourceCode(uiSourceCode)?.sourceURL ?? uiSourceCode.url();