chrome-devtools-frontend 1.0.1402249 → 1.0.1418433

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 (1935) hide show
  1. package/.git-blame-ignore-revs +6 -1
  2. package/.vscode/devtools-workspace-launch.json +13 -31
  3. package/.vscode/devtools-workspace-settings.json +2 -4
  4. package/.vscode/devtools-workspace-tasks.json +5 -4
  5. package/AUTHORS +1 -0
  6. package/config/gni/devtools_grd_files.gni +97 -84
  7. package/config/gni/devtools_image_files.gni +14 -0
  8. package/config/owner/INFRA_OWNERS +1 -0
  9. package/config/typescript/tsconfig.eslint.json +2 -1
  10. package/docs/README.md +4 -0
  11. package/docs/cookbook/localization.md +1 -1
  12. package/docs/get_the_code.md +0 -17
  13. package/docs/playbook.md +176 -0
  14. package/docs/styleguide/ux/README.md +1 -0
  15. package/docs/styleguide/ux/components.md +54 -2
  16. package/docs/styleguide/ux/images/combo-box-variations.png +0 -0
  17. package/docs/styleguide/ux/patterns.md +87 -0
  18. package/docs/styleguide/ux/styles.md +19 -8
  19. package/eslint.config.mjs +93 -72
  20. package/extension-api/ExtensionAPI.d.ts +22 -0
  21. package/extensions/cxx_debugging/e2e/TestDriver.ts +1 -3
  22. package/extensions/cxx_debugging/e2e/cxx-debugging-extension-helpers.ts +1 -0
  23. package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +0 -1
  24. package/extensions/cxx_debugging/src/CreditsItem.ts +5 -6
  25. package/extensions/cxx_debugging/src/CustomFormatters.ts +4 -4
  26. package/extensions/cxx_debugging/src/DWARFSymbols.ts +10 -10
  27. package/extensions/cxx_debugging/src/DevToolsPluginHost.ts +6 -6
  28. package/extensions/cxx_debugging/src/DevToolsPluginWorker.ts +3 -6
  29. package/extensions/cxx_debugging/src/DevToolsPluginWorkerMain.ts +1 -0
  30. package/extensions/cxx_debugging/src/ExtensionOptions.ts +6 -10
  31. package/extensions/cxx_debugging/src/Formatters.ts +15 -8
  32. package/extensions/cxx_debugging/src/MEMFSResourceLoader.ts +7 -7
  33. package/extensions/cxx_debugging/src/ModuleConfiguration.ts +6 -6
  34. package/extensions/cxx_debugging/src/ModuleConfigurationList.ts +4 -4
  35. package/extensions/cxx_debugging/src/WasmTypes.ts +21 -11
  36. package/extensions/cxx_debugging/src/WorkerRPC.ts +3 -4
  37. package/extensions/cxx_debugging/tests/CreditsItem_test.ts +2 -3
  38. package/extensions/cxx_debugging/tests/DevToolsPluginTestWorker.ts +4 -4
  39. package/extensions/cxx_debugging/tests/DevToolsPlugin_test.ts +12 -12
  40. package/extensions/cxx_debugging/tests/Externref_test.ts +3 -6
  41. package/extensions/cxx_debugging/tests/Formatters_test.ts +3 -3
  42. package/extensions/cxx_debugging/tests/Interpreter_test.ts +1 -1
  43. package/extensions/cxx_debugging/tests/RealBackend.ts +9 -9
  44. package/extensions/cxx_debugging/tests/SymbolsBackend_test.ts +31 -29
  45. package/extensions/cxx_debugging/tests/TestUtils.ts +8 -7
  46. package/extensions/cxx_debugging/tests/inputs/externref.js +14 -4
  47. package/extensions/cxx_debugging/tests/inputs/page.js +3 -1
  48. package/front_end/Images/generate-css-vars.js +1 -0
  49. package/front_end/Images/rollup.config.mjs +0 -1
  50. package/front_end/Images/src/account-tree.svg +1 -0
  51. package/front_end/Images/src/arrow-collapse.svg +3 -0
  52. package/front_end/Images/src/arrow-drop-down.svg +3 -0
  53. package/front_end/Images/src/difference.svg +3 -0
  54. package/front_end/Images/src/global.svg +5 -0
  55. package/front_end/Images/src/grid-on.svg +10 -0
  56. package/front_end/Images/src/keyboard-full.svg +10 -0
  57. package/front_end/Images/src/label.svg +10 -0
  58. package/front_end/Images/src/node-stack-icon.svg +1 -0
  59. package/front_end/Images/src/override.svg +11 -0
  60. package/front_end/Images/src/palette.svg +10 -0
  61. package/front_end/Images/src/photo-camera.svg +10 -0
  62. package/front_end/Images/src/terminal.svg +10 -0
  63. package/front_end/Images/src/tonality.svg +10 -0
  64. package/front_end/Tests.js +1 -8
  65. package/front_end/application_tokens.css +407 -0
  66. package/front_end/core/common/Base64.test.ts +3 -3
  67. package/front_end/core/common/Color.ts +8 -0
  68. package/front_end/core/common/Console.ts +3 -3
  69. package/front_end/core/common/EventTarget.test.ts +7 -7
  70. package/front_end/core/common/EventTarget.ts +3 -3
  71. package/front_end/core/common/ParsedURL.test.ts +33 -37
  72. package/front_end/core/common/ParsedURL.ts +1 -1
  73. package/front_end/core/common/ResolverBase.test.ts +1 -1
  74. package/front_end/core/common/ResolverBase.ts +2 -7
  75. package/front_end/core/common/ResourceType.test.ts +19 -23
  76. package/front_end/core/common/Revealer.ts +5 -0
  77. package/front_end/core/common/SettingRegistration.test.ts +1 -1
  78. package/front_end/core/common/Settings.ts +6 -6
  79. package/front_end/core/common/Throttler.ts +3 -3
  80. package/front_end/core/dom_extension/DOMExtension.test.ts +36 -41
  81. package/front_end/core/host/AidaClient.test.ts +16 -3
  82. package/front_end/core/host/AidaClient.ts +31 -16
  83. package/front_end/core/host/InspectorFrontendHost.ts +6 -0
  84. package/front_end/core/host/InspectorFrontendHostAPI.ts +32 -34
  85. package/front_end/core/host/ResourceLoader.ts +1 -1
  86. package/front_end/core/host/UserMetrics.ts +100 -126
  87. package/front_end/core/i18n/collect-ui-strings.js +5 -4
  88. package/front_end/core/i18n/generate-locales-js.js +4 -2
  89. package/front_end/core/i18n/i18nImpl.ts +1 -1
  90. package/front_end/core/i18n/i18nTypes.ts +3 -3
  91. package/front_end/core/i18n/locales/af.json +848 -518
  92. package/front_end/core/i18n/locales/am.json +857 -527
  93. package/front_end/core/i18n/locales/ar.json +864 -534
  94. package/front_end/core/i18n/locales/as.json +853 -523
  95. package/front_end/core/i18n/locales/az.json +856 -526
  96. package/front_end/core/i18n/locales/be.json +854 -524
  97. package/front_end/core/i18n/locales/bg.json +844 -514
  98. package/front_end/core/i18n/locales/bn.json +851 -521
  99. package/front_end/core/i18n/locales/bs.json +861 -531
  100. package/front_end/core/i18n/locales/ca.json +851 -521
  101. package/front_end/core/i18n/locales/cs.json +854 -524
  102. package/front_end/core/i18n/locales/cy.json +849 -519
  103. package/front_end/core/i18n/locales/da.json +850 -520
  104. package/front_end/core/i18n/locales/de.json +848 -518
  105. package/front_end/core/i18n/locales/el.json +851 -521
  106. package/front_end/core/i18n/locales/en-GB.json +845 -515
  107. package/front_end/core/i18n/locales/es-419.json +847 -517
  108. package/front_end/core/i18n/locales/es.json +847 -517
  109. package/front_end/core/i18n/locales/et.json +843 -513
  110. package/front_end/core/i18n/locales/eu.json +861 -531
  111. package/front_end/core/i18n/locales/fa.json +860 -530
  112. package/front_end/core/i18n/locales/fi.json +848 -518
  113. package/front_end/core/i18n/locales/fil.json +849 -519
  114. package/front_end/core/i18n/locales/fr-CA.json +849 -519
  115. package/front_end/core/i18n/locales/fr.json +849 -519
  116. package/front_end/core/i18n/locales/gl.json +852 -522
  117. package/front_end/core/i18n/locales/gu.json +846 -516
  118. package/front_end/core/i18n/locales/he.json +867 -537
  119. package/front_end/core/i18n/locales/hi.json +853 -523
  120. package/front_end/core/i18n/locales/hr.json +854 -524
  121. package/front_end/core/i18n/locales/hu.json +848 -518
  122. package/front_end/core/i18n/locales/hy.json +850 -520
  123. package/front_end/core/i18n/locales/id.json +849 -519
  124. package/front_end/core/i18n/locales/is.json +850 -520
  125. package/front_end/core/i18n/locales/it.json +852 -522
  126. package/front_end/core/i18n/locales/ja.json +844 -514
  127. package/front_end/core/i18n/locales/ka.json +847 -517
  128. package/front_end/core/i18n/locales/kk.json +850 -520
  129. package/front_end/core/i18n/locales/km.json +853 -523
  130. package/front_end/core/i18n/locales/kn.json +857 -527
  131. package/front_end/core/i18n/locales/ko.json +850 -520
  132. package/front_end/core/i18n/locales/ky.json +846 -516
  133. package/front_end/core/i18n/locales/lo.json +851 -521
  134. package/front_end/core/i18n/locales/lt.json +845 -515
  135. package/front_end/core/i18n/locales/lv.json +849 -519
  136. package/front_end/core/i18n/locales/mk.json +851 -521
  137. package/front_end/core/i18n/locales/ml.json +850 -520
  138. package/front_end/core/i18n/locales/mn.json +860 -530
  139. package/front_end/core/i18n/locales/mr.json +852 -522
  140. package/front_end/core/i18n/locales/ms.json +848 -518
  141. package/front_end/core/i18n/locales/my.json +857 -527
  142. package/front_end/core/i18n/locales/ne.json +857 -527
  143. package/front_end/core/i18n/locales/nl.json +847 -517
  144. package/front_end/core/i18n/locales/no.json +848 -518
  145. package/front_end/core/i18n/locales/or.json +969 -639
  146. package/front_end/core/i18n/locales/pa.json +850 -520
  147. package/front_end/core/i18n/locales/pl.json +849 -519
  148. package/front_end/core/i18n/locales/pt-PT.json +850 -520
  149. package/front_end/core/i18n/locales/pt.json +844 -514
  150. package/front_end/core/i18n/locales/ro.json +850 -520
  151. package/front_end/core/i18n/locales/ru.json +861 -531
  152. package/front_end/core/i18n/locales/si.json +850 -520
  153. package/front_end/core/i18n/locales/sk.json +850 -520
  154. package/front_end/core/i18n/locales/sl.json +851 -521
  155. package/front_end/core/i18n/locales/sq.json +847 -517
  156. package/front_end/core/i18n/locales/sr-Latn.json +848 -518
  157. package/front_end/core/i18n/locales/sr.json +848 -518
  158. package/front_end/core/i18n/locales/sv.json +849 -519
  159. package/front_end/core/i18n/locales/sw.json +856 -526
  160. package/front_end/core/i18n/locales/ta.json +853 -523
  161. package/front_end/core/i18n/locales/te.json +854 -524
  162. package/front_end/core/i18n/locales/th.json +839 -509
  163. package/front_end/core/i18n/locales/tr.json +850 -520
  164. package/front_end/core/i18n/locales/uk.json +850 -520
  165. package/front_end/core/i18n/locales/ur.json +849 -519
  166. package/front_end/core/i18n/locales/uz.json +854 -524
  167. package/front_end/core/i18n/locales/vi.json +847 -517
  168. package/front_end/core/i18n/locales/zh-HK.json +852 -522
  169. package/front_end/core/i18n/locales/zh-TW.json +852 -522
  170. package/front_end/core/i18n/locales/zh.json +849 -519
  171. package/front_end/core/i18n/locales/zu.json +855 -525
  172. package/front_end/core/platform/DevToolsPath.test.ts +80 -41
  173. package/front_end/core/platform/DevToolsPath.ts +32 -9
  174. package/front_end/core/platform/ServerTiming.ts +8 -8
  175. package/front_end/core/platform/StringUtilities.ts +1 -1
  176. package/front_end/core/protocol_client/InspectorBackend.ts +15 -22
  177. package/front_end/core/protocol_client/protocol_client.ts +1 -0
  178. package/front_end/core/root/Runtime.test.ts +17 -0
  179. package/front_end/core/root/Runtime.ts +79 -50
  180. package/front_end/core/sdk/AccessibilityModel.ts +3 -3
  181. package/front_end/core/sdk/AnimationModel.ts +5 -5
  182. package/front_end/core/sdk/AutofillModel.ts +3 -3
  183. package/front_end/core/sdk/CPUProfilerModel.ts +4 -4
  184. package/front_end/core/sdk/CPUThrottlingManager.ts +157 -17
  185. package/front_end/core/sdk/CSSMatchedStyles.test.ts +3 -0
  186. package/front_end/core/sdk/CSSMatchedStyles.ts +73 -6
  187. package/front_end/core/sdk/CSSMetadata.ts +21 -0
  188. package/front_end/core/sdk/CSSModel.test.ts +7 -9
  189. package/front_end/core/sdk/CSSModel.ts +53 -34
  190. package/front_end/core/sdk/CSSProperty.ts +16 -6
  191. package/front_end/core/sdk/CSSPropertyParser.ts +4 -4
  192. package/front_end/{panels/elements/PropertyMatchers.test.ts → core/sdk/CSSPropertyParserMatchers.test.ts} +126 -63
  193. package/front_end/{panels/elements/PropertyMatchers.ts → core/sdk/CSSPropertyParserMatchers.ts} +126 -59
  194. package/front_end/core/sdk/CSSStyleDeclaration.ts +13 -1
  195. package/front_end/core/sdk/CSSStyleSheetHeader.test.ts +29 -0
  196. package/front_end/core/sdk/CSSStyleSheetHeader.ts +1 -1
  197. package/front_end/core/sdk/ChildTargetManager.test.ts +20 -4
  198. package/front_end/core/sdk/ChildTargetManager.ts +8 -11
  199. package/front_end/core/sdk/Connections.ts +22 -9
  200. package/front_end/core/sdk/ConsoleModel.test.ts +6 -4
  201. package/front_end/core/sdk/ConsoleModel.ts +11 -6
  202. package/front_end/core/sdk/CookieModel.test.ts +8 -7
  203. package/front_end/core/sdk/CookieModel.ts +3 -3
  204. package/front_end/core/sdk/DOMDebuggerModel.ts +5 -5
  205. package/front_end/core/sdk/DOMModel.ts +35 -17
  206. package/front_end/core/sdk/DebuggerModel.test.ts +4 -3
  207. package/front_end/core/sdk/DebuggerModel.ts +13 -13
  208. package/front_end/core/sdk/EmulationModel.ts +2 -3
  209. package/front_end/core/sdk/FrameManager.ts +7 -7
  210. package/front_end/core/sdk/HeapProfilerModel.ts +7 -7
  211. package/front_end/core/sdk/IOModel.ts +2 -3
  212. package/front_end/core/sdk/IsolateManager.ts +4 -4
  213. package/front_end/core/sdk/IssuesModel.ts +7 -4
  214. package/front_end/core/sdk/LogModel.ts +5 -5
  215. package/front_end/core/sdk/NetworkManager.test.ts +103 -54
  216. package/front_end/core/sdk/NetworkManager.ts +57 -22
  217. package/front_end/core/sdk/NetworkRequest.test.ts +19 -20
  218. package/front_end/core/sdk/NetworkRequest.ts +10 -10
  219. package/front_end/core/sdk/OverlayModel.test.ts +6 -6
  220. package/front_end/core/sdk/OverlayModel.ts +10 -10
  221. package/front_end/core/sdk/OverlayPersistentHighlighter.test.ts +5 -3
  222. package/front_end/core/sdk/PageResourceLoader.test.ts +20 -25
  223. package/front_end/core/sdk/PageResourceLoader.ts +3 -3
  224. package/front_end/core/sdk/PaintProfiler.ts +4 -4
  225. package/front_end/core/sdk/PerformanceMetricsModel.ts +2 -2
  226. package/front_end/core/sdk/PreloadingModel.test.ts +19 -17
  227. package/front_end/core/sdk/PreloadingModel.ts +4 -4
  228. package/front_end/core/sdk/RehydratingConnection.ts +6 -4
  229. package/front_end/core/sdk/RemoteObject.ts +2 -2
  230. package/front_end/core/sdk/ResourceTreeModel.ts +39 -32
  231. package/front_end/core/sdk/RuntimeModel.test.ts +4 -2
  232. package/front_end/core/sdk/RuntimeModel.ts +14 -12
  233. package/front_end/core/sdk/ScreenCaptureModel.ts +3 -0
  234. package/front_end/core/sdk/Script.ts +1 -1
  235. package/front_end/core/sdk/SecurityOriginManager.ts +6 -6
  236. package/front_end/core/sdk/ServiceWorkerCacheModel.ts +5 -5
  237. package/front_end/core/sdk/ServiceWorkerManager.ts +10 -11
  238. package/front_end/core/sdk/SourceMap.test.ts +141 -77
  239. package/front_end/core/sdk/SourceMap.ts +110 -193
  240. package/front_end/core/sdk/SourceMapFunctionRanges.test.ts +171 -0
  241. package/front_end/core/sdk/SourceMapFunctionRanges.ts +150 -0
  242. package/front_end/core/sdk/SourceMapManager.test.ts +14 -14
  243. package/front_end/core/sdk/SourceMapManager.ts +12 -12
  244. package/front_end/core/sdk/SourceMapScopes.ts +29 -7
  245. package/front_end/core/sdk/SourceMapScopesInfo.test.ts +36 -28
  246. package/front_end/core/sdk/SourceMapScopesInfo.ts +35 -23
  247. package/front_end/core/sdk/StorageBucketsModel.ts +8 -8
  248. package/front_end/core/sdk/StorageKeyManager.test.ts +4 -2
  249. package/front_end/core/sdk/StorageKeyManager.ts +8 -7
  250. package/front_end/core/sdk/Target.test.ts +39 -3
  251. package/front_end/core/sdk/Target.ts +41 -1
  252. package/front_end/core/sdk/TargetManager.test.ts +6 -4
  253. package/front_end/core/sdk/TargetManager.ts +6 -6
  254. package/front_end/core/sdk/TraceObject.test.ts +1 -1
  255. package/front_end/core/sdk/TraceObject.ts +32 -0
  256. package/front_end/core/sdk/WebAuthnModel.ts +6 -6
  257. package/front_end/core/sdk/sdk-meta.ts +1 -1
  258. package/front_end/core/sdk/sdk.ts +4 -5
  259. package/front_end/design_system_tokens.css +775 -0
  260. package/front_end/devtools_compatibility.js +5 -5
  261. package/front_end/entrypoint_template.html +2 -0
  262. package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +1 -2
  263. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.test.ts +12 -2
  264. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +3 -3
  265. package/front_end/entrypoints/formatter_worker/ScopeParser.ts +0 -1
  266. package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +0 -1
  267. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +67 -52
  268. package/front_end/entrypoints/inspector_main/InspectorMain.test.ts +276 -142
  269. package/front_end/entrypoints/inspector_main/InspectorMain.ts +41 -2
  270. package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +1 -1
  271. package/front_end/entrypoints/inspector_main/RenderingOptions.ts +1 -4
  272. package/front_end/entrypoints/js_app/js_app.ts +2 -1
  273. package/front_end/entrypoints/main/ExecutionContextSelector.ts +1 -1
  274. package/front_end/entrypoints/main/MainImpl.ts +83 -78
  275. package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +5 -7
  276. package/front_end/entrypoints/node_app/NodeMain.ts +4 -5
  277. package/front_end/entrypoints/node_app/node_app.ts +1 -0
  278. package/front_end/entrypoints/wasmparser_worker/WasmParserWorker.ts +1 -1
  279. package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
  280. package/front_end/generated/InspectorBackendCommands.js +20 -20
  281. package/front_end/generated/SupportedCSSProperties.js +205 -9
  282. package/front_end/generated/protocol-mapping.d.ts +41 -23
  283. package/front_end/generated/protocol-proxy-api.d.ts +34 -25
  284. package/front_end/generated/protocol.ts +173 -79
  285. package/front_end/global_typings/global_defs.d.ts +0 -5
  286. package/front_end/legacy/legacy-defs.d.ts +0 -2
  287. package/front_end/legacy_test_runner/application_test_runner/ResourceTreeTestRunner.js +2 -1
  288. package/front_end/legacy_test_runner/bindings_test_runner/BindingsTestRunner.js +3 -4
  289. package/front_end/legacy_test_runner/elements_test_runner/ElementsTestRunner.js +1 -2
  290. package/front_end/legacy_test_runner/heap_profiler_test_runner/heap_profiler_test_runner.js +15 -3
  291. package/front_end/models/autofill_manager/AutofillManager.ts +3 -3
  292. package/front_end/models/bindings/CompilerScriptMapping.test.ts +6 -6
  293. package/front_end/models/bindings/CompilerScriptMapping.ts +8 -0
  294. package/front_end/models/bindings/ContentProviderBasedProject.ts +1 -1
  295. package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +5 -3
  296. package/front_end/models/bindings/DebuggerWorkspaceBinding.test.ts +29 -3
  297. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +8 -0
  298. package/front_end/models/bindings/DefaultScriptMapping.test.ts +4 -2
  299. package/front_end/models/bindings/FileUtils.ts +1 -1
  300. package/front_end/models/bindings/IgnoreListManager.test.ts +17 -15
  301. package/front_end/models/bindings/IgnoreListManager.ts +6 -6
  302. package/front_end/models/bindings/NetworkProject.ts +4 -4
  303. package/front_end/models/bindings/PresentationConsoleMessageHelper.test.ts +4 -2
  304. package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +4 -5
  305. package/front_end/models/bindings/ResourceMapping.test.ts +6 -4
  306. package/front_end/models/bindings/ResourceScriptMapping.test.ts +4 -2
  307. package/front_end/models/bindings/ResourceScriptMapping.ts +4 -4
  308. package/front_end/models/bindings/ResourceUtils.test.ts +26 -28
  309. package/front_end/models/bindings/ResourceUtils.ts +1 -8
  310. package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
  311. package/front_end/models/breakpoints/BreakpointManager.test.ts +23 -22
  312. package/front_end/models/breakpoints/BreakpointManager.ts +4 -4
  313. package/front_end/models/cpu_profile/CPUProfileDataModel.test.ts +8 -1
  314. package/front_end/models/cpu_profile/CPUProfileDataModel.ts +14 -4
  315. package/front_end/models/cpu_profile/ProfileTreeModel.ts +1 -3
  316. package/front_end/models/crux-manager/CrUXManager.test.ts +27 -15
  317. package/front_end/models/crux-manager/CrUXManager.ts +23 -8
  318. package/front_end/models/emulation/DeviceModeModel.ts +3 -3
  319. package/front_end/models/emulation/EmulatedDevices.ts +7 -7
  320. package/front_end/models/extensions/ExtensionAPI.ts +300 -174
  321. package/front_end/models/extensions/ExtensionEndpoint.ts +8 -8
  322. package/front_end/models/extensions/ExtensionPanel.ts +4 -2
  323. package/front_end/models/extensions/ExtensionServer.test.ts +163 -28
  324. package/front_end/models/extensions/ExtensionServer.ts +59 -5
  325. package/front_end/models/extensions/HostUrlPattern.test.ts +59 -58
  326. package/front_end/models/extensions/LanguageExtensionEndpoint.test.ts +9 -5
  327. package/front_end/models/extensions/LanguageExtensionEndpoint.ts +3 -3
  328. package/front_end/models/extensions/RecorderPluginManager.ts +13 -13
  329. package/front_end/models/formatter/FormatterWorkerPool.ts +1 -3
  330. package/front_end/models/har/Log.test.ts +3 -1
  331. package/front_end/models/har/Log.ts +3 -3
  332. package/front_end/models/har/Writer.test.ts +2 -1
  333. package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +4 -10
  334. package/front_end/models/issues_manager/ClientHintIssue.ts +2 -3
  335. package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +0 -1
  336. package/front_end/models/issues_manager/CookieIssue.ts +1 -0
  337. package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +0 -1
  338. package/front_end/models/issues_manager/DeprecationIssue.ts +2 -3
  339. package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +2 -3
  340. package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +2 -3
  341. package/front_end/models/issues_manager/GenericIssue.ts +0 -1
  342. package/front_end/models/issues_manager/IssueResolver.test.ts +1 -1
  343. package/front_end/models/issues_manager/IssuesManager.ts +29 -10
  344. package/front_end/models/issues_manager/MarkdownIssueDescription.ts +1 -1
  345. package/front_end/models/issues_manager/SelectElementAccessibilityIssue.test.ts +86 -0
  346. package/front_end/models/issues_manager/SelectElementAccessibilityIssue.ts +110 -0
  347. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedOptGroupChild.md +7 -0
  348. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedSelectChild.md +7 -0
  349. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentAttributesSelectDescendant.md +3 -0
  350. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentLegendChild.md +3 -0
  351. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentOptionChild.md +3 -0
  352. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityNonPhrasingContentOptionChild.md +3 -0
  353. package/front_end/models/issues_manager/issues_manager.ts +2 -0
  354. package/front_end/models/javascript_metadata/NativeFunctions.js +149 -130
  355. package/front_end/models/live-metrics/LiveMetrics.ts +21 -21
  356. package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +13 -13
  357. package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +10 -3
  358. package/front_end/models/logs/NetworkLog.test.ts +3 -1
  359. package/front_end/models/logs/NetworkLog.ts +6 -6
  360. package/front_end/models/logs/RequestResolver.test.ts +1 -1
  361. package/front_end/models/persistence/EditFileSystemView.ts +3 -6
  362. package/front_end/models/persistence/IsolatedFileSystemManager.ts +9 -13
  363. package/front_end/models/persistence/NetworkPersistenceManager.test.ts +36 -44
  364. package/front_end/models/persistence/NetworkPersistenceManager.ts +6 -6
  365. package/front_end/models/persistence/PersistenceAction.test.ts +11 -9
  366. package/front_end/models/persistence/PersistenceImpl.test.ts +10 -8
  367. package/front_end/models/persistence/PersistenceImpl.ts +4 -4
  368. package/front_end/models/persistence/PersistenceUtils.ts +3 -3
  369. package/front_end/models/persistence/PlatformFileSystem.test.ts +4 -3
  370. package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
  371. package/front_end/models/persistence/WorkspaceSettingsTab.ts +14 -20
  372. package/front_end/models/project_settings/ProjectSettingsModel.test.ts +138 -0
  373. package/front_end/models/project_settings/ProjectSettingsModel.ts +157 -0
  374. package/front_end/models/project_settings/project_settings.ts +9 -0
  375. package/front_end/models/source_map_scopes/NamesResolver.test.ts +11 -3
  376. package/front_end/models/source_map_scopes/NamesResolver.ts +5 -7
  377. package/front_end/models/source_map_scopes/ScopeChainModel.ts +3 -3
  378. package/front_end/models/text_utils/StaticContentProvider.test.ts +4 -2
  379. package/front_end/models/text_utils/StreamingContentData.ts +3 -3
  380. package/front_end/models/text_utils/TextUtils.ts +1 -1
  381. package/front_end/models/trace/LanternComputationData.ts +11 -10
  382. package/front_end/models/trace/ModelImpl.test.ts +6 -6
  383. package/front_end/models/trace/ModelImpl.ts +11 -15
  384. package/front_end/models/trace/Processor.test.ts +8 -0
  385. package/front_end/models/trace/Processor.ts +11 -23
  386. package/front_end/models/trace/extras/FilmStrip.test.ts +54 -32
  387. package/front_end/models/trace/extras/FilmStrip.ts +11 -10
  388. package/front_end/models/trace/extras/MainThreadActivity.test.ts +7 -7
  389. package/front_end/models/trace/extras/MainThreadActivity.ts +5 -5
  390. package/front_end/models/trace/extras/StackTraceForEvent.ts +5 -1
  391. package/front_end/models/trace/extras/ThirdParties.test.ts +100 -65
  392. package/front_end/models/trace/extras/ThirdParties.ts +132 -56
  393. package/front_end/models/trace/extras/TimelineJSProfile.ts +10 -5
  394. package/front_end/models/trace/extras/TraceFilter.test.ts +3 -2
  395. package/front_end/models/trace/extras/TraceTree.test.ts +65 -39
  396. package/front_end/models/trace/extras/TraceTree.ts +32 -21
  397. package/front_end/models/trace/handlers/AnimationFramesHandler.test.ts +1 -1
  398. package/front_end/models/trace/handlers/AnimationFramesHandler.ts +1 -1
  399. package/front_end/models/trace/handlers/DOMStatsHandler.test.ts +30 -0
  400. package/front_end/models/trace/handlers/DOMStatsHandler.ts +31 -0
  401. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.test.ts +741 -381
  402. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +180 -15
  403. package/front_end/models/trace/handlers/FlowsHandler.ts +9 -10
  404. package/front_end/models/trace/handlers/FramesHandler.test.ts +42 -43
  405. package/front_end/models/trace/handlers/FramesHandler.ts +24 -25
  406. package/front_end/models/trace/handlers/InitiatorsHandler.ts +0 -41
  407. package/front_end/models/trace/handlers/LargestImagePaintHandler.test.ts +29 -12
  408. package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +31 -39
  409. package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +2 -2
  410. package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +33 -24
  411. package/front_end/models/trace/handlers/MetaHandler.test.ts +5 -4
  412. package/front_end/models/trace/handlers/MetaHandler.ts +46 -47
  413. package/front_end/models/trace/handlers/ModelHandlers.ts +1 -0
  414. package/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts +62 -62
  415. package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +38 -40
  416. package/front_end/models/trace/handlers/PageLoadMetricsHandler.test.ts +2 -2
  417. package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +26 -27
  418. package/front_end/models/trace/handlers/RendererHandler.ts +5 -5
  419. package/front_end/models/trace/handlers/SamplesHandler.test.ts +49 -16
  420. package/front_end/models/trace/handlers/SamplesHandler.ts +69 -60
  421. package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +31 -42
  422. package/front_end/models/trace/handlers/ScreenshotsHandler.ts +38 -13
  423. package/front_end/models/trace/handlers/ServerTimingsHandler.test.ts +6 -6
  424. package/front_end/models/trace/handlers/ServerTimingsHandler.ts +4 -5
  425. package/front_end/models/trace/handlers/Threads.test.ts +5 -5
  426. package/front_end/models/trace/handlers/Threads.ts +13 -4
  427. package/front_end/models/trace/handlers/UserInteractionsHandler.test.ts +4 -4
  428. package/front_end/models/trace/handlers/UserInteractionsHandler.ts +17 -18
  429. package/front_end/models/trace/handlers/UserTimings.md +1 -1
  430. package/front_end/models/trace/handlers/UserTimingsHandler.test.ts +32 -24
  431. package/front_end/models/trace/handlers/UserTimingsHandler.ts +25 -4
  432. package/front_end/models/trace/handlers/WarningsHandler.ts +2 -2
  433. package/front_end/models/trace/handlers/WorkersHandler.test.ts +4 -4
  434. package/front_end/models/trace/handlers/helpers.ts +17 -18
  435. package/front_end/models/trace/handlers/types.ts +2 -1
  436. package/front_end/models/trace/helpers/SamplesIntegrator.test.ts +68 -0
  437. package/front_end/models/trace/helpers/SamplesIntegrator.ts +59 -18
  438. package/front_end/models/trace/helpers/SyntheticEvents.test.ts +1 -1
  439. package/front_end/models/trace/helpers/SyntheticEvents.ts +1 -1
  440. package/front_end/models/trace/helpers/Timing.test.ts +33 -45
  441. package/front_end/models/trace/helpers/Timing.ts +50 -76
  442. package/front_end/models/trace/helpers/Trace.test.ts +13 -13
  443. package/front_end/models/trace/helpers/Trace.ts +36 -35
  444. package/front_end/models/trace/helpers/TreeHelpers.test.ts +10 -81
  445. package/front_end/models/trace/helpers/TreeHelpers.ts +13 -181
  446. package/front_end/models/trace/insights/CLSCulprits.test.ts +1 -1
  447. package/front_end/models/trace/insights/CLSCulprits.ts +206 -107
  448. package/front_end/models/trace/insights/Common.test.ts +6 -2
  449. package/front_end/models/trace/insights/Common.ts +165 -31
  450. package/front_end/models/trace/insights/DOMSize.test.ts +54 -22
  451. package/front_end/models/trace/insights/DOMSize.ts +71 -17
  452. package/front_end/models/trace/insights/DocumentLatency.test.ts +4 -4
  453. package/front_end/models/trace/insights/DocumentLatency.ts +87 -22
  454. package/front_end/models/trace/insights/FontDisplay.ts +24 -14
  455. package/front_end/models/trace/insights/ForcedReflow.test.ts +35 -0
  456. package/front_end/models/trace/insights/ForcedReflow.ts +224 -0
  457. package/front_end/models/trace/insights/ImageDelivery.test.ts +18 -16
  458. package/front_end/models/trace/insights/ImageDelivery.ts +63 -26
  459. package/front_end/models/trace/insights/InteractionToNextPaint.ts +39 -6
  460. package/front_end/models/trace/insights/LCPDiscovery.test.ts +23 -4
  461. package/front_end/models/trace/insights/LCPDiscovery.ts +57 -19
  462. package/front_end/models/trace/insights/LCPPhases.test.ts +2 -2
  463. package/front_end/models/trace/insights/LCPPhases.ts +57 -29
  464. package/front_end/models/trace/insights/LongCriticalNetworkTree.ts +60 -0
  465. package/front_end/models/trace/insights/Models.ts +2 -0
  466. package/front_end/models/trace/insights/RenderBlocking.ts +22 -10
  467. package/front_end/models/trace/insights/SlowCSSSelector.ts +42 -10
  468. package/front_end/models/trace/insights/ThirdParties.test.ts +56 -39
  469. package/front_end/models/trace/insights/ThirdParties.ts +41 -24
  470. package/front_end/models/trace/insights/Viewport.ts +8 -7
  471. package/front_end/models/trace/insights/types.ts +36 -17
  472. package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +80 -52
  473. package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +6 -7
  474. package/front_end/models/trace/lantern/graph/BaseNode.test.ts +59 -52
  475. package/front_end/models/trace/lantern/graph/BaseNode.ts +2 -1
  476. package/front_end/models/trace/lantern/graph/CPUNode.ts +2 -1
  477. package/front_end/models/trace/lantern/graph/NetworkNode.ts +2 -1
  478. package/front_end/models/trace/lantern/graph/PageDependencyGraph.test.ts +84 -88
  479. package/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +2 -1
  480. package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.ts +1 -1
  481. package/front_end/models/trace/lantern/simulation/ConnectionPool.test.ts +40 -28
  482. package/front_end/models/trace/lantern/simulation/ConnectionPool.ts +1 -1
  483. package/front_end/models/trace/lantern/simulation/DNSCache.test.ts +3 -5
  484. package/front_end/models/trace/lantern/simulation/DNSCache.ts +2 -2
  485. package/front_end/models/trace/lantern/simulation/Simulator.test.ts +68 -37
  486. package/front_end/models/trace/lantern/simulation/Simulator.ts +4 -3
  487. package/front_end/models/trace/lantern/simulation/TCPConnection.ts +0 -4
  488. package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +2 -2
  489. package/front_end/models/trace/lantern/types/Lantern.ts +56 -56
  490. package/front_end/models/trace/root-causes/LayoutShift.test.ts +17 -20
  491. package/front_end/models/trace/root-causes/LayoutShift.ts +20 -19
  492. package/front_end/models/trace/root-causes/RootCauses.ts +8 -8
  493. package/front_end/models/trace/types/Configuration.ts +23 -6
  494. package/front_end/models/trace/types/Extensions.ts +4 -6
  495. package/front_end/models/trace/types/File.ts +30 -30
  496. package/front_end/models/trace/types/Timing.ts +12 -20
  497. package/front_end/models/trace/types/TraceEvents.ts +254 -188
  498. package/front_end/models/workspace/FileManager.ts +3 -3
  499. package/front_end/models/workspace/SearchConfig.test.ts +3 -2
  500. package/front_end/models/workspace/UISourceCode.ts +10 -13
  501. package/front_end/models/workspace/WorkspaceImpl.test.ts +12 -13
  502. package/front_end/models/workspace/WorkspaceImpl.ts +10 -10
  503. package/front_end/models/workspace_diff/WorkspaceDiff.test.ts +5 -3
  504. package/front_end/models/workspace_diff/WorkspaceDiff.ts +49 -47
  505. package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +4 -7
  506. package/front_end/panels/accessibility/AccessibilityNodeView.ts +1 -4
  507. package/front_end/panels/accessibility/AccessibilitySubPane.ts +6 -8
  508. package/front_end/panels/accessibility/axBreadcrumbs.css +3 -14
  509. package/front_end/panels/ai_assistance/AiAssistancePanel.test.ts +67 -89
  510. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +245 -203
  511. package/front_end/panels/ai_assistance/AiHistoryStorage.test.ts +16 -16
  512. package/front_end/panels/ai_assistance/AiHistoryStorage.ts +62 -4
  513. package/front_end/panels/ai_assistance/ChangeManager.test.ts +101 -23
  514. package/front_end/panels/ai_assistance/ChangeManager.ts +32 -13
  515. package/front_end/panels/ai_assistance/ExtensionScope.ts +50 -31
  516. package/front_end/panels/ai_assistance/agents/AiAgent.test.ts +88 -272
  517. package/front_end/panels/ai_assistance/agents/AiAgent.ts +389 -382
  518. package/front_end/panels/ai_assistance/agents/FileAgent.test.ts +22 -217
  519. package/front_end/panels/ai_assistance/agents/FileAgent.ts +5 -69
  520. package/front_end/panels/ai_assistance/agents/NetworkAgent.test.ts +19 -163
  521. package/front_end/panels/ai_assistance/agents/NetworkAgent.ts +9 -253
  522. package/front_end/panels/ai_assistance/agents/PatchAgent.ts +120 -198
  523. package/front_end/panels/ai_assistance/agents/PerformanceAgent.test.ts +44 -67
  524. package/front_end/panels/ai_assistance/agents/PerformanceAgent.ts +31 -12
  525. package/front_end/panels/ai_assistance/agents/PerformanceInsightsAgent.ts +117 -0
  526. package/front_end/panels/ai_assistance/agents/StylingAgent.test.ts +220 -418
  527. package/front_end/panels/ai_assistance/agents/StylingAgent.ts +245 -69
  528. package/front_end/panels/ai_assistance/ai_assistance-meta.ts +0 -14
  529. package/front_end/panels/ai_assistance/ai_assistance.ts +4 -0
  530. package/front_end/panels/ai_assistance/components/ChatView.ts +945 -772
  531. package/front_end/panels/ai_assistance/components/MarkdownRendererWithCodeBlock.ts +57 -0
  532. package/front_end/panels/ai_assistance/components/UserActionRow.test.ts +67 -29
  533. package/front_end/panels/ai_assistance/components/UserActionRow.ts +294 -244
  534. package/front_end/panels/ai_assistance/components/chatView.css +87 -22
  535. package/front_end/panels/ai_assistance/components/userActionRow.css +72 -78
  536. package/front_end/panels/ai_assistance/data_formatters/FileFormatter.test.ts +115 -0
  537. package/front_end/panels/ai_assistance/data_formatters/FileFormatter.ts +81 -0
  538. package/front_end/panels/ai_assistance/data_formatters/NetworkRequestFormatter.test.ts +87 -0
  539. package/front_end/panels/ai_assistance/data_formatters/NetworkRequestFormatter.ts +272 -0
  540. package/front_end/panels/ai_assistance/debug.ts +30 -0
  541. package/front_end/panels/animation/AnimationScreenshotPopover.ts +2 -1
  542. package/front_end/panels/animation/AnimationTimeline.test.ts +8 -8
  543. package/front_end/panels/animation/AnimationTimeline.ts +8 -3
  544. package/front_end/panels/animation/AnimationUI.ts +6 -6
  545. package/front_end/panels/animation/animationTimeline.css +1 -5
  546. package/front_end/panels/application/AppManifestView.test.ts +7 -5
  547. package/front_end/panels/application/AppManifestView.ts +16 -20
  548. package/front_end/panels/application/ApplicationPanelSidebar.test.ts +5 -3
  549. package/front_end/panels/application/ApplicationPanelSidebar.ts +94 -25
  550. package/front_end/panels/application/ApplicationPanelTreeElement.ts +34 -2
  551. package/front_end/panels/application/BackgroundServiceModel.ts +4 -4
  552. package/front_end/panels/application/BackgroundServiceView.test.ts +23 -2
  553. package/front_end/panels/application/BackgroundServiceView.ts +37 -33
  554. package/front_end/panels/application/CookieItemsView.ts +7 -6
  555. package/front_end/panels/application/DOMStorageItemsView.ts +38 -53
  556. package/front_end/panels/application/DOMStorageModel.ts +11 -11
  557. package/front_end/panels/application/ExtensionStorageItemsView.test.ts +18 -25
  558. package/front_end/panels/application/ExtensionStorageItemsView.ts +41 -96
  559. package/front_end/panels/application/ExtensionStorageModel.test.ts +4 -2
  560. package/front_end/panels/application/ExtensionStorageModel.ts +4 -4
  561. package/front_end/panels/application/IndexedDBModel.ts +8 -8
  562. package/front_end/panels/application/IndexedDBViews.ts +11 -14
  563. package/front_end/panels/application/InterestGroupStorageModel.ts +4 -4
  564. package/front_end/panels/application/InterestGroupStorageView.test.ts +9 -33
  565. package/front_end/panels/application/InterestGroupStorageView.ts +38 -33
  566. package/front_end/panels/application/KeyValueStorageItemsView.test.ts +122 -0
  567. package/front_end/panels/application/KeyValueStorageItemsView.ts +356 -0
  568. package/front_end/panels/application/OpenedWindowDetailsView.ts +4 -10
  569. package/front_end/panels/application/PreloadingTreeElement.ts +2 -2
  570. package/front_end/panels/application/ReportingApiReportsView.test.ts +1 -13
  571. package/front_end/panels/application/ReportingApiReportsView.ts +14 -19
  572. package/front_end/panels/application/ReportingApiView.test.ts +13 -0
  573. package/front_end/panels/application/ResourcesPanel.ts +11 -12
  574. package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +11 -1
  575. package/front_end/panels/application/ServiceWorkerCacheViews.ts +12 -5
  576. package/front_end/panels/application/ServiceWorkersView.ts +1 -6
  577. package/front_end/panels/application/SharedStorageEventsView.test.ts +4 -19
  578. package/front_end/panels/application/SharedStorageEventsView.ts +24 -28
  579. package/front_end/panels/application/SharedStorageItemsView.test.ts +1 -1
  580. package/front_end/panels/application/SharedStorageItemsView.ts +14 -10
  581. package/front_end/panels/application/SharedStorageModel.ts +9 -9
  582. package/front_end/panels/application/StorageBucketsTreeElement.ts +19 -3
  583. package/front_end/panels/application/StorageItemsView.ts +4 -2
  584. package/front_end/panels/application/StorageView.ts +4 -11
  585. package/front_end/panels/application/appManifestView.css +1 -1
  586. package/front_end/panels/application/application.ts +2 -0
  587. package/front_end/panels/application/components/BackForwardCacheView.ts +28 -25
  588. package/front_end/panels/application/components/BounceTrackingMitigationsView.test.ts +7 -8
  589. package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +24 -38
  590. package/front_end/panels/application/components/EndpointsGrid.test.ts +10 -9
  591. package/front_end/panels/application/components/EndpointsGrid.ts +40 -51
  592. package/front_end/panels/application/components/FrameDetailsView.ts +59 -56
  593. package/front_end/panels/application/components/InterestGroupAccessGrid.test.ts +3 -7
  594. package/front_end/panels/application/components/InterestGroupAccessGrid.ts +65 -73
  595. package/front_end/panels/application/components/OriginTrialTreeView.test.ts +1 -1
  596. package/front_end/panels/application/components/OriginTrialTreeView.ts +23 -15
  597. package/front_end/panels/application/components/PermissionsPolicySection.ts +17 -13
  598. package/front_end/panels/application/components/ProtocolHandlersView.test.ts +5 -3
  599. package/front_end/panels/application/components/ProtocolHandlersView.ts +16 -10
  600. package/front_end/panels/application/components/ReportsGrid.test.ts +10 -9
  601. package/front_end/panels/application/components/ReportsGrid.ts +67 -81
  602. package/front_end/panels/application/components/ServiceWorkerRouterView.ts +8 -4
  603. package/front_end/panels/application/components/SharedStorageAccessGrid.test.ts +6 -12
  604. package/front_end/panels/application/components/SharedStorageAccessGrid.ts +96 -97
  605. package/front_end/panels/application/components/SharedStorageMetadataView.ts +10 -6
  606. package/front_end/panels/application/components/StackTrace.test.ts +4 -3
  607. package/front_end/panels/application/components/StackTrace.ts +16 -10
  608. package/front_end/panels/application/components/StorageMetadataView.ts +18 -18
  609. package/front_end/panels/application/components/TrustTokensView.test.ts +7 -11
  610. package/front_end/panels/application/components/TrustTokensView.ts +75 -76
  611. package/front_end/panels/application/components/bounceTrackingMitigationsView.css +1 -2
  612. package/front_end/panels/application/components/interestGroupAccessGrid.css +3 -2
  613. package/front_end/panels/application/components/reportingApiGrid.css +3 -13
  614. package/front_end/panels/application/components/sharedStorageAccessGrid.css +3 -2
  615. package/front_end/panels/application/components/trustTokensView.css +3 -2
  616. package/front_end/panels/application/interestGroupStorageView.css +0 -13
  617. package/front_end/panels/application/preloading/PreloadingView.test.ts +19 -27
  618. package/front_end/panels/application/preloading/PreloadingView.ts +17 -26
  619. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +9 -12
  620. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +63 -93
  621. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.test.ts +75 -12
  622. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +43 -25
  623. package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +18 -19
  624. package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +24 -20
  625. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +57 -124
  626. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.test.ts +4 -2
  627. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +31 -63
  628. package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +12 -8
  629. package/front_end/panels/application/preloading/components/RuleSetGrid.test.ts +10 -6
  630. package/front_end/panels/application/preloading/components/RuleSetGrid.ts +126 -219
  631. package/front_end/panels/application/preloading/components/UsedPreloadingView.test.ts +36 -34
  632. package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +20 -16
  633. package/front_end/panels/application/preloading/components/preloadingDetailsReportView.css +8 -0
  634. package/front_end/panels/application/preloading/components/preloadingDisabledInfobar.css +6 -19
  635. package/front_end/panels/application/preloading/components/preloadingGrid.css +2 -2
  636. package/front_end/panels/application/preloading/components/ruleSetGrid.css +2 -2
  637. package/front_end/panels/application/sharedStorageEventsView.css +0 -13
  638. package/front_end/panels/autofill/AutofillView.test.ts +14 -11
  639. package/front_end/panels/autofill/AutofillView.ts +56 -114
  640. package/front_end/panels/autofill/autofillView.css +5 -0
  641. package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +3 -6
  642. package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +22 -14
  643. package/front_end/panels/browser_debugger/ObjectEventListenersSidebarPane.ts +1 -1
  644. package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +2 -5
  645. package/front_end/panels/browser_debugger/domBreakpointsSidebarPane.css +4 -0
  646. package/front_end/panels/changes/ChangesSidebar.ts +6 -9
  647. package/front_end/panels/changes/ChangesView.ts +45 -22
  648. package/front_end/panels/changes/changesView.css +2 -2
  649. package/front_end/panels/console/ConsoleContextSelector.ts +1 -1
  650. package/front_end/panels/console/ConsoleFilter.ts +3 -3
  651. package/front_end/panels/console/ConsolePinPane.ts +6 -7
  652. package/front_end/panels/console/ConsolePrompt.ts +5 -8
  653. package/front_end/panels/console/ConsoleSidebar.ts +4 -8
  654. package/front_end/panels/console/ConsoleView.test.ts +31 -4
  655. package/front_end/panels/console/ConsoleView.ts +61 -59
  656. package/front_end/panels/console/ConsoleViewMessage.test.ts +5 -3
  657. package/front_end/panels/console/ConsoleViewMessage.ts +34 -1
  658. package/front_end/panels/console/ErrorStackParser.test.ts +13 -13
  659. package/front_end/panels/console/consoleSidebar.css +4 -0
  660. package/front_end/panels/console/consoleView.css +13 -5
  661. package/front_end/panels/console_counters/WarningErrorCounter.ts +1 -0
  662. package/front_end/panels/coverage/CoverageDecorationManager.test.ts +4 -3
  663. package/front_end/panels/coverage/CoverageListView.ts +2 -5
  664. package/front_end/panels/coverage/CoverageModel.ts +8 -8
  665. package/front_end/panels/coverage/CoverageView.ts +11 -7
  666. package/front_end/panels/coverage/coverageView.css +1 -2
  667. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +5 -11
  668. package/front_end/panels/css_overview/CSSOverviewController.ts +8 -8
  669. package/front_end/panels/css_overview/CSSOverviewPanel.ts +1 -4
  670. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -5
  671. package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +8 -9
  672. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +6 -4
  673. package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +151 -239
  674. package/front_end/panels/developer_resources/DeveloperResourcesView.test.ts +7 -6
  675. package/front_end/panels/developer_resources/DeveloperResourcesView.ts +15 -14
  676. package/front_end/panels/developer_resources/developerResourcesListView.css +4 -8
  677. package/front_end/panels/developer_resources/developerResourcesView.css +0 -1
  678. package/front_end/panels/elements/AccessibilityTreeUtils.ts +3 -3
  679. package/front_end/panels/elements/AccessibilityTreeView.test.ts +3 -1
  680. package/front_end/panels/elements/AccessibilityTreeView.ts +5 -1
  681. package/front_end/panels/elements/ClassesPaneWidget.ts +2 -2
  682. package/front_end/panels/elements/ColorSwatchPopoverIcon.test.ts +63 -0
  683. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +44 -18
  684. package/front_end/panels/elements/ComputedStyleModel.ts +4 -4
  685. package/front_end/panels/elements/ComputedStyleWidget.test.ts +153 -0
  686. package/front_end/panels/elements/ComputedStyleWidget.ts +27 -13
  687. package/front_end/panels/elements/DOMLinkifier.ts +2 -2
  688. package/front_end/panels/elements/ElementStatePaneWidget.test.ts +8 -19
  689. package/front_end/panels/elements/ElementStatePaneWidget.ts +10 -2
  690. package/front_end/panels/elements/ElementsPanel.ts +2 -2
  691. package/front_end/panels/elements/ElementsSidebarPane.ts +6 -2
  692. package/front_end/panels/elements/ElementsTreeElement.ts +18 -20
  693. package/front_end/panels/elements/ElementsTreeOutline.test.ts +93 -0
  694. package/front_end/panels/elements/ElementsTreeOutline.ts +18 -7
  695. package/front_end/panels/elements/EventListenersWidget.ts +1 -1
  696. package/front_end/panels/elements/LayersWidget.ts +3 -3
  697. package/front_end/panels/elements/MetricsSidebarPane.ts +1 -4
  698. package/front_end/panels/elements/NodeStackTraceWidget.ts +1 -1
  699. package/front_end/panels/elements/PlatformFontsWidget.ts +4 -9
  700. package/front_end/panels/elements/PropertiesWidget.ts +4 -6
  701. package/front_end/panels/elements/PropertyRenderer.ts +31 -16
  702. package/front_end/panels/elements/StylePropertiesSection.test.ts +15 -49
  703. package/front_end/panels/elements/StylePropertiesSection.ts +19 -14
  704. package/front_end/panels/elements/StylePropertyHighlighter.test.ts +3 -0
  705. package/front_end/panels/elements/StylePropertyTreeElement.test.ts +171 -172
  706. package/front_end/panels/elements/StylePropertyTreeElement.ts +329 -177
  707. package/front_end/panels/elements/StylesSidebarPane.test.ts +423 -27
  708. package/front_end/panels/elements/StylesSidebarPane.ts +173 -30
  709. package/front_end/panels/elements/TopLayerContainer.ts +1 -2
  710. package/front_end/panels/elements/WebCustomData.test.ts +1 -1
  711. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +7 -5
  712. package/front_end/panels/elements/components/AnchorFunctionLinkSwatch.ts +17 -13
  713. package/front_end/panels/elements/components/CSSHintDetailsView.ts +6 -4
  714. package/front_end/panels/elements/components/CSSPropertyDocsView.ts +8 -6
  715. package/front_end/panels/elements/components/CSSPropertyIconResolver.ts +31 -9
  716. package/front_end/panels/elements/components/CSSQuery.ts +14 -6
  717. package/front_end/panels/elements/components/CSSVariableValueView.ts +9 -5
  718. package/front_end/panels/elements/components/ComputedStyleProperty.ts +5 -3
  719. package/front_end/panels/elements/components/ComputedStyleTrace.ts +6 -4
  720. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +12 -8
  721. package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +6 -4
  722. package/front_end/panels/elements/components/LayoutPane.ts +15 -8
  723. package/front_end/panels/elements/components/QueryContainer.ts +17 -13
  724. package/front_end/panels/elements/components/StylePropertyEditor.ts +11 -7
  725. package/front_end/panels/elements/components/layoutPane.css +1 -1
  726. package/front_end/panels/elements/elements.ts +0 -2
  727. package/front_end/panels/elements/elementsTreeOutline.css +3 -5
  728. package/front_end/panels/elements/stylePropertiesTreeOutline.css +4 -0
  729. package/front_end/panels/emulation/DeviceModeToolbar.ts +28 -42
  730. package/front_end/panels/emulation/DeviceModeView.ts +2 -3
  731. package/front_end/panels/emulation/DeviceModeWrapper.ts +1 -1
  732. package/front_end/panels/emulation/InspectedPagePlaceholder.ts +5 -5
  733. package/front_end/panels/emulation/MediaQueryInspector.ts +1 -1
  734. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +3 -6
  735. package/front_end/panels/emulation/deviceModeView.css +17 -13
  736. package/front_end/panels/emulation/emulation-meta.ts +0 -1
  737. package/front_end/panels/event_listeners/EventListenersUtils.ts +4 -3
  738. package/front_end/panels/event_listeners/EventListenersView.ts +2 -5
  739. package/front_end/panels/explain/PromptBuilder.test.ts +39 -16
  740. package/front_end/panels/explain/PromptBuilder.ts +10 -11
  741. package/front_end/panels/explain/components/ConsoleInsight.test.ts +226 -0
  742. package/front_end/panels/explain/components/ConsoleInsight.ts +234 -47
  743. package/front_end/panels/explain/components/consoleInsight.css +55 -0
  744. package/front_end/panels/explain/components/consoleInsightSourcesList.css +2 -0
  745. package/front_end/panels/issues/AffectedBlockedByResponseView.ts +3 -3
  746. package/front_end/panels/issues/AffectedDescendantsWithinSelectElementView.ts +64 -0
  747. package/front_end/panels/issues/AffectedDirectivesView.ts +2 -2
  748. package/front_end/panels/issues/AffectedHeavyAdView.ts +1 -1
  749. package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +1 -1
  750. package/front_end/panels/issues/AffectedTrackingSitesView.ts +1 -0
  751. package/front_end/panels/issues/IssueAggregator.ts +17 -7
  752. package/front_end/panels/issues/IssueView.ts +2 -0
  753. package/front_end/panels/issues/IssuesPane.ts +9 -8
  754. package/front_end/panels/issues/components/ElementsPanelLink.ts +6 -4
  755. package/front_end/panels/issues/components/HideIssuesMenu.ts +6 -4
  756. package/front_end/panels/issues/issuesPane.css +1 -1
  757. package/front_end/panels/issues/issuesTree.css +7 -4
  758. package/front_end/panels/layer_viewer/LayerDetailsView.ts +12 -6
  759. package/front_end/panels/layer_viewer/LayerTreeOutline.ts +3 -3
  760. package/front_end/panels/layer_viewer/LayerViewHost.ts +0 -1
  761. package/front_end/panels/layer_viewer/Layers3DView.ts +7 -7
  762. package/front_end/panels/layer_viewer/PaintProfilerView.ts +5 -8
  763. package/front_end/panels/layer_viewer/TransformController.ts +8 -5
  764. package/front_end/panels/layer_viewer/layerDetailsView.css +4 -0
  765. package/front_end/panels/layer_viewer/layers3DView.css +1 -1
  766. package/front_end/panels/layers/LayerTreeModel.ts +5 -5
  767. package/front_end/panels/layers/LayersPanel.ts +1 -2
  768. package/front_end/panels/lighthouse/LighthouseController.ts +9 -9
  769. package/front_end/panels/lighthouse/LighthousePanel.ts +10 -9
  770. package/front_end/panels/lighthouse/LighthouseProtocolService.ts +1 -1
  771. package/front_end/panels/lighthouse/LighthouseReportSelector.ts +3 -7
  772. package/front_end/panels/lighthouse/LighthouseStartView.ts +5 -2
  773. package/front_end/panels/lighthouse/LighthouseStatusView.ts +1 -1
  774. package/front_end/panels/lighthouse/LighthouseTimespanView.ts +1 -1
  775. package/front_end/panels/lighthouse/lighthousePanel.css +2 -2
  776. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.test.ts +1 -1
  777. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +14 -14
  778. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.test.ts +3 -3
  779. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +3 -3
  780. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +9 -5
  781. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +26 -26
  782. package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +10 -6
  783. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +9 -5
  784. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.ts +15 -11
  785. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +16 -9
  786. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +4 -3
  787. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +8 -4
  788. package/front_end/panels/linear_memory_inspector/components/valueInterpreterDisplay.css +1 -0
  789. package/front_end/panels/media/EventDisplayTable.ts +2 -5
  790. package/front_end/panels/media/EventTimelineView.ts +3 -3
  791. package/front_end/panels/media/MediaModel.ts +7 -7
  792. package/front_end/panels/media/PlayerListView.ts +1 -5
  793. package/front_end/panels/media/PlayerMessagesView.ts +5 -7
  794. package/front_end/panels/media/PlayerPropertiesView.ts +5 -8
  795. package/front_end/panels/mobile_throttling/CalibrationController.ts +368 -0
  796. package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +5 -4
  797. package/front_end/panels/mobile_throttling/ThrottlingManager.test.ts +7 -9
  798. package/front_end/panels/mobile_throttling/ThrottlingManager.ts +63 -39
  799. package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +40 -14
  800. package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +334 -11
  801. package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +1 -0
  802. package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +32 -0
  803. package/front_end/panels/network/BinaryResourceView.ts +7 -9
  804. package/front_end/panels/network/BlockedURLsPane.test.ts +4 -2
  805. package/front_end/panels/network/BlockedURLsPane.ts +9 -7
  806. package/front_end/panels/network/EventSourceMessagesView.ts +6 -5
  807. package/front_end/panels/network/NetworkConfigView.ts +3 -5
  808. package/front_end/panels/network/NetworkDataGridNode.test.ts +38 -58
  809. package/front_end/panels/network/NetworkDataGridNode.ts +4 -4
  810. package/front_end/panels/network/NetworkItemView.test.ts +26 -28
  811. package/front_end/panels/network/NetworkItemView.ts +9 -11
  812. package/front_end/panels/network/NetworkLogView.test.ts +24 -24
  813. package/front_end/panels/network/NetworkLogView.ts +9 -6
  814. package/front_end/panels/network/NetworkManageCustomHeadersView.ts +3 -3
  815. package/front_end/panels/network/NetworkOverview.ts +12 -12
  816. package/front_end/panels/network/NetworkPanel.test.ts +1 -2
  817. package/front_end/panels/network/NetworkPanel.ts +43 -46
  818. package/front_end/panels/network/NetworkSearchScope.test.ts +5 -5
  819. package/front_end/panels/network/NetworkTimeCalculator.ts +3 -3
  820. package/front_end/panels/network/NetworkWaterfallColumn.ts +5 -3
  821. package/front_end/panels/network/RequestCookiesView.test.ts +5 -4
  822. package/front_end/panels/network/RequestCookiesView.ts +4 -6
  823. package/front_end/panels/network/RequestHTMLView.ts +2 -1
  824. package/front_end/panels/network/RequestInitiatorView.ts +5 -5
  825. package/front_end/panels/network/RequestPayloadView.ts +20 -12
  826. package/front_end/panels/network/RequestPreviewView.test.ts +8 -9
  827. package/front_end/panels/network/RequestPreviewView.ts +5 -3
  828. package/front_end/panels/network/RequestResponseView.test.ts +8 -8
  829. package/front_end/panels/network/RequestResponseView.ts +8 -3
  830. package/front_end/panels/network/RequestTimingView.test.ts +5 -3
  831. package/front_end/panels/network/RequestTimingView.ts +1 -1
  832. package/front_end/panels/network/ResourceWebSocketFrameView.ts +11 -5
  833. package/front_end/panels/network/SignedExchangeInfoView.ts +6 -10
  834. package/front_end/panels/network/binaryResourceView.css +1 -1
  835. package/front_end/panels/network/components/EditableSpan.ts +5 -3
  836. package/front_end/panels/network/components/HeaderSectionRow.ts +25 -24
  837. package/front_end/panels/network/components/RequestHeaderSection.ts +9 -5
  838. package/front_end/panels/network/components/RequestHeadersView.test.ts +15 -20
  839. package/front_end/panels/network/components/RequestHeadersView.ts +28 -24
  840. package/front_end/panels/network/components/RequestTrustTokensView.ts +29 -19
  841. package/front_end/panels/network/components/ResponseHeaderSection.test.ts +25 -32
  842. package/front_end/panels/network/components/ResponseHeaderSection.ts +8 -8
  843. package/front_end/panels/network/components/WebBundleInfoView.css +8 -0
  844. package/front_end/panels/network/components/WebBundleInfoView.ts +32 -49
  845. package/front_end/panels/network/network-meta.ts +5 -2
  846. package/front_end/panels/network/networkConfigView.css +3 -3
  847. package/front_end/panels/network/networkLogView.css +1 -1
  848. package/front_end/panels/network/networkManageCustomHeadersView.css +7 -11
  849. package/front_end/panels/network/networkPanel.css +9 -12
  850. package/front_end/panels/network/requestInitiatorView.css +1 -1
  851. package/front_end/panels/network/webSocketFrameView.css +1 -1
  852. package/front_end/panels/performance_monitor/PerformanceMonitor.ts +4 -4
  853. package/front_end/panels/profiler/HeapDetachedElementsView.ts +5 -5
  854. package/front_end/panels/profiler/HeapProfileView.ts +7 -7
  855. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +5 -5
  856. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +15 -15
  857. package/front_end/panels/profiler/HeapSnapshotProxy.ts +3 -3
  858. package/front_end/panels/profiler/HeapSnapshotView.ts +36 -17
  859. package/front_end/panels/profiler/HeapTimelineOverview.ts +4 -4
  860. package/front_end/panels/profiler/IsolateSelector.ts +1 -1
  861. package/front_end/panels/profiler/LiveHeapProfileView.ts +5 -3
  862. package/front_end/panels/profiler/ProfileDataGrid.ts +1 -2
  863. package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +5 -5
  864. package/front_end/panels/profiler/ProfileHeader.ts +12 -12
  865. package/front_end/panels/profiler/ProfileLauncherView.ts +4 -7
  866. package/front_end/panels/profiler/ProfileView.ts +1 -1
  867. package/front_end/panels/profiler/ProfilesPanel.ts +12 -11
  868. package/front_end/panels/profiler/TopDownProfileDataGrid.ts +2 -2
  869. package/front_end/panels/profiler/liveHeapProfile.css +1 -1
  870. package/front_end/panels/profiler/profileLauncherView.css +1 -2
  871. package/front_end/panels/protocol_monitor/{components/JSONEditor.css → JSONEditor.css} +6 -1
  872. package/front_end/panels/protocol_monitor/{components/JSONEditor.test.ts → JSONEditor.test.ts} +90 -91
  873. package/front_end/panels/protocol_monitor/{components/JSONEditor.ts → JSONEditor.ts} +159 -81
  874. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +293 -360
  875. package/front_end/panels/protocol_monitor/protocol_monitor.ts +2 -2
  876. package/front_end/panels/recorder/RecorderController.test.ts +0 -2
  877. package/front_end/panels/recorder/RecorderController.ts +48 -18
  878. package/front_end/panels/recorder/components/ControlButton.ts +7 -3
  879. package/front_end/panels/recorder/components/CreateRecordingView.ts +8 -6
  880. package/front_end/panels/recorder/components/ExtensionView.ts +8 -4
  881. package/front_end/panels/recorder/components/RecordingListView.ts +8 -4
  882. package/front_end/panels/recorder/components/RecordingView.ts +22 -18
  883. package/front_end/panels/recorder/components/ReplaySection.ts +3 -3
  884. package/front_end/panels/recorder/components/SelectButton.ts +14 -10
  885. package/front_end/panels/recorder/components/StepEditor.ts +18 -14
  886. package/front_end/panels/recorder/components/StepView.ts +20 -17
  887. package/front_end/panels/recorder/components/TimelineSection.ts +9 -5
  888. package/front_end/panels/recorder/components/components.ts +0 -2
  889. package/front_end/panels/recorder/controllers/SelectorPicker.ts +3 -4
  890. package/front_end/panels/recorder/converters/Converter.ts +1 -1
  891. package/front_end/panels/recorder/extensions/ExtensionManager.ts +3 -3
  892. package/front_end/panels/recorder/injected/injected.ts +2 -2
  893. package/front_end/panels/recorder/injected/selectors/CSSSelector.test.ts +0 -2
  894. package/front_end/panels/recorder/models/RecordingPlayer.ts +10 -13
  895. package/front_end/panels/recorder/models/RecordingSession.ts +31 -34
  896. package/front_end/panels/recorder/models/Schema.ts +1 -1
  897. package/front_end/panels/recorder/models/SchemaUtils.ts +4 -3
  898. package/front_end/panels/recorder/recorderController.css +2 -1
  899. package/front_end/panels/recorder/util/util.ts +1 -1
  900. package/front_end/panels/screencast/ScreencastView.ts +5 -21
  901. package/front_end/panels/search/SearchResultsPane.ts +1 -4
  902. package/front_end/panels/search/SearchView.ts +8 -5
  903. package/front_end/panels/security/CookieControlsTreeElement.ts +7 -4
  904. package/front_end/panels/security/CookieControlsView.test.ts +38 -1
  905. package/front_end/panels/security/CookieControlsView.ts +183 -68
  906. package/front_end/panels/security/CookieReportTreeElement.ts +7 -4
  907. package/front_end/panels/security/CookieReportView.test.ts +2 -2
  908. package/front_end/panels/security/CookieReportView.ts +87 -42
  909. package/front_end/panels/security/OriginTreeElement.ts +2 -3
  910. package/front_end/panels/security/SecurityModel.ts +3 -3
  911. package/front_end/panels/security/SecurityPanel.test.ts +43 -3
  912. package/front_end/panels/security/SecurityPanel.ts +48 -50
  913. package/front_end/panels/security/SecurityPanelSidebar.ts +82 -23
  914. package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +21 -2
  915. package/front_end/panels/security/cookieControlsView.css +29 -4
  916. package/front_end/panels/security/cookieReportView.css +4 -3
  917. package/front_end/panels/security/security-meta.ts +20 -7
  918. package/front_end/panels/sensors/LocationsSettingsTab.ts +18 -19
  919. package/front_end/panels/sensors/SensorsView.ts +3 -7
  920. package/front_end/panels/sensors/sensors.css +1 -1
  921. package/front_end/panels/settings/AISettingsTab.test.ts +3 -4
  922. package/front_end/panels/settings/AISettingsTab.ts +47 -29
  923. package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +18 -29
  924. package/front_end/panels/settings/KeybindsSettingsTab.ts +11 -12
  925. package/front_end/panels/settings/SettingsScreen.ts +9 -9
  926. package/front_end/panels/settings/components/SyncSection.ts +9 -6
  927. package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +11 -16
  928. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +14 -10
  929. package/front_end/panels/settings/emulation/utils/UserAgentMetadata.ts +5 -5
  930. package/front_end/panels/settings/settingsScreen.css +1 -1
  931. package/front_end/panels/snippets/ScriptSnippetFileSystem.test.ts +4 -2
  932. package/front_end/panels/snippets/SnippetsQuickOpen.ts +9 -3
  933. package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -4
  934. package/front_end/panels/sources/BreakpointEditDialog.test.ts +2 -3
  935. package/front_end/panels/sources/BreakpointEditDialog.ts +6 -11
  936. package/front_end/panels/sources/CSSPlugin.test.ts +3 -2
  937. package/front_end/panels/sources/CallStackSidebarPane.ts +3 -6
  938. package/front_end/panels/sources/CoveragePlugin.test.ts +4 -2
  939. package/front_end/panels/sources/CoveragePlugin.ts +4 -0
  940. package/front_end/panels/sources/DebuggerPausedMessage.ts +1 -1
  941. package/front_end/panels/sources/DebuggerPlugin.test.ts +4 -2
  942. package/front_end/panels/sources/DebuggerPlugin.ts +19 -15
  943. package/front_end/panels/sources/FilePathScoreFunction.ts +39 -19
  944. package/front_end/panels/sources/FilteredUISourceCodeListProvider.test.ts +3 -3
  945. package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +2 -1
  946. package/front_end/panels/sources/GoToLineQuickOpen.ts +16 -22
  947. package/front_end/panels/sources/NavigatorView.test.ts +9 -7
  948. package/front_end/panels/sources/NavigatorView.ts +34 -31
  949. package/front_end/panels/sources/OpenFileQuickOpen.ts +2 -2
  950. package/front_end/panels/sources/OutlineQuickOpen.ts +9 -6
  951. package/front_end/panels/sources/Plugin.ts +1 -1
  952. package/front_end/panels/sources/ProfilePlugin.ts +5 -1
  953. package/front_end/panels/sources/ScopeChainSidebarPane.ts +2 -5
  954. package/front_end/panels/sources/SnippetsPlugin.ts +2 -2
  955. package/front_end/panels/sources/SourcesNavigator.test.ts +40 -38
  956. package/front_end/panels/sources/SourcesNavigator.ts +45 -49
  957. package/front_end/panels/sources/SourcesPanel.ts +13 -10
  958. package/front_end/panels/sources/SourcesView.test.ts +11 -10
  959. package/front_end/panels/sources/SourcesView.ts +39 -28
  960. package/front_end/panels/sources/TabbedEditorContainer.test.ts +12 -19
  961. package/front_end/panels/sources/TabbedEditorContainer.ts +6 -6
  962. package/front_end/panels/sources/ThreadsSidebarPane.ts +1 -4
  963. package/front_end/panels/sources/UISourceCodeFrame.ts +7 -3
  964. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +5 -9
  965. package/front_end/panels/sources/components/BreakpointsView.test.ts +19 -18
  966. package/front_end/panels/sources/components/BreakpointsView.ts +15 -11
  967. package/front_end/panels/sources/components/BreakpointsViewUtils.test.ts +44 -42
  968. package/front_end/panels/sources/components/HeadersView.test.ts +4 -2
  969. package/front_end/panels/sources/components/HeadersView.ts +18 -18
  970. package/front_end/panels/sources/components/breakpointsView.css +7 -7
  971. package/front_end/panels/sources/dialog.css +1 -1
  972. package/front_end/panels/sources/sources-meta.ts +12 -5
  973. package/front_end/panels/sources/sourcesPanel.css +5 -0
  974. package/front_end/panels/sources/sourcesView.css +0 -4
  975. package/front_end/panels/timeline/AnimationsTrackAppender.ts +0 -5
  976. package/front_end/panels/timeline/AnnotationHelpers.test.ts +4 -4
  977. package/front_end/panels/timeline/AnnotationHelpers.ts +8 -9
  978. package/front_end/panels/timeline/AppenderUtils.ts +16 -13
  979. package/front_end/panels/timeline/BenchmarkEvents.ts +1 -1
  980. package/front_end/panels/timeline/Breadcrumbs.test.ts +29 -29
  981. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +41 -58
  982. package/front_end/panels/timeline/CountersGraph.ts +3 -2
  983. package/front_end/panels/timeline/EntriesFilter.test.ts +12 -63
  984. package/front_end/panels/timeline/EntriesFilter.ts +18 -33
  985. package/front_end/panels/timeline/EventsTimelineTreeView.ts +5 -5
  986. package/front_end/panels/timeline/ExtensionTrackAppender.ts +2 -2
  987. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +22 -19
  988. package/front_end/panels/timeline/ModificationsManager.test.ts +18 -18
  989. package/front_end/panels/timeline/ModificationsManager.ts +8 -9
  990. package/front_end/panels/timeline/NetworkTrackAppender.ts +8 -10
  991. package/front_end/panels/timeline/README.md +30 -0
  992. package/front_end/panels/timeline/ServerTimingsTrackAppender.ts +0 -4
  993. package/front_end/panels/timeline/ThirdPartyTreeView.test.ts +68 -0
  994. package/front_end/panels/timeline/ThirdPartyTreeView.ts +300 -0
  995. package/front_end/panels/timeline/ThreadAppender.ts +6 -13
  996. package/front_end/panels/timeline/TimelineController.ts +3 -4
  997. package/front_end/panels/timeline/TimelineDetailsView.test.ts +36 -13
  998. package/front_end/panels/timeline/TimelineDetailsView.ts +91 -31
  999. package/front_end/panels/timeline/TimelineEventOverview.ts +27 -27
  1000. package/front_end/panels/timeline/TimelineFilters.test.ts +5 -7
  1001. package/front_end/panels/timeline/TimelineFilters.ts +2 -2
  1002. package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +4 -3
  1003. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +85 -64
  1004. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +7 -8
  1005. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +18 -20
  1006. package/front_end/panels/timeline/TimelineFlameChartView.test.ts +75 -21
  1007. package/front_end/panels/timeline/TimelineFlameChartView.ts +259 -74
  1008. package/front_end/panels/timeline/TimelineHistoryManager.ts +4 -3
  1009. package/front_end/panels/timeline/TimelineLayersView.ts +1 -1
  1010. package/front_end/panels/timeline/TimelineLoader.ts +5 -5
  1011. package/front_end/panels/timeline/TimelineMiniMap.test.ts +1 -1
  1012. package/front_end/panels/timeline/TimelineMiniMap.ts +8 -12
  1013. package/front_end/panels/timeline/TimelinePaintProfilerView.ts +2 -5
  1014. package/front_end/panels/timeline/TimelinePanel.test.ts +140 -0
  1015. package/front_end/panels/timeline/TimelinePanel.ts +160 -164
  1016. package/front_end/panels/timeline/TimelineSelection.test.ts +1 -1
  1017. package/front_end/panels/timeline/TimelineSelection.ts +9 -9
  1018. package/front_end/panels/timeline/TimelineSelectorStatsView.ts +148 -186
  1019. package/front_end/panels/timeline/TimelineTreeView.test.ts +24 -22
  1020. package/front_end/panels/timeline/TimelineTreeView.ts +153 -46
  1021. package/front_end/panels/timeline/TimelineUIUtils.test.ts +130 -101
  1022. package/front_end/panels/timeline/TimelineUIUtils.ts +108 -200
  1023. package/front_end/panels/timeline/TimingsTrackAppender.ts +9 -9
  1024. package/front_end/panels/timeline/components/Breadcrumbs.ts +3 -3
  1025. package/front_end/panels/timeline/components/BreadcrumbsUI.test.ts +6 -6
  1026. package/front_end/panels/timeline/components/BreadcrumbsUI.ts +10 -6
  1027. package/front_end/panels/timeline/components/CPUThrottlingSelector.test.ts +12 -4
  1028. package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +117 -44
  1029. package/front_end/panels/timeline/components/DetailsView.ts +2 -2
  1030. package/front_end/panels/timeline/components/FieldSettingsDialog.ts +13 -9
  1031. package/front_end/panels/timeline/components/IgnoreListSetting.test.ts +43 -45
  1032. package/front_end/panels/timeline/components/IgnoreListSetting.ts +35 -13
  1033. package/front_end/panels/timeline/components/InteractionBreakdown.ts +8 -4
  1034. package/front_end/panels/timeline/components/LayoutShiftDetails.ts +58 -38
  1035. package/front_end/panels/timeline/components/LiveMetricsView.test.ts +2 -2
  1036. package/front_end/panels/timeline/components/LiveMetricsView.ts +36 -28
  1037. package/front_end/panels/timeline/components/MetricCard.ts +25 -45
  1038. package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +4 -1
  1039. package/front_end/panels/timeline/components/NetworkRequestDetails.ts +47 -27
  1040. package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +18 -15
  1041. package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +9 -5
  1042. package/front_end/panels/timeline/components/OriginMap.ts +10 -10
  1043. package/front_end/panels/timeline/components/RelatedInsightChips.ts +9 -5
  1044. package/front_end/panels/timeline/components/Sidebar.test.ts +86 -8
  1045. package/front_end/panels/timeline/components/Sidebar.ts +19 -24
  1046. package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +6 -6
  1047. package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +23 -15
  1048. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +30 -13
  1049. package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +29 -7
  1050. package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +238 -48
  1051. package/front_end/panels/timeline/components/TimelineSummary.test.ts +4 -2
  1052. package/front_end/panels/timeline/components/TimelineSummary.ts +40 -36
  1053. package/front_end/panels/timeline/components/Utils.test.ts +2 -2
  1054. package/front_end/panels/timeline/components/Utils.ts +52 -5
  1055. package/front_end/panels/timeline/components/fieldSettingsDialog.css +7 -4
  1056. package/front_end/panels/timeline/components/ignoreListSetting.css +1 -2
  1057. package/front_end/panels/timeline/components/insights/BaseInsightComponent.test.ts +8 -6
  1058. package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +47 -20
  1059. package/front_end/panels/timeline/components/insights/CLSCulprits.ts +11 -101
  1060. package/front_end/panels/timeline/components/insights/Checklist.ts +108 -0
  1061. package/front_end/panels/timeline/components/insights/DOMSize.ts +83 -18
  1062. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +18 -101
  1063. package/front_end/panels/timeline/components/insights/EventRef.ts +12 -8
  1064. package/front_end/panels/timeline/components/insights/FontDisplay.ts +9 -18
  1065. package/front_end/panels/timeline/components/insights/ForcedReflow.ts +105 -0
  1066. package/front_end/panels/timeline/components/insights/ImageDelivery.ts +8 -26
  1067. package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +10 -40
  1068. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +25 -94
  1069. package/front_end/panels/timeline/components/insights/LCPPhases.ts +17 -53
  1070. package/front_end/panels/timeline/components/insights/LongCriticalNetworkTree.ts +53 -0
  1071. package/front_end/panels/timeline/components/insights/NodeLink.ts +42 -27
  1072. package/front_end/panels/timeline/components/insights/README.md +6 -8
  1073. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +9 -25
  1074. package/front_end/panels/timeline/components/insights/SidebarInsight.ts +4 -4
  1075. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +15 -44
  1076. package/front_end/panels/timeline/components/insights/Table.ts +21 -14
  1077. package/front_end/panels/timeline/components/insights/ThirdParties.ts +11 -25
  1078. package/front_end/panels/timeline/components/insights/Viewport.ts +16 -11
  1079. package/front_end/panels/timeline/components/insights/baseInsightComponent.css +3 -39
  1080. package/front_end/panels/timeline/components/insights/checklist.css +33 -0
  1081. package/front_end/panels/timeline/components/insights/insights.ts +6 -0
  1082. package/front_end/panels/timeline/components/insights/table.css +1 -0
  1083. package/front_end/panels/timeline/components/layoutShiftDetails.css +1 -0
  1084. package/front_end/panels/timeline/components/liveMetricsView.css +1 -1
  1085. package/front_end/panels/timeline/components/sidebarAnnotationsTab.css +1 -1
  1086. package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +54 -3
  1087. package/front_end/panels/timeline/components/timelineSummary.css +14 -7
  1088. package/front_end/panels/timeline/docs/flame_chart_migration.md +1 -3
  1089. package/front_end/panels/timeline/docs/sync_tracks.md +1 -1
  1090. package/front_end/panels/timeline/enable-easter-egg.js +1 -0
  1091. package/front_end/panels/timeline/fixtures/traces/README.md +18 -2
  1092. package/front_end/panels/timeline/fixtures/traces/crux.json.gz +0 -0
  1093. package/front_end/panels/timeline/fixtures/traces/dom-size-overlap.json.gz +0 -0
  1094. package/front_end/panels/timeline/fixtures/traces/dom-size.json.gz +0 -0
  1095. package/front_end/panels/timeline/fixtures/traces/forced-reflow.json.gz +0 -0
  1096. package/front_end/panels/timeline/fixtures/traces/lcp-fetchpriority-high.json.gz +0 -0
  1097. package/front_end/panels/timeline/fixtures/traces/lcp-late-paint-event.json.gz +0 -0
  1098. package/front_end/panels/timeline/fixtures/traces/multi-frame-dom-stats.json.gz +0 -0
  1099. package/front_end/panels/timeline/fixtures/traces/timings-track.json.gz +0 -0
  1100. package/front_end/panels/timeline/fixtures/traces/web-dev-initial-url.json.gz +0 -0
  1101. package/front_end/panels/timeline/fixtures/traces/web-dev-screenshot-source-ids.json.gz +0 -0
  1102. package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +42 -7
  1103. package/front_end/panels/timeline/overlays/OverlaysImpl.ts +125 -55
  1104. package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +37 -35
  1105. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +9 -6
  1106. package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +10 -7
  1107. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +15 -11
  1108. package/front_end/panels/timeline/timeline.ts +2 -0
  1109. package/front_end/panels/timeline/timelineFlameChartView.css +2 -3
  1110. package/front_end/panels/timeline/timelineFlamechartPopover.css +3 -0
  1111. package/front_end/panels/timeline/timelinePanel.css +224 -21
  1112. package/front_end/panels/timeline/timelineSelectorStatsView.css +9 -0
  1113. package/front_end/panels/timeline/timelineStatusDialog.css +23 -11
  1114. package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +3 -4
  1115. package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +34 -35
  1116. package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +6 -7
  1117. package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +2 -3
  1118. package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +3 -4
  1119. package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +9 -7
  1120. package/front_end/panels/timeline/track_appenders/NetworkTrackAppender.test.ts +2 -3
  1121. package/front_end/panels/timeline/track_appenders/ServerTimingsTrackAppender.test.ts +5 -9
  1122. package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +8 -7
  1123. package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +7 -8
  1124. package/front_end/panels/timeline/utils/AICallTree.test.ts +112 -11
  1125. package/front_end/panels/timeline/utils/AICallTree.ts +57 -12
  1126. package/front_end/panels/timeline/utils/EntityMapper.test.ts +1 -1
  1127. package/front_end/panels/timeline/utils/EntityMapper.ts +1 -1
  1128. package/front_end/panels/timeline/utils/EntryName.test.ts +15 -0
  1129. package/front_end/panels/timeline/utils/EntryName.ts +13 -1
  1130. package/front_end/panels/timeline/utils/EntryStyles.ts +11 -5
  1131. package/front_end/panels/timeline/utils/Helpers.ts +15 -9
  1132. package/front_end/panels/timeline/utils/IgnoreList.test.ts +5 -5
  1133. package/front_end/panels/timeline/utils/ImageCache.test.ts +3 -2
  1134. package/front_end/panels/timeline/utils/ImageCache.ts +12 -7
  1135. package/front_end/panels/timeline/utils/InsightAIContext.ts +5 -0
  1136. package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +6 -5
  1137. package/front_end/panels/timeline/utils/SourceMapsResolver.ts +5 -5
  1138. package/front_end/panels/timeline/utils/utils.ts +2 -2
  1139. package/front_end/panels/utils/utils.test.ts +26 -32
  1140. package/front_end/panels/web_audio/AudioContextContentBuilder.ts +1 -1
  1141. package/front_end/panels/web_audio/AudioContextSelector.ts +4 -4
  1142. package/front_end/panels/web_audio/WebAudioModel.ts +17 -17
  1143. package/front_end/panels/web_audio/WebAudioView.ts +8 -4
  1144. package/front_end/panels/web_audio/graph_visualizer/GraphView.ts +3 -3
  1145. package/front_end/panels/webauthn/WebauthnPane.ts +13 -12
  1146. package/front_end/panels/webauthn/webauthnPane.css +1 -1
  1147. package/front_end/panels/whats_new/ReleaseNote.test.ts +4 -3
  1148. package/front_end/panels/whats_new/ReleaseNoteText.ts +10 -10
  1149. package/front_end/panels/whats_new/ReleaseNoteView.test.ts +6 -5
  1150. package/front_end/panels/whats_new/ReleaseNoteView.ts +34 -37
  1151. package/front_end/panels/whats_new/WhatsNewImpl.ts +2 -2
  1152. package/front_end/panels/whats_new/releaseNoteView.css +9 -4
  1153. package/front_end/panels/whats_new/resources/WNDT.md +6 -6
  1154. package/front_end/panels/whats_new/whats_new-meta.ts +0 -1
  1155. package/front_end/services/puppeteer/PuppeteerConnection.ts +0 -1
  1156. package/front_end/services/trace_bounds/TraceBounds.test.ts +20 -20
  1157. package/front_end/services/trace_bounds/TraceBounds.ts +10 -12
  1158. package/front_end/testing/AiAssistanceHelpers.ts +142 -0
  1159. package/front_end/testing/DOMHelpers.ts +31 -14
  1160. package/front_end/testing/DataGridHelpers.ts +7 -76
  1161. package/front_end/testing/EnvironmentHelpers.ts +27 -7
  1162. package/front_end/testing/ExpectStubCall.ts +2 -3
  1163. package/front_end/testing/LanguagePluginHelpers.ts +4 -2
  1164. package/front_end/testing/MockConnection.ts +11 -16
  1165. package/front_end/testing/MockExecutionContext.ts +4 -4
  1166. package/front_end/testing/MutationHelpers.test.ts +5 -7
  1167. package/front_end/testing/MutationHelpers.ts +1 -1
  1168. package/front_end/testing/OverridesHelpers.ts +4 -2
  1169. package/front_end/testing/RealConnection.ts +1 -1
  1170. package/front_end/testing/ResourceTreeHelpers.ts +4 -2
  1171. package/front_end/testing/StyleHelpers.ts +90 -0
  1172. package/front_end/testing/TraceHelpers.ts +36 -38
  1173. package/front_end/testing/TrackAsyncOperations.ts +15 -15
  1174. package/front_end/testing/UISourceCodeHelpers.ts +5 -3
  1175. package/front_end/testing/test_setup.ts +4 -3
  1176. package/front_end/third_party/codemirror.next/package.json +1 -1
  1177. package/front_end/third_party/i18n/localized-string-set.ts +2 -2
  1178. package/front_end/third_party/puppeteer/README.chromium +2 -2
  1179. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +1 -1
  1180. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
  1181. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js +13 -14
  1182. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
  1183. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts +4 -4
  1184. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts.map +1 -1
  1185. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js +6 -6
  1186. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js.map +1 -1
  1187. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.d.ts +5 -5
  1188. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js +4 -4
  1189. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +13 -13
  1190. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js +11 -11
  1191. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js +7 -7
  1192. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js.map +1 -1
  1193. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/CDPSession.js +2 -2
  1194. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/CDPSession.js.map +1 -1
  1195. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts +4 -4
  1196. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts.map +1 -1
  1197. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js +1 -1
  1198. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js.map +1 -1
  1199. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts +2 -2
  1200. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
  1201. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +4 -4
  1202. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map +1 -1
  1203. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts.map +1 -1
  1204. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js +5 -2
  1205. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js.map +1 -1
  1206. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts.map +1 -1
  1207. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +2 -1
  1208. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
  1209. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js +2 -2
  1210. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js.map +1 -1
  1211. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.js +1 -1
  1212. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.js.map +1 -1
  1213. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts +3 -3
  1214. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts.map +1 -1
  1215. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.js +5 -12
  1216. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.js.map +1 -1
  1217. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.d.ts.map +1 -1
  1218. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js +1 -5
  1219. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js.map +1 -1
  1220. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.d.ts.map +1 -1
  1221. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.js +2 -1
  1222. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.js.map +1 -1
  1223. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +7 -7
  1224. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js.map +1 -1
  1225. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  1226. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js +2 -3
  1227. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
  1228. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.d.ts.map +1 -1
  1229. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js +0 -5
  1230. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js.map +1 -1
  1231. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js +1 -1
  1232. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js.map +1 -1
  1233. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js +1 -1
  1234. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js.map +1 -1
  1235. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.d.ts.map +1 -1
  1236. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js +1 -3
  1237. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js.map +1 -1
  1238. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js +1 -1
  1239. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  1240. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts.map +1 -1
  1241. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js +3 -7
  1242. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js.map +1 -1
  1243. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.d.ts +34 -0
  1244. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.d.ts.map +1 -0
  1245. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.js +8 -0
  1246. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.js.map +1 -0
  1247. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.d.ts +14 -33
  1248. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.d.ts.map +1 -1
  1249. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.js +308 -0
  1250. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.js.map +1 -1
  1251. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +0 -2
  1252. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts.map +1 -1
  1253. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js +0 -2
  1254. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js.map +1 -1
  1255. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +0 -5
  1256. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  1257. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.d.ts +15 -12
  1258. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.d.ts.map +1 -1
  1259. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.js +47 -11
  1260. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.js.map +1 -1
  1261. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.d.ts.map +1 -1
  1262. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.js +2 -2
  1263. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.js.map +1 -1
  1264. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -1
  1265. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js +1 -1
  1266. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -1
  1267. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
  1268. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts.map +1 -1
  1269. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
  1270. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js.map +1 -1
  1271. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
  1272. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  1273. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js +5 -9
  1274. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js.map +1 -1
  1275. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts +1 -1
  1276. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts.map +1 -1
  1277. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js +4 -18
  1278. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js.map +1 -1
  1279. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts +2 -16
  1280. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts.map +1 -1
  1281. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +3 -3
  1282. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +3 -3
  1283. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
  1284. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
  1285. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +36 -63
  1286. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +411 -542
  1287. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +1 -1
  1288. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
  1289. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js +13 -14
  1290. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
  1291. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts +4 -4
  1292. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts.map +1 -1
  1293. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js +6 -6
  1294. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js.map +1 -1
  1295. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.d.ts +5 -5
  1296. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js +4 -4
  1297. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +13 -13
  1298. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js +11 -11
  1299. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js +7 -7
  1300. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js.map +1 -1
  1301. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/CDPSession.js +2 -2
  1302. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/CDPSession.js.map +1 -1
  1303. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts +4 -4
  1304. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts.map +1 -1
  1305. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js +1 -1
  1306. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js.map +1 -1
  1307. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.d.ts +2 -2
  1308. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
  1309. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js +2 -2
  1310. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js.map +1 -1
  1311. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts.map +1 -1
  1312. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js +6 -3
  1313. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js.map +1 -1
  1314. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts.map +1 -1
  1315. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +2 -1
  1316. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
  1317. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js +3 -3
  1318. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js.map +1 -1
  1319. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.js +1 -1
  1320. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.js.map +1 -1
  1321. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts +3 -3
  1322. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts.map +1 -1
  1323. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.js +5 -12
  1324. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.js.map +1 -1
  1325. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.d.ts.map +1 -1
  1326. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.js +1 -5
  1327. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.js.map +1 -1
  1328. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.d.ts.map +1 -1
  1329. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.js +2 -1
  1330. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.js.map +1 -1
  1331. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +7 -7
  1332. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js.map +1 -1
  1333. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  1334. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js +2 -3
  1335. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
  1336. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.d.ts.map +1 -1
  1337. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js +0 -5
  1338. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js.map +1 -1
  1339. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js +1 -1
  1340. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js.map +1 -1
  1341. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js +1 -1
  1342. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js.map +1 -1
  1343. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.d.ts.map +1 -1
  1344. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js +1 -3
  1345. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js.map +1 -1
  1346. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js +1 -1
  1347. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  1348. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts.map +1 -1
  1349. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js +3 -7
  1350. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js.map +1 -1
  1351. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.d.ts +34 -0
  1352. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.d.ts.map +1 -0
  1353. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.js +7 -0
  1354. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.js.map +1 -0
  1355. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.d.ts +14 -33
  1356. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.d.ts.map +1 -1
  1357. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.js +306 -1
  1358. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.js.map +1 -1
  1359. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +0 -2
  1360. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts.map +1 -1
  1361. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js +0 -2
  1362. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js.map +1 -1
  1363. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +0 -5
  1364. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  1365. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts +15 -12
  1366. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts.map +1 -1
  1367. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js +47 -11
  1368. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js.map +1 -1
  1369. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.d.ts.map +1 -1
  1370. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.js +2 -2
  1371. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.js.map +1 -1
  1372. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -1
  1373. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js +1 -1
  1374. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -1
  1375. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
  1376. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts.map +1 -1
  1377. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
  1378. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js.map +1 -1
  1379. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  1380. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js +5 -9
  1381. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js.map +1 -1
  1382. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts +1 -1
  1383. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts.map +1 -1
  1384. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js +4 -18
  1385. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js.map +1 -1
  1386. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +2 -16
  1387. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts.map +1 -1
  1388. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +3 -3
  1389. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +3 -3
  1390. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
  1391. package/front_end/third_party/puppeteer/package/lib/types.d.ts +36 -63
  1392. package/front_end/third_party/puppeteer/package/package.json +14 -8
  1393. package/front_end/third_party/puppeteer/package/src/api/Browser.ts +27 -27
  1394. package/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts +6 -6
  1395. package/front_end/third_party/puppeteer/package/src/api/Frame.ts +5 -5
  1396. package/front_end/third_party/puppeteer/package/src/api/Page.ts +13 -13
  1397. package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +7 -7
  1398. package/front_end/third_party/puppeteer/package/src/bidi/CDPSession.ts +2 -2
  1399. package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +5 -5
  1400. package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +3 -3
  1401. package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +12 -4
  1402. package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +2 -1
  1403. package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +3 -3
  1404. package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +1 -1
  1405. package/front_end/third_party/puppeteer/package/src/cdp/Browser.ts +8 -21
  1406. package/front_end/third_party/puppeteer/package/src/cdp/BrowserConnector.ts +0 -6
  1407. package/front_end/third_party/puppeteer/package/src/cdp/CDPSession.ts +2 -1
  1408. package/front_end/third_party/puppeteer/package/src/cdp/DeviceRequestPrompt.ts +7 -7
  1409. package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +2 -3
  1410. package/front_end/third_party/puppeteer/package/src/cdp/Frame.ts +0 -7
  1411. package/front_end/third_party/puppeteer/package/src/cdp/FrameManager.ts +1 -1
  1412. package/front_end/third_party/puppeteer/package/src/cdp/HTTPRequest.ts +1 -1
  1413. package/front_end/third_party/puppeteer/package/src/cdp/HTTPResponse.ts +1 -3
  1414. package/front_end/third_party/puppeteer/package/src/cdp/IsolatedWorld.ts +1 -1
  1415. package/front_end/third_party/puppeteer/package/src/cdp/Page.ts +4 -10
  1416. package/front_end/third_party/puppeteer/package/src/cdp/TargetManageEvents.ts +38 -0
  1417. package/front_end/third_party/puppeteer/package/src/cdp/TargetManager.ts +417 -35
  1418. package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +0 -2
  1419. package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +0 -6
  1420. package/front_end/third_party/puppeteer/package/src/common/PDFOptions.ts +63 -25
  1421. package/front_end/third_party/puppeteer/package/src/common/WaitTask.ts +2 -6
  1422. package/front_end/third_party/puppeteer/package/src/common/util.ts +3 -1
  1423. package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
  1424. package/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts +5 -14
  1425. package/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts +3 -21
  1426. package/front_end/third_party/puppeteer/package/src/node/LaunchOptions.ts +2 -19
  1427. package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
  1428. package/front_end/third_party/puppeteer/puppeteer-tsconfig.json +1 -2
  1429. package/front_end/third_party/third-party-web/README.chromium +2 -2
  1430. package/front_end/third_party/third-party-web/lib/nostats-subset.js +1 -1
  1431. package/front_end/third_party/third-party-web/package/README.md +586 -573
  1432. package/front_end/third_party/third-party-web/package/dist/entities-httparchive-nostats.json +1 -1
  1433. package/front_end/third_party/third-party-web/package/dist/entities-httparchive.json +1 -1
  1434. package/front_end/third_party/third-party-web/package/dist/entities-nostats.json +1 -1
  1435. package/front_end/third_party/third-party-web/package/dist/entities.json +1 -1
  1436. package/front_end/third_party/third-party-web/package/facades.md +46 -0
  1437. package/front_end/third_party/third-party-web/package/lib/__snapshots__/index.test.js.snap +1 -1
  1438. package/front_end/third_party/third-party-web/package/lib/index.test.js +6 -6
  1439. package/front_end/third_party/third-party-web/package/lib/markdown/faqs.partial.md +36 -0
  1440. package/front_end/third_party/third-party-web/package/lib/markdown/goals.partial.md +9 -0
  1441. package/front_end/third_party/third-party-web/package/lib/markdown/methodology.partial.md +5 -0
  1442. package/front_end/third_party/third-party-web/package/lib/markdown/template.md +151 -0
  1443. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-02-01.md +1 -0
  1444. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-03-01.md +1 -0
  1445. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-05-06.md +1 -0
  1446. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-05-13.md +14 -0
  1447. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2021-01-01.md +1 -0
  1448. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2024-07-01.md +3 -0
  1449. package/front_end/third_party/third-party-web/package/nostats-subset.d.ts +1 -0
  1450. package/front_end/third_party/third-party-web/package/package.json +5 -4
  1451. package/front_end/third_party/third-party-web/package.json +2 -1
  1452. package/front_end/third_party/third-party-web/rebuild.sh +8 -0
  1453. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js +9 -5
  1454. package/front_end/ui/components/adorners/Adorner.ts +15 -17
  1455. package/front_end/ui/components/buttons/Button.test.ts +26 -6
  1456. package/front_end/ui/components/buttons/Button.ts +16 -34
  1457. package/front_end/ui/components/buttons/button.css +8 -18
  1458. package/front_end/ui/components/buttons/buttons.ts +2 -0
  1459. package/front_end/ui/components/cards/Card.test.ts +81 -72
  1460. package/front_end/ui/components/cards/Card.ts +85 -54
  1461. package/front_end/ui/components/cards/card.css +40 -36
  1462. package/front_end/ui/components/chrome_link/ChromeLink.test.ts +6 -6
  1463. package/front_end/ui/components/chrome_link/ChromeLink.ts +4 -6
  1464. package/front_end/ui/components/code_highlighter/code_highlighter.ts +2 -2
  1465. package/front_end/ui/components/dialogs/ButtonDialog.ts +6 -4
  1466. package/front_end/ui/components/dialogs/Dialog.ts +18 -13
  1467. package/front_end/ui/components/dialogs/ShortcutDialog.ts +7 -5
  1468. package/front_end/ui/components/dialogs/dialog.css +6 -1
  1469. package/front_end/ui/components/dialogs/shortcutDialog.css +1 -22
  1470. package/front_end/ui/components/diff_view/DiffView.ts +20 -14
  1471. package/front_end/ui/components/docs/breadcrumbs_perf/initial-breadcrumb-perf.ts +4 -4
  1472. package/front_end/ui/components/docs/breadcrumbs_perf/nested-breadcrumbs-perf.ts +8 -8
  1473. package/front_end/ui/components/docs/building-ui-documentation/StylingComponents.md +5 -1
  1474. package/front_end/ui/components/docs/{data_grid → combo_box}/basic.html +2 -11
  1475. package/front_end/ui/components/docs/combo_box/basic.ts +49 -0
  1476. package/front_end/ui/components/docs/create_breadcrumbs.ts +4 -4
  1477. package/front_end/ui/components/docs/dialog/basic.ts +1 -1
  1478. package/front_end/ui/components/docs/dialog/button_dialog.ts +1 -1
  1479. package/front_end/ui/components/docs/dialog/shortcut_dialog.ts +1 -1
  1480. package/front_end/ui/components/docs/elements_breadcrumbs/helpers.ts +1 -1
  1481. package/front_end/ui/components/docs/expandable_list/basic.ts +2 -2
  1482. package/front_end/ui/components/docs/icon_component/basic.ts +8 -34
  1483. package/front_end/ui/components/docs/linkifier/simple-url.ts +1 -1
  1484. package/front_end/ui/components/docs/panel_introduction_steps/basic.ts +3 -3
  1485. package/front_end/ui/components/docs/performance_panel/flamechart.ts +8 -8
  1486. package/front_end/ui/components/docs/performance_panel/network_request_details.ts +2 -1
  1487. package/front_end/ui/components/docs/performance_panel/overview.ts +2 -2
  1488. package/front_end/ui/components/docs/performance_panel/track_example.ts +4 -4
  1489. package/front_end/ui/components/docs/recorder_control_button/basic.ts +1 -1
  1490. package/front_end/ui/components/docs/recorder_create_recording_view/basic.ts +1 -1
  1491. package/front_end/ui/components/docs/recorder_recording_list_view/basic.ts +1 -1
  1492. package/front_end/ui/components/docs/recorder_recording_view/basic.ts +1 -1
  1493. package/front_end/ui/components/docs/recorder_select_button/basic.ts +4 -4
  1494. package/front_end/ui/components/docs/recorder_split_view/basic.ts +1 -1
  1495. package/front_end/ui/components/docs/report/basic.ts +3 -3
  1496. package/front_end/ui/components/docs/theme_colors/basic.ts +4 -4
  1497. package/front_end/ui/components/docs/{data_grid_controller → tooltip}/basic.html +2 -12
  1498. package/front_end/ui/components/docs/tooltip/basic.ts +64 -0
  1499. package/front_end/ui/components/docs/tree_outline/custom-renderers.ts +4 -4
  1500. package/front_end/ui/components/expandable_list/ExpandableList.test.ts +1 -3
  1501. package/front_end/ui/components/expandable_list/ExpandableList.ts +11 -7
  1502. package/front_end/ui/components/floating_button/FloatingButton.ts +8 -4
  1503. package/front_end/ui/components/helpers/directives.ts +7 -7
  1504. package/front_end/ui/components/helpers/helpers.test.ts +3 -5
  1505. package/front_end/ui/components/highlighting/HighlightManager.ts +5 -1
  1506. package/front_end/ui/components/icon_button/FileSourceIcon.ts +5 -6
  1507. package/front_end/ui/components/icon_button/Icon.ts +5 -19
  1508. package/front_end/ui/components/icon_button/IconButton.ts +9 -12
  1509. package/front_end/ui/components/icon_button/iconButton.css +13 -9
  1510. package/front_end/ui/components/input/input.ts +10 -2
  1511. package/front_end/ui/components/issue_counter/IssueCounter.ts +3 -8
  1512. package/front_end/ui/components/issue_counter/IssueLinkIcon.test.ts +1 -4
  1513. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +9 -5
  1514. package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -1
  1515. package/front_end/ui/components/linkifier/LinkifierImpl.test.ts +6 -4
  1516. package/front_end/ui/components/linkifier/LinkifierImpl.ts +21 -6
  1517. package/front_end/ui/components/linkifier/LinkifierUtils.ts +1 -1
  1518. package/front_end/ui/components/markdown_view/CodeBlock.test.ts +12 -22
  1519. package/front_end/ui/components/markdown_view/CodeBlock.ts +14 -15
  1520. package/front_end/ui/components/markdown_view/MarkdownImage.ts +10 -6
  1521. package/front_end/ui/components/markdown_view/MarkdownLink.test.ts +4 -2
  1522. package/front_end/ui/components/markdown_view/MarkdownLink.ts +6 -4
  1523. package/front_end/ui/components/markdown_view/MarkdownView.test.ts +19 -17
  1524. package/front_end/ui/components/markdown_view/MarkdownView.ts +81 -35
  1525. package/front_end/ui/components/markdown_view/markdownView.css +15 -0
  1526. package/front_end/ui/components/menus/Menu.ts +39 -9
  1527. package/front_end/ui/components/menus/README.md +10 -2
  1528. package/front_end/ui/components/menus/SelectMenu.test.ts +1 -3
  1529. package/front_end/ui/components/menus/SelectMenu.ts +20 -12
  1530. package/front_end/ui/components/menus/menu.css +1 -1
  1531. package/front_end/ui/components/menus/menuGroup.css +0 -1
  1532. package/front_end/ui/components/menus/menuItem.css +11 -3
  1533. package/front_end/ui/components/node_text/NodeText.ts +9 -5
  1534. package/front_end/ui/components/panel_feedback/FeedbackButton.test.ts +5 -3
  1535. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +3 -7
  1536. package/front_end/ui/components/panel_feedback/PanelFeedback.test.ts +5 -3
  1537. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +6 -4
  1538. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +5 -3
  1539. package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +7 -4
  1540. package/front_end/ui/components/report_view/ReportView.test.ts +2 -4
  1541. package/front_end/ui/components/report_view/ReportView.ts +37 -20
  1542. package/front_end/ui/components/request_link_icon/RequestLinkIcon.test.ts +1 -4
  1543. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +11 -7
  1544. package/front_end/ui/components/settings/SettingCheckbox.ts +10 -6
  1545. package/front_end/ui/components/settings/SettingDeprecationWarning.ts +9 -5
  1546. package/front_end/ui/components/spinners/Spinner.ts +6 -4
  1547. package/front_end/ui/components/split_view/SplitView.ts +2 -4
  1548. package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +11 -9
  1549. package/front_end/ui/components/suggestion_input/SuggestionInput.ts +16 -9
  1550. package/front_end/ui/components/survey_link/SurveyLink.ts +4 -10
  1551. package/front_end/ui/components/switch/SwitchImpl.test.ts +0 -1
  1552. package/front_end/ui/components/switch/SwitchImpl.ts +7 -5
  1553. package/front_end/ui/components/switch/switch.css +18 -0
  1554. package/front_end/ui/components/text_editor/TextEditor.test.ts +5 -3
  1555. package/front_end/ui/components/text_editor/TextEditor.ts +2 -4
  1556. package/front_end/ui/components/text_prompt/TextPrompt.ts +4 -9
  1557. package/front_end/ui/components/text_prompt/textPrompt.css +6 -1
  1558. package/front_end/ui/components/tooltip/Tooltip.test.ts +55 -0
  1559. package/front_end/ui/components/tooltip/Tooltip.ts +146 -0
  1560. package/front_end/ui/components/tooltip/tooltip.css +41 -0
  1561. package/front_end/ui/components/tooltip/tooltips.ts +7 -0
  1562. package/front_end/ui/components/tree_outline/TreeOutline.test.ts +2 -4
  1563. package/front_end/ui/components/tree_outline/TreeOutline.ts +15 -14
  1564. package/front_end/ui/components/tree_outline/TreeOutlineUtils.ts +8 -8
  1565. package/front_end/ui/components/tree_outline/treeOutline.css +5 -3
  1566. package/front_end/ui/legacy/ARIAUtils.ts +5 -5
  1567. package/front_end/ui/legacy/ActionRegistration.ts +4 -4
  1568. package/front_end/ui/legacy/Context.ts +3 -3
  1569. package/front_end/ui/legacy/ContextMenu.ts +8 -2
  1570. package/front_end/ui/legacy/Dialog.ts +4 -4
  1571. package/front_end/ui/legacy/DockController.ts +5 -5
  1572. package/front_end/ui/legacy/DropTarget.ts +1 -1
  1573. package/front_end/ui/legacy/EmptyWidget.ts +16 -12
  1574. package/front_end/ui/legacy/FilterBar.test.ts +3 -3
  1575. package/front_end/ui/legacy/FilterBar.ts +29 -12
  1576. package/front_end/ui/legacy/Geometry.ts +3 -11
  1577. package/front_end/ui/legacy/GlassPane.ts +3 -7
  1578. package/front_end/ui/legacy/Infobar.ts +5 -13
  1579. package/front_end/ui/legacy/InspectorView.ts +15 -11
  1580. package/front_end/ui/legacy/ListModel.ts +3 -3
  1581. package/front_end/ui/legacy/ListWidget.ts +24 -15
  1582. package/front_end/ui/legacy/PopoverHelper.ts +1 -1
  1583. package/front_end/ui/legacy/ProgressIndicator.ts +8 -5
  1584. package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +1 -1
  1585. package/front_end/ui/legacy/ReportView.ts +5 -5
  1586. package/front_end/ui/legacy/ResizerWidget.ts +6 -6
  1587. package/front_end/ui/legacy/RootView.ts +1 -1
  1588. package/front_end/ui/legacy/SearchableView.ts +7 -5
  1589. package/front_end/ui/legacy/SettingsUI.ts +8 -17
  1590. package/front_end/ui/legacy/SoftContextMenu.ts +1 -1
  1591. package/front_end/ui/legacy/SoftDropDown.ts +2 -2
  1592. package/front_end/ui/legacy/SplitWidget.test.ts +1 -2
  1593. package/front_end/ui/legacy/SplitWidget.ts +10 -5
  1594. package/front_end/ui/legacy/SuggestBox.ts +1 -1
  1595. package/front_end/ui/legacy/TabbedPane.ts +36 -16
  1596. package/front_end/ui/legacy/TargetCrashedScreen.ts +1 -1
  1597. package/front_end/ui/legacy/TextPrompt.ts +4 -4
  1598. package/front_end/ui/legacy/ThrottledWidget.ts +7 -2
  1599. package/front_end/ui/legacy/Toolbar.test.ts +100 -17
  1600. package/front_end/ui/legacy/Toolbar.ts +141 -178
  1601. package/front_end/ui/legacy/Treeoutline.ts +12 -14
  1602. package/front_end/ui/legacy/UIUtils.test.ts +13 -17
  1603. package/front_end/ui/legacy/UIUtils.ts +21 -36
  1604. package/front_end/ui/legacy/ViewManager.ts +14 -11
  1605. package/front_end/ui/legacy/Widget.test.ts +39 -29
  1606. package/front_end/ui/legacy/Widget.ts +83 -30
  1607. package/front_end/ui/legacy/XLink.test.ts +4 -6
  1608. package/front_end/ui/legacy/XLink.ts +1 -3
  1609. package/front_end/ui/legacy/ZoomManager.ts +3 -3
  1610. package/front_end/ui/legacy/components/color_picker/ColorFormatSpec.ts +5 -5
  1611. package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +7 -5
  1612. package/front_end/ui/legacy/components/color_picker/ContrastInfo.ts +3 -3
  1613. package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +5 -5
  1614. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +22 -18
  1615. package/front_end/ui/legacy/components/color_picker/spectrum.css +3 -3
  1616. package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +2 -5
  1617. package/front_end/ui/legacy/components/data_grid/DataGrid.test.ts +1 -2
  1618. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +88 -38
  1619. package/front_end/ui/legacy/components/data_grid/DataGridElement.test.ts +269 -0
  1620. package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +470 -0
  1621. package/front_end/ui/legacy/components/data_grid/SortableDataGrid.ts +6 -0
  1622. package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +110 -15
  1623. package/front_end/ui/legacy/components/data_grid/dataGrid.css +4 -2
  1624. package/front_end/ui/legacy/components/data_grid/data_grid.ts +2 -2
  1625. package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +15 -15
  1626. package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +4 -4
  1627. package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +9 -5
  1628. package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +10 -6
  1629. package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +8 -4
  1630. package/front_end/ui/legacy/components/inline_editor/CSSLinearEasingModel.ts +9 -9
  1631. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +5 -4
  1632. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +7 -5
  1633. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +10 -6
  1634. package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +8 -9
  1635. package/front_end/ui/legacy/components/inline_editor/FontEditorUtils.ts +0 -13
  1636. package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +11 -7
  1637. package/front_end/ui/legacy/components/inline_editor/SwatchPopoverHelper.ts +4 -4
  1638. package/front_end/ui/legacy/components/inline_editor/Swatches.ts +11 -13
  1639. package/front_end/ui/legacy/components/inline_editor/fontEditor.css +1 -1
  1640. package/front_end/ui/legacy/components/inline_editor/inline_editor.ts +0 -2
  1641. package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +1 -2
  1642. package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.ts +1 -1
  1643. package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +3 -3
  1644. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +3 -3
  1645. package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +3 -4
  1646. package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +7 -7
  1647. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +23 -15
  1648. package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +26 -9
  1649. package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +19 -17
  1650. package/front_end/ui/legacy/components/perf_ui/FlameChart.test.ts +2 -2
  1651. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +158 -147
  1652. package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +3 -3
  1653. package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +7 -13
  1654. package/front_end/ui/legacy/components/perf_ui/PieChart.ts +6 -4
  1655. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.test.ts +1 -1
  1656. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +1 -14
  1657. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.test.ts +1 -1
  1658. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +17 -17
  1659. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +32 -37
  1660. package/front_end/ui/legacy/components/perf_ui/overviewGrid.css +1 -1
  1661. package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +31 -28
  1662. package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +9 -7
  1663. package/front_end/ui/legacy/components/quick_open/HelpQuickOpen.ts +8 -12
  1664. package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +39 -54
  1665. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +8 -7
  1666. package/front_end/ui/legacy/components/source_frame/FontView.ts +1 -1
  1667. package/front_end/ui/legacy/components/source_frame/ImageView.ts +1 -1
  1668. package/front_end/ui/legacy/components/source_frame/JSONView.ts +2 -2
  1669. package/front_end/ui/legacy/components/source_frame/PreviewFactory.ts +7 -3
  1670. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.test.ts +4 -2
  1671. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +6 -4
  1672. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +5 -5
  1673. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +1 -1
  1674. package/front_end/ui/legacy/components/source_frame/XMLView.ts +3 -3
  1675. package/front_end/ui/legacy/components/source_frame/resourceSourceFrame.css +1 -1
  1676. package/front_end/ui/legacy/components/utils/ImagePreview.ts +4 -7
  1677. package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +1 -1
  1678. package/front_end/ui/legacy/components/utils/Linkifier.test.ts +7 -7
  1679. package/front_end/ui/legacy/components/utils/Linkifier.ts +6 -7
  1680. package/front_end/ui/legacy/components/utils/TargetDetachedDialog.ts +3 -12
  1681. package/front_end/ui/legacy/dialog.css +2 -1
  1682. package/front_end/ui/legacy/emptyWidget.css +0 -21
  1683. package/front_end/ui/legacy/filter.css +3 -1
  1684. package/front_end/ui/legacy/infobar.css +14 -2
  1685. package/front_end/ui/legacy/inspectorCommon.css +635 -144
  1686. package/front_end/ui/legacy/inspectorViewTabbedPane.css +1 -1
  1687. package/front_end/ui/legacy/reportView.css +1 -1
  1688. package/front_end/ui/legacy/searchableView.css +1 -1
  1689. package/front_end/ui/legacy/softContextMenu.css +1 -1
  1690. package/front_end/ui/legacy/tabbedPane.css +118 -21
  1691. package/front_end/ui/legacy/textPrompt.css +1 -0
  1692. package/front_end/ui/legacy/theme_support/ThemeSupport.ts +0 -5
  1693. package/front_end/ui/legacy/toolbar.css +11 -543
  1694. package/front_end/ui/legacy/treeoutline.css +7 -7
  1695. package/front_end/ui/legacy/viewContainers.css +3 -3
  1696. package/front_end/ui/{lit-html → lit}/i18n-template.test.ts +5 -7
  1697. package/front_end/ui/visual_logging/Debugging.ts +58 -33
  1698. package/front_end/ui/visual_logging/KnownContextValues.ts +65 -10
  1699. package/front_end/ui/visual_logging/visual_logging.ts +2 -2
  1700. package/inspector_overlay/common.ts +0 -1
  1701. package/inspector_overlay/css_grid_label_helpers.ts +1 -1
  1702. package/inspector_overlay/drag_resize_handler.ts +4 -4
  1703. package/inspector_overlay/highlight_common.ts +0 -1
  1704. package/inspector_overlay/main.ts +12 -13
  1705. package/inspector_overlay/resources.grd +1 -1
  1706. package/inspector_overlay/testing/InspectorOverlayHelpers.ts +3 -3
  1707. package/inspector_overlay/tool_highlight.css +2 -2
  1708. package/inspector_overlay/tool_highlight.ts +0 -1
  1709. package/inspector_overlay/tool_persistent.ts +7 -13
  1710. package/inspector_overlay/tool_screenshot.ts +6 -6
  1711. package/inspector_overlay/tool_source_order.ts +1 -2
  1712. package/package.json +21 -24
  1713. package/scripts/add_icon_paths.py +71 -0
  1714. package/scripts/ai_assistance/README.md +4 -4
  1715. package/scripts/ai_assistance/auto-run-helpers.js +82 -0
  1716. package/scripts/ai_assistance/auto-run.js +349 -113
  1717. package/scripts/ai_assistance/auto-run.test.js +88 -0
  1718. package/scripts/ai_assistance/to_tsv.mjs +2 -3
  1719. package/scripts/ai_assistance/tsconfig.json +15 -0
  1720. package/scripts/ai_assistance/types.d.ts +2 -1
  1721. package/scripts/build/compress_files.js +2 -2
  1722. package/scripts/build/cross_reference_ninja_and_tsc.js +27 -16
  1723. package/scripts/build/devtools_plugin.js +2 -2
  1724. package/scripts/build/esbuild.js +2 -1
  1725. package/scripts/build/generate_css_js_files.js +13 -57
  1726. package/scripts/build/generate_deprecations.py +0 -2
  1727. package/scripts/build/generate_devtools_grd.py +1 -2
  1728. package/scripts/build/generate_html_entrypoint.js +1 -0
  1729. package/scripts/build/generate_supported_css.py +1 -1
  1730. package/scripts/build/ninja/copy-file.js +6 -4
  1731. package/scripts/build/ninja/copy-files.js +1 -0
  1732. package/scripts/build/ninja/generate-declaration.js +1 -0
  1733. package/scripts/build/ninja/generate-tsconfig.js +0 -1
  1734. package/scripts/build/ninja/generate_css.gni +1 -16
  1735. package/scripts/build/ninja/minify-json-files.js +1 -0
  1736. package/scripts/build/rollup.config.mjs +1 -1
  1737. package/scripts/build/tests/generate_css_js_files_test.js +5 -56
  1738. package/scripts/build/typescript/ts_library.py +24 -1
  1739. package/scripts/check_esbuild_versions.js +1 -1
  1740. package/scripts/check_experiments.js +10 -7
  1741. package/scripts/component_server/server.js +4 -7
  1742. package/scripts/devtools_paths.js +6 -6
  1743. package/scripts/eslint_rules/README.md +5 -1
  1744. package/scripts/eslint_rules/lib/canvas-context-tracking.js +3 -0
  1745. package/scripts/eslint_rules/lib/check-css-import.js +7 -3
  1746. package/scripts/eslint_rules/lib/check-enumerated-histograms.js +3 -0
  1747. package/scripts/eslint_rules/lib/check-license-header.js +7 -2
  1748. package/scripts/eslint_rules/lib/check-test-definitions.js +5 -1
  1749. package/scripts/eslint_rules/lib/check-was-shown-methods.js +3 -0
  1750. package/scripts/eslint_rules/lib/enforce-bound-render-for-schedule-render.js +3 -0
  1751. package/scripts/eslint_rules/lib/enforce-custom-event-names.js +3 -0
  1752. package/scripts/eslint_rules/lib/enforce-default-import-name.js +5 -1
  1753. package/scripts/eslint_rules/lib/enforce-optional-properties-last.js +4 -1
  1754. package/scripts/eslint_rules/lib/es-modules-import.js +26 -1
  1755. package/scripts/eslint_rules/lib/html-tagged-template.js +8 -4
  1756. package/scripts/eslint_rules/lib/inject-checkbox-styles.js +7 -2
  1757. package/scripts/eslint_rules/lib/inline-type-imports.js +3 -0
  1758. package/scripts/eslint_rules/lib/jslog-context-list.js +4 -1
  1759. package/scripts/eslint_rules/lib/l10n-filename-matches.js +42 -23
  1760. package/scripts/eslint_rules/lib/l10n-helper.js +5 -3
  1761. package/scripts/eslint_rules/lib/l10n-i18nString-call-only-with-uistrings.js +3 -0
  1762. package/scripts/eslint_rules/lib/l10n-no-i18nString-calls-module-instantiation.js +5 -1
  1763. package/scripts/eslint_rules/lib/l10n-no-locked-or-placeholder-only-phrase.js +3 -0
  1764. package/scripts/eslint_rules/lib/l10n-no-uistrings-export.js +14 -5
  1765. package/scripts/eslint_rules/lib/l10n-no-unused-message.js +12 -2
  1766. package/scripts/eslint_rules/lib/{lit-html-no-attribute-quotes.js → lit-no-attribute-quotes.js} +4 -1
  1767. package/scripts/eslint_rules/lib/lit-template-result-or-nothing.js +44 -26
  1768. package/scripts/eslint_rules/lib/{no-a-tags-in-lit-html.js → no-a-tags-in-lit.js} +3 -0
  1769. package/scripts/eslint_rules/lib/no-assert-equal.js +3 -0
  1770. package/scripts/eslint_rules/lib/no-assert-strict-equal-for-arrays-and-objects.js +3 -0
  1771. package/scripts/eslint_rules/lib/no-bound-component-methods.js +4 -1
  1772. package/scripts/eslint_rules/lib/no-commented-out-console.js +4 -1
  1773. package/scripts/eslint_rules/lib/no-commented-out-import.js +4 -1
  1774. package/scripts/eslint_rules/lib/no-customized-builtin-elements.js +3 -0
  1775. package/scripts/eslint_rules/lib/no-importing-images-from-src.js +3 -0
  1776. package/scripts/eslint_rules/lib/no-imports-in-directory.js +5 -1
  1777. package/scripts/eslint_rules/lib/no-it-screenshot-only-or-repeat.js +3 -0
  1778. package/scripts/eslint_rules/lib/no-new-lit-element-components.js +4 -2
  1779. package/scripts/eslint_rules/lib/no-only-eslint-tests.js +4 -1
  1780. package/scripts/eslint_rules/lib/no-screenshot-test-outside-perf-panel.js +8 -3
  1781. package/scripts/eslint_rules/lib/no-self-closing-custom-element-tagnames.js +3 -0
  1782. package/scripts/eslint_rules/lib/no-underscored-properties.js +3 -0
  1783. package/scripts/eslint_rules/lib/prefer-private-class-members.js +12 -2
  1784. package/scripts/eslint_rules/lib/prefer-url-string.js +95 -0
  1785. package/scripts/eslint_rules/lib/screenshot-assertion-in-it-screenshot.js +3 -0
  1786. package/scripts/eslint_rules/lib/set-data-type-reference.js +3 -0
  1787. package/scripts/eslint_rules/lib/single-screenshot-assertion-per-test.js +3 -0
  1788. package/scripts/eslint_rules/lib/static-custom-event-names.js +3 -0
  1789. package/scripts/eslint_rules/lib/trace-engine-test-timeouts.js +3 -0
  1790. package/scripts/eslint_rules/lib/utils.js +8 -8
  1791. package/scripts/eslint_rules/tests/canvas-context-tracking.test.js +8 -6
  1792. package/scripts/eslint_rules/tests/check-css-import.test.js +12 -21
  1793. package/scripts/eslint_rules/tests/check-enumerated-histograms.test.js +16 -14
  1794. package/scripts/eslint_rules/tests/check-license-header.test.js +9 -11
  1795. package/scripts/eslint_rules/tests/check-test-definitions.test.js +11 -6
  1796. package/scripts/eslint_rules/tests/check-was-shown-methods.test.js +9 -11
  1797. package/scripts/eslint_rules/tests/enforce-bound-render-for-schedule-render.test.js +8 -6
  1798. package/scripts/eslint_rules/tests/enforce-custom-event-names.test.js +9 -11
  1799. package/scripts/eslint_rules/tests/enforce-default-import-name.test.js +23 -7
  1800. package/scripts/eslint_rules/tests/enforce-optional-properties-last.test.js +3 -7
  1801. package/scripts/eslint_rules/tests/es-modules-import.test.js +108 -65
  1802. package/scripts/eslint_rules/tests/html-tagged-template.test.js +25 -26
  1803. package/scripts/eslint_rules/tests/inject-checkbox-styles.test.js +25 -21
  1804. package/scripts/eslint_rules/tests/inline-type-imports.test.js +3 -6
  1805. package/scripts/eslint_rules/tests/jslog-context-list.test.js +46 -35
  1806. package/scripts/eslint_rules/tests/l10n-filename-matches.test.js +92 -18
  1807. package/scripts/eslint_rules/tests/l10n-i18nString-call-only-with-uistrings.test.js +6 -7
  1808. package/scripts/eslint_rules/tests/l10n-no-i18nString-calls-module-instantiation.test.js +10 -8
  1809. package/scripts/eslint_rules/tests/l10n-no-locked-or-placeholder-only-phrase.test.js +12 -7
  1810. package/scripts/eslint_rules/tests/l10n-no-uistrings-export.test.js +13 -8
  1811. package/scripts/eslint_rules/tests/l10n-no-unused-message.test.js +7 -7
  1812. package/scripts/eslint_rules/tests/{lit-html-no-attribute-quotes.test.js → lit-no-attribute-quotes.test.js} +11 -12
  1813. package/scripts/eslint_rules/tests/lit-template-result-or-nothing.test.js +32 -35
  1814. package/scripts/eslint_rules/tests/no-a-tags-in-lit.test.js +69 -0
  1815. package/scripts/eslint_rules/tests/no-assert-deep-strict-equal.test.js +2 -3
  1816. package/scripts/eslint_rules/tests/no-assert-equal-boolean-null-undefined.test.js +2 -3
  1817. package/scripts/eslint_rules/tests/no-assert-equal.test.js +2 -3
  1818. package/scripts/eslint_rules/tests/no-assert-strict-equal-for-arrays-and-objects.test.js +3 -4
  1819. package/scripts/eslint_rules/tests/no-bound-component-methods.test.js +24 -12
  1820. package/scripts/eslint_rules/tests/no-commented-out-console.test.js +3 -6
  1821. package/scripts/eslint_rules/tests/no-commented-out-import.test.js +3 -6
  1822. package/scripts/eslint_rules/tests/no-customized-builtin-elements.test.js +2 -3
  1823. package/scripts/eslint_rules/tests/no-importing-images-from-src.test.js +12 -11
  1824. package/scripts/eslint_rules/tests/no-imports-in-directory.test.js +84 -22
  1825. package/scripts/eslint_rules/tests/no-it-screenshot-only-or-repeat.test.js +3 -6
  1826. package/scripts/eslint_rules/tests/no-new-lit-element-components.test.js +3 -6
  1827. package/scripts/eslint_rules/tests/no-only-eslint-tests.test.js +11 -6
  1828. package/scripts/eslint_rules/tests/no-screenshot-test-outside-perf-panel.test.js +3 -4
  1829. package/scripts/eslint_rules/tests/no-self-closing-custom-element-tagnames.test.js +17 -20
  1830. package/scripts/eslint_rules/tests/no-underscored-properties.test.js +19 -12
  1831. package/scripts/eslint_rules/tests/prefer-assert-instance-of.test.js +2 -3
  1832. package/scripts/eslint_rules/tests/prefer-assert-is-ok.test.js +2 -3
  1833. package/scripts/eslint_rules/tests/prefer-assert-length-of.test.js +2 -3
  1834. package/scripts/eslint_rules/tests/prefer-private-class-members.test.js +3 -6
  1835. package/scripts/eslint_rules/tests/prefer-readonly-keyword.test.js +7 -10
  1836. package/scripts/eslint_rules/tests/prefer-url-string.test.js +87 -0
  1837. package/scripts/eslint_rules/tests/screenshot-assertion-in-it-screenshot.test.js +3 -6
  1838. package/scripts/eslint_rules/tests/set-data-type-reference.test.js +18 -10
  1839. package/scripts/eslint_rules/tests/single-screenshot-assertion-per-test.test.js +3 -6
  1840. package/scripts/eslint_rules/tests/static-custom-event-names.test.js +13 -13
  1841. package/scripts/eslint_rules/tests/trace-engine-test-timeouts.test.js +3 -5
  1842. package/scripts/eslint_rules/tests/utils/utils.js +18 -0
  1843. package/scripts/eslint_rules/tests/utils.test.js +9 -9
  1844. package/scripts/javascript_natives/index.js +14 -6
  1845. package/scripts/migration/web-tests-esm/rename-legacy-global.mjs +4 -4
  1846. package/scripts/npm_test.js +1 -0
  1847. package/scripts/reformat-clang-js-ts.js +1 -2
  1848. package/scripts/run_on_target.mjs +1 -1
  1849. package/scripts/search-trace-files.js +1 -1
  1850. package/scripts/stylelint_rules/lib/use_theme_colors.mjs +25 -41
  1851. package/scripts/stylelint_rules/tests/{use_theme_colors_test.js → use_theme_colors.test.js} +14 -2
  1852. package/scripts/utils.js +23 -14
  1853. package/scripts/watch_build.js +19 -76
  1854. package/tsconfig.json +2 -1
  1855. package/front_end/core/sdk/CPUProfileDataModel.ts +0 -17
  1856. package/front_end/core/sdk/ProfileTreeModel.ts +0 -17
  1857. package/front_end/panels/application/reportingApiReportsView.css +0 -18
  1858. package/front_end/panels/emulation/deviceModeToolbar.css +0 -14
  1859. package/front_end/panels/protocol_monitor/components/Toolbar.ts +0 -91
  1860. package/front_end/panels/protocol_monitor/components/components.ts +0 -11
  1861. package/front_end/panels/protocol_monitor/components/toolbar.css +0 -31
  1862. package/front_end/panels/recorder/components/StartView.ts +0 -133
  1863. package/front_end/panels/timeline/historyToolbarButton.css +0 -81
  1864. package/front_end/panels/timeline/utils/NetworkRequest.ts +0 -40
  1865. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts +0 -26
  1866. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts.map +0 -1
  1867. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js +0 -311
  1868. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js.map +0 -1
  1869. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.d.ts +0 -36
  1870. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.d.ts.map +0 -1
  1871. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.js +0 -154
  1872. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.js.map +0 -1
  1873. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts +0 -26
  1874. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts.map +0 -1
  1875. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js +0 -307
  1876. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js.map +0 -1
  1877. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.d.ts +0 -36
  1878. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.d.ts.map +0 -1
  1879. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.js +0 -150
  1880. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.js.map +0 -1
  1881. package/front_end/third_party/puppeteer/package/src/cdp/ChromeTargetManager.ts +0 -438
  1882. package/front_end/third_party/puppeteer/package/src/cdp/FirefoxTargetManager.ts +0 -214
  1883. package/front_end/third_party/third-party-web/package/.prettierrc +0 -10
  1884. package/front_end/ui/components/data_grid/DataGrid.test.ts +0 -1056
  1885. package/front_end/ui/components/data_grid/DataGrid.ts +0 -963
  1886. package/front_end/ui/components/data_grid/DataGridContextMenuUtils.ts +0 -67
  1887. package/front_end/ui/components/data_grid/DataGridController.test.ts +0 -431
  1888. package/front_end/ui/components/data_grid/DataGridController.ts +0 -302
  1889. package/front_end/ui/components/data_grid/DataGridControllerIntegrator.ts +0 -49
  1890. package/front_end/ui/components/data_grid/DataGridEvents.ts +0 -121
  1891. package/front_end/ui/components/data_grid/DataGridRenderers.ts +0 -27
  1892. package/front_end/ui/components/data_grid/DataGridUtils.ts +0 -259
  1893. package/front_end/ui/components/data_grid/README.md +0 -118
  1894. package/front_end/ui/components/data_grid/dataGrid.css +0 -188
  1895. package/front_end/ui/components/data_grid/dataGridController.css +0 -11
  1896. package/front_end/ui/components/data_grid/data_grid.ts +0 -18
  1897. package/front_end/ui/components/docs/data_grid/adding-data.html +0 -35
  1898. package/front_end/ui/components/docs/data_grid/adding-data.ts +0 -61
  1899. package/front_end/ui/components/docs/data_grid/basic.ts +0 -27
  1900. package/front_end/ui/components/docs/data_grid/empty.html +0 -31
  1901. package/front_end/ui/components/docs/data_grid/empty.ts +0 -21
  1902. package/front_end/ui/components/docs/data_grid/hide-cols.html +0 -35
  1903. package/front_end/ui/components/docs/data_grid/hide-cols.ts +0 -59
  1904. package/front_end/ui/components/docs/data_grid/large-data.html +0 -30
  1905. package/front_end/ui/components/docs/data_grid/large-data.ts +0 -43
  1906. package/front_end/ui/components/docs/data_grid/sticky-headers.html +0 -30
  1907. package/front_end/ui/components/docs/data_grid/sticky-headers.ts +0 -44
  1908. package/front_end/ui/components/docs/data_grid/three_columns.html +0 -29
  1909. package/front_end/ui/components/docs/data_grid/three_columns.ts +0 -44
  1910. package/front_end/ui/components/docs/data_grid_controller/basic.ts +0 -45
  1911. package/front_end/ui/components/docs/data_grid_controller/custom-context-menu-items.html +0 -28
  1912. package/front_end/ui/components/docs/data_grid_controller/custom-context-menu-items.ts +0 -34
  1913. package/front_end/ui/components/docs/data_grid_controller/filter.html +0 -40
  1914. package/front_end/ui/components/docs/data_grid_controller/filter.ts +0 -298
  1915. package/front_end/ui/components/docs/recorder_start_view/basic.html +0 -20
  1916. package/front_end/ui/components/docs/recorder_start_view/basic.ts +0 -13
  1917. package/front_end/ui/legacy/applicationColorTokens.css +0 -61
  1918. package/front_end/ui/legacy/components/data_grid/DataGridWithPreview.ts +0 -297
  1919. package/front_end/ui/legacy/components/inline_editor/CSSLength.test.ts +0 -75
  1920. package/front_end/ui/legacy/components/inline_editor/CSSLength.ts +0 -156
  1921. package/front_end/ui/legacy/components/inline_editor/cssLength.css +0 -27
  1922. package/front_end/ui/legacy/designTokens.css +0 -115
  1923. package/front_end/ui/legacy/inspectorSyntaxHighlight.css +0 -131
  1924. package/front_end/ui/legacy/themeColors.css +0 -796
  1925. package/front_end/ui/legacy/tokens.css +0 -202
  1926. package/scripts/check_enumerated_histograms.js +0 -101
  1927. package/scripts/eslint_rules/lib/lit-html-host-this.js +0 -86
  1928. package/scripts/eslint_rules/lib/no-style-tags-in-lit-html.js +0 -51
  1929. package/scripts/eslint_rules/tests/lit-html-host-this.test.js +0 -48
  1930. package/scripts/eslint_rules/tests/no-a-tags-in-lit-html.test.js +0 -64
  1931. package/scripts/eslint_rules/tests/no-style-tags-in-lit-html.test.js +0 -61
  1932. /package/front_end/ui/{legacy → components/buttons}/textButton.css +0 -0
  1933. /package/front_end/ui/{lit-html → lit}/i18n-template.ts +0 -0
  1934. /package/front_end/ui/{lit-html/lit-html.ts → lit/lit.ts} +0 -0
  1935. /package/front_end/ui/{lit-html → lit}/visibility.gni +0 -0
@@ -64,6 +64,12 @@ console.log(entity)
64
64
 
65
65
  ## Updates
66
66
 
67
+ ## 2024-07-01 dataset
68
+
69
+ Some third parties use a dynamic subdomain to serve its main script on websites (e.g .domain.com). Some of these subdomain scripts are saved under observed-domains JSON file as results of the `sql/all-observed-domains-query.sql` query but analyzing http archive database we found a lot that are ignored because of number of occurrences (less than 50 ).
70
+
71
+ So, we've created a new query to keep observed domains with occurrence below 50 only if its mapped entity (based on entity.js) has a total occurrence (of all its declared domain) greater than 50.
72
+
67
73
  ## 2021-01-01 dataset
68
74
 
69
75
  Due to a change in HTTPArchive measurement which temporarily disabled site-isolation (out-of-process iframes), all of the third-parties whose work previously took place off the main-thread are now counted _on_ the main thread (and thus appear in our stats). This is most evident in the change to Google-owned properties such as YouTube and Doubleclick whose _complete_ cost are now captured.
@@ -132,106 +138,106 @@ These scripts are part of advertising networks, either serving or measuring.
132
138
 
133
139
  | Rank | Name | Usage | Average Impact |
134
140
  | ---- | -------------------------------------------------------------------------------- | --------- | -------------- |
135
- | 1 | [Truffle Bid](https://truffle.bid/) | 17,556 | 0 ms |
136
- | 2 | [Bidswitch](https://www.bidswitch.com/) | 39,349 | 0 ms |
137
- | 3 | Unruly Media | 6,983 | 0 ms |
138
- | 4 | Nativo | 28,406 | 0 ms |
139
- | 5 | AcuityAds | 9,415 | 0 ms |
140
- | 6 | AdGear | 48,485 | 1 ms |
141
- | 7 | Tribal Fusion | 121,668 | 1 ms |
142
- | 8 | MaxPoint Interactive | 12,319 | 1 ms |
143
- | 9 | Beeswax | 10,108 | 1 ms |
144
- | 10 | Crimtan | 57,806 | 1 ms |
145
- | 11 | TripleLift | 3,251 | 1 ms |
146
- | 12 | adKernel | 12,242 | 1 ms |
147
- | 13 | [iPROM](https://iprom.eu/) | 55,739 | 2 ms |
148
- | 14 | Bidtellect | 10,797 | 2 ms |
149
- | 15 | InMobi | 66,361 | 2 ms |
150
- | 16 | [OpenX](https://www.openx.com/) | 11,228 | 12 ms |
151
- | 17 | [33 Across](https://33across.com/) | 143,025 | 17 ms |
152
- | 18 | Adform | 86,041 | 21 ms |
153
- | 19 | [AppNexus](https://www.appnexus.com/) | 177,948 | 22 ms |
154
- | 20 | GumGum | 123,913 | 25 ms |
155
- | 21 | LoopMe | 42,797 | 33 ms |
156
- | 22 | Constant Contact | 17,757 | 34 ms |
157
- | 23 | Adyoulike | 4,229 | 40 ms |
158
- | 24 | Sonobi | 54,964 | 50 ms |
159
- | 25 | sovrn | 19,694 | 59 ms |
160
- | 26 | OneTag | 29,755 | 60 ms |
161
- | 27 | RTB House AdPilot | 5,708 | 61 ms |
162
- | 28 | Simpli.fi | 10,407 | 63 ms |
163
- | 29 | MailMunch | 17,494 | 66 ms |
164
- | 30 | [The Trade Desk](https://www.thetradedesk.com/) | 15,933 | 69 ms |
165
- | 31 | BlueCava | 5,973 | 77 ms |
166
- | 32 | Twitter Online Conversion Tracking | 68,128 | 79 ms |
167
- | 33 | DTSCOUT | 5,825 | 81 ms |
168
- | 34 | ActiveCampaign | 14,775 | 83 ms |
169
- | 35 | StackAdapt | 13,484 | 84 ms |
170
- | 36 | [Scorecard Research](https://www.scorecardresearch.com/) | 46,696 | 87 ms |
171
- | 37 | Branch Metrics | 13,768 | 90 ms |
172
- | 38 | Affiliate Window | 4,621 | 93 ms |
173
- | 39 | [Quora Ads](https://www.quora.com/business/) | 9,098 | 103 ms |
174
- | 40 | LinkedIn Ads | 187,285 | 104 ms |
175
- | 41 | [Criteo](https://www.criteo.com/) | 165,842 | 118 ms |
176
- | 42 | Index Exchange | 33,560 | 118 ms |
177
- | 43 | Impact Radius | 4,158 | 127 ms |
178
- | 44 | Rakuten Marketing | 3,189 | 127 ms |
179
- | 45 | Microad | 12,512 | 129 ms |
180
- | 46 | LINE Corporation | 24,991 | 138 ms |
181
- | 47 | Crowd Control | 70,113 | 138 ms |
182
- | 48 | [Bing Ads](https://bingads.microsoft.com) | 45,421 | 146 ms |
183
- | 49 | Gemius | 15,825 | 149 ms |
184
- | 50 | AudienceSearch | 51,541 | 156 ms |
185
- | 51 | Intercept Interactive | 18,824 | 160 ms |
186
- | 52 | ucfunnel ucX | 8,896 | 163 ms |
187
- | 53 | IPONWEB | 19,682 | 164 ms |
188
- | 54 | Simplicity Marketing | 2,983 | 166 ms |
189
- | 55 | AdRiver | 4,609 | 170 ms |
190
- | 56 | STINGRAY | 7,281 | 171 ms |
191
- | 57 | Salesforce.com | 4,381 | 185 ms |
192
- | 58 | [Yahoo!](https://www.yahoo.com/) | 8,039 | 190 ms |
193
- | 59 | Technorati | 22,378 | 193 ms |
194
- | 60 | i-mobile | 11,882 | 195 ms |
195
- | 61 | Unbounce | 9,100 | 199 ms |
196
- | 62 | Tynt | 162,031 | 207 ms |
197
- | 63 | [Outbrain](https://www.outbrain.com/) | 11,439 | 210 ms |
198
- | 64 | Smart AdServer | 109,986 | 213 ms |
199
- | 65 | [ID5 Identity Cloud](https://id5.io/) | 65,666 | 241 ms |
200
- | 66 | [Media.net](https://www.media.net/) | 93,229 | 244 ms |
201
- | 67 | TrafficStars | 7,539 | 275 ms |
202
- | 68 | [Amazon Ads](https://ad.amazon.com/) | 178,313 | 288 ms |
203
- | 69 | [Adroll](https://www.adroll.com/) | 31,186 | 321 ms |
204
- | 70 | Skimbit | 81,338 | 326 ms |
205
- | 71 | Teads | 6,909 | 331 ms |
206
- | 72 | [LiveRamp Privacy Manager](https://liveramp.com/privacy-legal-compliance/) | 18,855 | 339 ms |
207
- | 73 | fluct | 22,281 | 341 ms |
208
- | 74 | [Supership](https://supership.jp/) | 18,113 | 379 ms |
209
- | 75 | [Yandex Ads](https://yandex.com/adv/) | 8,817 | 460 ms |
210
- | 76 | [Attentive](https://attentivemobile.com/) | 9,166 | 514 ms |
211
- | 77 | Cxense | 3,731 | 533 ms |
212
- | 78 | [Yahoo! JAPAN Ads](https://marketing.yahoo.co.jp/service/yahooads/) | 53,919 | 564 ms |
213
- | 79 | OptiMonk | 10,492 | 607 ms |
214
- | 80 | VigLink | 6,674 | 621 ms |
215
- | 81 | Klaviyo | 142,926 | 628 ms |
216
- | 82 | Privy | 19,432 | 633 ms |
217
- | 83 | [WordAds](https://wordads.co/) | 102,326 | 654 ms |
218
- | 84 | Geniee | 14,510 | 681 ms |
219
- | 85 | [Taboola](https://www.taboola.com/) | 50,480 | 714 ms |
220
- | 86 | [AdScore](https://www.adscore.com/) | 4,378 | 771 ms |
221
- | 87 | LongTail Ad Solutions | 6,143 | 776 ms |
222
- | 88 | LoyaltyLion | 4,213 | 815 ms |
223
- | 89 | [Integral Ad Science](https://integralads.com/uk/) | 15,169 | 827 ms |
224
- | 90 | [Rubicon Project](https://rubiconproject.com/) | 220,488 | 994 ms |
225
- | 91 | [Moat](https://moat.com/) | 3,861 | 1039 ms |
226
- | 92 | [DoubleVerify](https://www.doubleverify.com/) | 4,740 | 1171 ms |
227
- | 93 | [Seedtag](https://www.seedtag.com/) | 2,513 | 1505 ms |
228
- | 94 | [Sizmek](https://www.sizmek.com/) | 5,738 | 1579 ms |
229
- | 95 | [Pubmatic](https://pubmatic.com/) | 221,339 | 1673 ms |
230
- | 96 | Infolinks | 5,954 | 1749 ms |
231
- | 97 | [MGID](https://www.mgid.com/) | 9,908 | 1916 ms |
232
- | 98 | [Google/Doubleclick Ads](https://marketingplatform.google.com/about/enterprise/) | 1,172,494 | 2968 ms |
233
- | 99 | Yahoo! Ad Exchange | 4,858 | 2974 ms |
234
- | 100 | [Mediavine](https://www.mediavine.com/) | 9,730 | 4101 ms |
141
+ | 1 | [Bidswitch](https://www.bidswitch.com/) | 68,217 | 0 ms |
142
+ | 2 | Beeswax | 12,735 | 0 ms |
143
+ | 3 | AdGear | 42,920 | 0 ms |
144
+ | 4 | Tribal Fusion | 158,016 | 1 ms |
145
+ | 5 | Nativo | 35,852 | 1 ms |
146
+ | 6 | Crimtan | 74,818 | 1 ms |
147
+ | 7 | MaxPoint Interactive | 23,834 | 1 ms |
148
+ | 8 | [iPROM](https://iprom.eu/) | 72,099 | 2 ms |
149
+ | 9 | TripleLift | 4,812 | 2 ms |
150
+ | 10 | adKernel | 9,621 | 2 ms |
151
+ | 11 | Adyoulike | 53,190 | 3 ms |
152
+ | 12 | Adform | 140,125 | 13 ms |
153
+ | 13 | GumGum | 167,535 | 21 ms |
154
+ | 14 | [AppNexus](https://www.appnexus.com/) | 234,133 | 25 ms |
155
+ | 15 | Index Exchange | 32,324 | 28 ms |
156
+ | 16 | Constant Contact | 17,528 | 35 ms |
157
+ | 17 | [33 Across](https://33across.com/) | 192,648 | 52 ms |
158
+ | 18 | Branch Metrics | 8,288 | 53 ms |
159
+ | 19 | Sonobi | 81,682 | 57 ms |
160
+ | 20 | Simpli.fi | 16,378 | 59 ms |
161
+ | 21 | MailMunch | 19,969 | 71 ms |
162
+ | 22 | SiteScout | 3,401 | 75 ms |
163
+ | 23 | DTSCOUT | 8,311 | 78 ms |
164
+ | 24 | [Scorecard Research](https://www.scorecardresearch.com/) | 54,577 | 81 ms |
165
+ | 25 | [OpenX](https://www.openx.com/) | 76,561 | 82 ms |
166
+ | 26 | [Basis](https://basis.net/) | 2,623 | 82 ms |
167
+ | 27 | Twitter Online Conversion Tracking | 73,452 | 84 ms |
168
+ | 28 | ActiveCampaign | 19,100 | 84 ms |
169
+ | 29 | [The Trade Desk](https://www.thetradedesk.com/) | 25,346 | 87 ms |
170
+ | 30 | sovrn | 27,306 | 87 ms |
171
+ | 31 | StackAdapt | 14,912 | 90 ms |
172
+ | 32 | BlueCava | 5,165 | 90 ms |
173
+ | 33 | Affiliate Window | 5,414 | 104 ms |
174
+ | 34 | [Yahoo!](https://www.yahoo.com/) | 24,800 | 106 ms |
175
+ | 35 | Intercept Interactive | 21,012 | 109 ms |
176
+ | 36 | Rocket Fuel | 3,247 | 110 ms |
177
+ | 37 | LinkedIn Ads | 199,088 | 115 ms |
178
+ | 38 | [Criteo](https://www.criteo.com/) | 213,880 | 120 ms |
179
+ | 39 | [Bing Ads](https://bingads.microsoft.com) | 117,720 | 121 ms |
180
+ | 40 | [Quora Ads](https://www.quora.com/business/) | 10,614 | 126 ms |
181
+ | 41 | RTB House AdPilot | 13,287 | 126 ms |
182
+ | 42 | STINGRAY | 9,742 | 130 ms |
183
+ | 43 | TVSquared | 4,082 | 134 ms |
184
+ | 44 | Rakuten Marketing | 3,399 | 136 ms |
185
+ | 45 | Impact Radius | 4,274 | 143 ms |
186
+ | 46 | LINE Corporation | 26,881 | 144 ms |
187
+ | 47 | Crowd Control | 101,196 | 161 ms |
188
+ | 48 | [Yahoo! JAPAN Ads](https://marketing.yahoo.co.jp/service/yahooads/) | 37,464 | 166 ms |
189
+ | 49 | LoopMe | 11,752 | 180 ms |
190
+ | 50 | ucfunnel ucX | 7,945 | 185 ms |
191
+ | 51 | Gemius | 15,596 | 190 ms |
192
+ | 52 | AudienceSearch | 46,726 | 195 ms |
193
+ | 53 | InMobi | 126,087 | 195 ms |
194
+ | 54 | Tynt | 212,415 | 196 ms |
195
+ | 55 | Simplicity Marketing | 2,927 | 198 ms |
196
+ | 56 | Technorati | 27,186 | 198 ms |
197
+ | 57 | Smart AdServer | 107,812 | 207 ms |
198
+ | 58 | [ID5 Identity Cloud](https://id5.io/) | 119,336 | 219 ms |
199
+ | 59 | i-mobile | 16,595 | 223 ms |
200
+ | 60 | IPONWEB | 39,154 | 228 ms |
201
+ | 61 | [Outbrain](https://www.outbrain.com/) | 13,287 | 254 ms |
202
+ | 62 | [Media.net](https://www.media.net/) | 97,679 | 256 ms |
203
+ | 63 | Auto Link Maker | 2,479 | 265 ms |
204
+ | 64 | AdRiver | 4,740 | 290 ms |
205
+ | 65 | [LiveRamp Privacy Manager](https://liveramp.com/privacy-legal-compliance/) | 22,295 | 294 ms |
206
+ | 66 | Teads | 7,565 | 303 ms |
207
+ | 67 | Salesforce.com | 4,970 | 325 ms |
208
+ | 68 | Unbounce | 8,808 | 330 ms |
209
+ | 69 | Skimbit | 86,270 | 382 ms |
210
+ | 70 | [Adroll](https://www.adroll.com/) | 30,782 | 386 ms |
211
+ | 71 | fluct | 12,890 | 397 ms |
212
+ | 72 | [Amazon Ads](https://ad.amazon.com/) | 240,331 | 411 ms |
213
+ | 73 | TrafficStars | 7,430 | 462 ms |
214
+ | 74 | Onfocus | 8,836 | 480 ms |
215
+ | 75 | VigLink | 6,219 | 590 ms |
216
+ | 76 | Cxense | 3,708 | 598 ms |
217
+ | 77 | [Supership](https://supership.jp/) | 17,934 | 603 ms |
218
+ | 78 | [Yandex Ads](https://yandex.com/adv/) | 8,488 | 609 ms |
219
+ | 79 | [Attentive](https://attentivemobile.com/) | 9,099 | 610 ms |
220
+ | 80 | Microad | 23,909 | 612 ms |
221
+ | 81 | [AdScore](https://www.adscore.com/) | 4,394 | 640 ms |
222
+ | 82 | [Taboola](https://www.taboola.com/) | 49,191 | 663 ms |
223
+ | 83 | Klaviyo | 161,289 | 701 ms |
224
+ | 84 | LoyaltyLion | 4,114 | 722 ms |
225
+ | 85 | [WordAds](https://wordads.co/) | 100,449 | 740 ms |
226
+ | 86 | Privy | 18,961 | 791 ms |
227
+ | 87 | LongTail Ad Solutions | 5,572 | 813 ms |
228
+ | 88 | OptiMonk | 10,615 | 972 ms |
229
+ | 89 | Geniee | 16,354 | 1037 ms |
230
+ | 90 | [Rubicon Project](https://rubiconproject.com/) | 270,271 | 1062 ms |
231
+ | 91 | Infolinks | 5,950 | 1344 ms |
232
+ | 92 | [Pubmatic](https://pubmatic.com/) | 279,418 | 1495 ms |
233
+ | 93 | [Sizmek](https://www.sizmek.com/) | 4,307 | 1551 ms |
234
+ | 94 | [Ad Lightning](https://www.adlightning.com/) | 3,795 | 1813 ms |
235
+ | 95 | [MGID](https://www.mgid.com/) | 10,437 | 2115 ms |
236
+ | 96 | [DoubleVerify](https://www.doubleverify.com/) | 19,453 | 2410 ms |
237
+ | 97 | Yahoo! Ad Exchange | 4,994 | 2547 ms |
238
+ | 98 | [Google/Doubleclick Ads](https://marketingplatform.google.com/about/enterprise/) | 1,232,210 | 2617 ms |
239
+ | 99 | [Integral Ad Science](https://integralads.com/uk/) | 21,660 | 4088 ms |
240
+ | 100 | [Mediavine](https://www.mediavine.com/) | 12,963 | 4552 ms |
235
241
 
236
242
  <a name="analytics"></a>
237
243
 
@@ -241,82 +247,90 @@ These scripts measure or track users and their actions. There's a wide range in
241
247
 
242
248
  | Rank | Name | Usage | Average Impact |
243
249
  | ---- | ----------------------------------------------------------------------------- | --------- | -------------- |
244
- | 1 | [Mouseflow](https://mouseflow.com/) | 4,985 | 48 ms |
245
- | 2 | [SpeedCurve RUM](https://www.speedcurve.com/features/performance-monitoring/) | 2,169 | 53 ms |
246
- | 3 | [WordPress Site Stats](https://wp.com/) | 64,925 | 56 ms |
247
- | 4 | Roxr Software | 11,383 | 63 ms |
248
- | 5 | [Pingdom RUM](https://www.pingdom.com/product/performance-monitoring/) | 1,008 | 65 ms |
249
- | 6 | Movable Ink | 3,989 | 80 ms |
250
- | 7 | Sailthru | 1,394 | 84 ms |
251
- | 8 | [LiveRamp IdentityLink](https://liveramp.com/discover-identitylink/) | 1,878 | 88 ms |
252
- | 9 | Woopra | 1,274 | 89 ms |
253
- | 10 | Treasure Data | 13,593 | 95 ms |
254
- | 11 | [mPulse](https://developer.akamai.com/akamai-mpulse) | 32,660 | 98 ms |
255
- | 12 | [Smartlook](https://www.smartlook.com/) | 17,274 | 101 ms |
256
- | 13 | [XiTi](https://www.atinternet.com/en/) | 4,514 | 103 ms |
257
- | 14 | StatCounter | 51,587 | 104 ms |
258
- | 15 | [Fastly Insights](https://insights.fastlylabs.com) | 1,631 | 108 ms |
259
- | 16 | Exponea | 1,330 | 111 ms |
260
- | 17 | Conversant | 46,153 | 112 ms |
261
- | 18 | [Google Analytics](https://marketingplatform.google.com/about/analytics/) | 4,492,386 | 113 ms |
262
- | 19 | [Brandmetrics](https://www.brandmetrics.com) | 14,878 | 115 ms |
263
- | 20 | Okta | 3,161 | 118 ms |
264
- | 21 | CleverTap | 1,211 | 127 ms |
265
- | 22 | Polldaddy | 2,255 | 128 ms |
266
- | 23 | Stamped.io | 12,632 | 134 ms |
267
- | 24 | [Snowplow](https://snowplowanalytics.com/) | 59,526 | 139 ms |
268
- | 25 | [Google Optimize](https://marketingplatform.google.com/about/optimize/) | 41,792 | 154 ms |
269
- | 26 | Marchex | 8,398 | 160 ms |
270
- | 27 | [Usabilla](https://usabilla.com) | 1,272 | 161 ms |
271
- | 28 | [Braze](https://www.braze.com) | 1,801 | 161 ms |
272
- | 29 | [Mixpanel](https://mixpanel.com/) | 20,441 | 163 ms |
273
- | 30 | [Quantcast](https://www.quantcast.com) | 68,514 | 164 ms |
274
- | 31 | Reviews.co.uk | 1,896 | 169 ms |
275
- | 32 | Qualtrics | 5,917 | 172 ms |
276
- | 33 | Smart Insight Tracking | 1,731 | 193 ms |
277
- | 34 | [Matomo](https://matomo.org/) | 12,297 | 195 ms |
278
- | 35 | Amplitude Mobile Analytics | 36,223 | 195 ms |
279
- | 36 | Chartbeat | 6,715 | 205 ms |
280
- | 37 | Parse.ly | 6,157 | 223 ms |
281
- | 38 | [Baidu Analytics](https://tongji.baidu.com/web/welcome/login) | 33,318 | 227 ms |
282
- | 39 | Trust Pilot | 44,933 | 240 ms |
283
- | 40 | CallRail | 28,866 | 247 ms |
284
- | 41 | UpSellit | 1,994 | 249 ms |
285
- | 42 | etracker | 5,608 | 270 ms |
286
- | 43 | [Marketo](https://www.marketo.com) | 1,126 | 283 ms |
287
- | 44 | [PageSense](https://www.zoho.com/pagesense/) | 5,617 | 297 ms |
288
- | 45 | [Nielsen NetRatings SiteCensus](http://www.nielsen-online.com/intlpage.html) | 17,440 | 345 ms |
289
- | 46 | Survicate | 3,308 | 353 ms |
290
- | 47 | [Pendo](https://www.pendo.io) | 13,333 | 357 ms |
291
- | 48 | [Segment](https://segment.com/) | 27,196 | 370 ms |
292
- | 49 | Reviews.io | 4,148 | 375 ms |
293
- | 50 | Heap | 13,234 | 377 ms |
294
- | 51 | Evergage | 2,658 | 387 ms |
295
- | 52 | [Snapchat](https://www.snapchat.com) | 49,940 | 393 ms |
296
- | 53 | Bazaarvoice | 3,262 | 432 ms |
297
- | 54 | Net Reviews | 2,784 | 445 ms |
298
- | 55 | [Crazy Egg](https://www.crazyegg.com/) | 20,553 | 485 ms |
299
- | 56 | [AB Tasty](https://www.abtasty.com/) | 3,343 | 492 ms |
300
- | 57 | [BowNow](https://bow-now.jp/) | 2,295 | 495 ms |
301
- | 58 | Evidon | 2,382 | 496 ms |
302
- | 59 | Convert Insights | 4,173 | 522 ms |
303
- | 60 | Nosto | 1,173 | 607 ms |
304
- | 61 | Feefo.com | 2,034 | 619 ms |
305
- | 62 | [VWO](https://vwo.com) | 8,018 | 639 ms |
306
- | 63 | [Hotjar](https://www.hotjar.com/) | 331,044 | 661 ms |
307
- | 64 | TrackJS | 2,353 | 718 ms |
308
- | 65 | FullStory | 13,438 | 724 ms |
309
- | 66 | Clerk.io ApS | 1,910 | 776 ms |
310
- | 67 | PowerReviews | 1,524 | 804 ms |
311
- | 68 | [Lucky Orange](https://www.luckyorange.com/) | 14,012 | 831 ms |
312
- | 69 | [Optimizely](https://www.optimizely.com/) | 15,596 | 857 ms |
313
- | 70 | ContentSquare | 3,541 | 912 ms |
314
- | 71 | Revolver Maps | 2,172 | 972 ms |
315
- | 72 | Dynatrace | 3,420 | 1121 ms |
316
- | 73 | Gigya | 2,032 | 1243 ms |
317
- | 74 | [Quantum Metric](https://www.quantummetric.com/) | 1,170 | 1266 ms |
318
- | 75 | Inspectlet | 5,338 | 1469 ms |
319
- | 76 | [Yandex Metrica](https://metrica.yandex.com/about?) | 596,366 | 1899 ms |
250
+ | 1 | [Mouseflow](https://mouseflow.com/) | 6,786 | 49 ms |
251
+ | 2 | [Pingdom RUM](https://www.pingdom.com/product/performance-monitoring/) | 1,825 | 58 ms |
252
+ | 3 | [SpeedCurve RUM](https://www.speedcurve.com/features/performance-monitoring/) | 5,358 | 60 ms |
253
+ | 4 | Roxr Software | 12,877 | 66 ms |
254
+ | 5 | [WordPress Site Stats](https://wp.com/) | 128,931 | 66 ms |
255
+ | 6 | [Smartlook](https://www.smartlook.com/) | 16,221 | 85 ms |
256
+ | 7 | Woopra | 1,366 | 88 ms |
257
+ | 8 | Movable Ink | 4,949 | 89 ms |
258
+ | 9 | [Snapchat](https://www.snapchat.com) | 1,978 | 90 ms |
259
+ | 10 | [LiveRamp IdentityLink](https://liveramp.com/discover-identitylink/) | 1,461 | 97 ms |
260
+ | 11 | Treasure Data | 14,403 | 98 ms |
261
+ | 12 | [mPulse](https://developer.akamai.com/akamai-mpulse) | 30,624 | 101 ms |
262
+ | 13 | StatCounter | 50,769 | 107 ms |
263
+ | 14 | [XiTi](https://www.atinternet.com/en/) | 8,483 | 108 ms |
264
+ | 15 | Polldaddy | 2,715 | 108 ms |
265
+ | 16 | [Google Analytics](https://marketingplatform.google.com/about/analytics/) | 4,231,882 | 117 ms |
266
+ | 17 | Exponea | 1,303 | 119 ms |
267
+ | 18 | Conversant | 54,802 | 119 ms |
268
+ | 19 | [Brandmetrics](https://www.brandmetrics.com) | 30,850 | 120 ms |
269
+ | 20 | [Snowplow](https://snowplowanalytics.com/) | 58,566 | 121 ms |
270
+ | 21 | [Fastly Insights](https://insights.fastlylabs.com) | 4,449 | 122 ms |
271
+ | 22 | Site24x7 Real User Monitoring | 1,007 | 123 ms |
272
+ | 23 | CleverTap | 1,321 | 124 ms |
273
+ | 24 | [Fathom Analytics](https://usefathom.com/) | 1,141 | 127 ms |
274
+ | 25 | Stamped.io | 12,460 | 134 ms |
275
+ | 26 | [Quantcast](https://www.quantcast.com) | 77,646 | 160 ms |
276
+ | 27 | [Mixpanel](https://mixpanel.com/) | 18,817 | 173 ms |
277
+ | 28 | [Usabilla](https://usabilla.com) | 1,354 | 177 ms |
278
+ | 29 | Marchex | 7,390 | 186 ms |
279
+ | 30 | Amplitude Mobile Analytics | 46,524 | 187 ms |
280
+ | 31 | [Braze](https://www.braze.com) | 2,014 | 198 ms |
281
+ | 32 | Smart Insight Tracking | 1,779 | 203 ms |
282
+ | 33 | Chartbeat | 6,246 | 203 ms |
283
+ | 34 | Parse.ly | 5,204 | 216 ms |
284
+ | 35 | [Matomo](https://matomo.org/) | 14,345 | 217 ms |
285
+ | 36 | Reviews.co.uk | 1,883 | 226 ms |
286
+ | 37 | [Clearbit](https://clearbit.com/) | 4,171 | 232 ms |
287
+ | 38 | [Baidu Analytics](https://tongji.baidu.com/web/welcome/login) | 32,612 | 237 ms |
288
+ | 39 | [Google Optimize](https://marketingplatform.google.com/about/optimize/) | 38,797 | 240 ms |
289
+ | 40 | [Radar](https://www.cedexis.com/radar/) | 1,133 | 257 ms |
290
+ | 41 | CallTrackingMetrics | 7,503 | 264 ms |
291
+ | 42 | Trust Pilot | 54,942 | 269 ms |
292
+ | 43 | CallRail | 29,537 | 274 ms |
293
+ | 44 | UpSellit | 1,013 | 286 ms |
294
+ | 45 | Survicate | 3,008 | 310 ms |
295
+ | 46 | [PageSense](https://www.zoho.com/pagesense/) | 6,219 | 321 ms |
296
+ | 47 | [Nielsen NetRatings SiteCensus](http://www.nielsen-online.com/intlpage.html) | 19,525 | 350 ms |
297
+ | 48 | etracker | 5,626 | 369 ms |
298
+ | 49 | Reviews.io | 4,516 | 380 ms |
299
+ | 50 | [Marketo](https://www.marketo.com) | 1,798 | 403 ms |
300
+ | 51 | [Pendo](https://www.pendo.io) | 12,203 | 404 ms |
301
+ | 52 | [Segment](https://segment.com/) | 27,036 | 409 ms |
302
+ | 53 | Okta | 3,542 | 414 ms |
303
+ | 54 | Heap | 12,078 | 430 ms |
304
+ | 55 | Evergage | 2,491 | 440 ms |
305
+ | 56 | Net Reviews | 2,442 | 468 ms |
306
+ | 57 | TruConversion | 1,008 | 484 ms |
307
+ | 58 | Bazaarvoice | 3,375 | 493 ms |
308
+ | 59 | Evidon | 2,482 | 508 ms |
309
+ | 60 | [AB Tasty](https://www.abtasty.com/) | 3,363 | 512 ms |
310
+ | 61 | [BowNow](https://bow-now.jp/) | 2,410 | 539 ms |
311
+ | 62 | Convert Insights | 4,385 | 587 ms |
312
+ | 63 | Nosto | 1,189 | 592 ms |
313
+ | 64 | Clerk.io ApS | 1,915 | 625 ms |
314
+ | 65 | [Crazy Egg](https://www.crazyegg.com/) | 43,822 | 630 ms |
315
+ | 66 | Feefo.com | 2,025 | 673 ms |
316
+ | 67 | Qualtrics | 7,134 | 688 ms |
317
+ | 68 | [Hotjar](https://www.hotjar.com/) | 333,356 | 724 ms |
318
+ | 69 | [Appcues](https://www.appcues.com/) | 2,831 | 761 ms |
319
+ | 70 | [Lucky Orange](https://www.luckyorange.com/) | 16,442 | 777 ms |
320
+ | 71 | [Optimizely](https://www.optimizely.com/) | 15,998 | 788 ms |
321
+ | 72 | FullStory | 14,687 | 788 ms |
322
+ | 73 | [VWO](https://vwo.com) | 7,903 | 821 ms |
323
+ | 74 | PowerReviews | 1,324 | 913 ms |
324
+ | 75 | Revolver Maps | 2,305 | 925 ms |
325
+ | 76 | TrackJS | 2,268 | 931 ms |
326
+ | 77 | [Kameleoon](https://www.kameleoon.com/) | 2,337 | 949 ms |
327
+ | 78 | Insider | 1,861 | 1190 ms |
328
+ | 79 | ContentSquare | 2,948 | 1230 ms |
329
+ | 80 | Dynatrace | 3,221 | 1275 ms |
330
+ | 81 | Gigya | 1,995 | 1350 ms |
331
+ | 82 | Inspectlet | 5,346 | 1426 ms |
332
+ | 83 | [Quantum Metric](https://www.quantummetric.com/) | 1,140 | 1491 ms |
333
+ | 84 | [Yandex Metrica](https://metrica.yandex.com/about?) | 602,136 | 2389 ms |
320
334
 
321
335
  <a name="social"></a>
322
336
 
@@ -326,24 +340,23 @@ These scripts enable social features.
326
340
 
327
341
  | Rank | Name | Usage | Average Impact |
328
342
  | ---- | ------------------------------------------- | --------- | -------------- |
329
- | 1 | [Shareaholic](https://www.shareaholic.com/) | 1,294 | 86 ms |
330
- | 2 | [Pinterest](https://pinterest.com/) | 131,399 | 144 ms |
331
- | 3 | [AddToAny](https://www.addtoany.com/) | 66,597 | 146 ms |
332
- | 4 | reddit | 16,277 | 238 ms |
333
- | 5 | [LinkedIn](https://www.linkedin.com/) | 17,125 | 306 ms |
334
- | 6 | [ShareThis](https://www.sharethis.com/) | 88,925 | 338 ms |
335
- | 7 | AddShoppers | 1,915 | 340 ms |
336
- | 8 | [Facebook](https://www.facebook.com) | 3,181,086 | 388 ms |
337
- | 9 | [TikTok](https://www.tiktok.com/en/) | 215,993 | 457 ms |
338
- | 10 | Kakao | 63,733 | 642 ms |
339
- | 11 | [PIXNET](https://www.pixnet.net/) | 15,360 | 709 ms |
340
- | 12 | [Instagram](https://www.instagram.com) | 10,222 | 1260 ms |
341
- | 13 | SocialShopWave | 4,310 | 1501 ms |
342
- | 14 | [Twitter](https://twitter.com) | 331,511 | 2185 ms |
343
- | 15 | [VK](https://vk.com/) | 24,107 | 2366 ms |
344
- | 16 | [Disqus](https://disqus.com/) | 1,135 | 2724 ms |
345
- | 17 | [Tumblr](https://tumblr.com/) | 17,786 | 2804 ms |
346
- | 18 | LiveJournal | 9,526 | 5835 ms |
343
+ | 1 | [Shareaholic](https://www.shareaholic.com/) | 1,429 | 86 ms |
344
+ | 2 | [Pinterest](https://pinterest.com/) | 131,448 | 134 ms |
345
+ | 3 | [AddToAny](https://www.addtoany.com/) | 66,065 | 161 ms |
346
+ | 4 | reddit | 18,483 | 223 ms |
347
+ | 5 | [ShareThis](https://www.sharethis.com/) | 88,829 | 347 ms |
348
+ | 6 | [Facebook](https://www.facebook.com) | 3,157,799 | 347 ms |
349
+ | 7 | [LinkedIn](https://www.linkedin.com/) | 16,507 | 350 ms |
350
+ | 8 | [TikTok](https://www.tiktok.com/en/) | 256,224 | 434 ms |
351
+ | 9 | Kakao | 62,730 | 611 ms |
352
+ | 10 | SocialShopWave | 3,720 | 1334 ms |
353
+ | 11 | [PIXNET](https://www.pixnet.net/) | 13,718 | 1352 ms |
354
+ | 12 | [Instagram](https://www.instagram.com) | 20,376 | 1570 ms |
355
+ | 13 | [Disqus](https://disqus.com/) | 1,775 | 2083 ms |
356
+ | 14 | [Twitter](https://twitter.com) | 319,957 | 2514 ms |
357
+ | 15 | [Tumblr](https://tumblr.com/) | 18,114 | 2516 ms |
358
+ | 16 | [VK](https://vk.com/) | 22,377 | 4082 ms |
359
+ | 17 | LiveJournal | 9,109 | 6975 ms |
347
360
 
348
361
  <a name="video"></a>
349
362
 
@@ -353,11 +366,11 @@ These scripts enable video player and streaming functionality.
353
366
 
354
367
  | Rank | Name | Usage | Average Impact |
355
368
  | ---- | -------------------------------------------- | ------- | -------------- |
356
- | 1 | [Brightcove](https://www.brightcove.com/en/) | 13,124 | 1092 ms |
357
- | 2 | [Vimeo](https://vimeo.com/) | 141,109 | 2848 ms |
358
- | 3 | [Wistia](https://wistia.com/) | 26,714 | 3186 ms |
359
- | 4 | [Twitch](https://twitch.tv/) | 1,450 | 4518 ms |
360
- | 5 | [YouTube](https://youtube.com) | 962,443 | 4991 ms |
369
+ | 1 | [Brightcove](https://www.brightcove.com/en/) | 13,745 | 1099 ms |
370
+ | 2 | [Vimeo](https://vimeo.com/) | 120,397 | 2192 ms |
371
+ | 3 | [Wistia](https://wistia.com/) | 27,059 | 4277 ms |
372
+ | 4 | [YouTube](https://youtube.com) | 977,311 | 6423 ms |
373
+ | 5 | [Twitch](https://twitch.tv/) | 1,255 | 14703 ms |
361
374
 
362
375
  <a name="utility"></a>
363
376
 
@@ -367,68 +380,70 @@ These scripts are developer utilities (API clients, site monitoring, fraud detec
367
380
 
368
381
  | Rank | Name | Usage | Average Impact |
369
382
  | ---- | ------------------------------------------------------------------------- | --------- | -------------- |
370
- | 1 | [Checkout.com](https://www.checkout.com) | 1,117 | 61 ms |
371
- | 2 | Siteimprove | 9,172 | 76 ms |
372
- | 3 | Raygun | 2,110 | 89 ms |
373
- | 4 | Rollbar | 1,442 | 93 ms |
374
- | 5 | [Pusher](https://pusher.com/) | 1,456 | 94 ms |
375
- | 6 | iovation | 2,098 | 108 ms |
376
- | 7 | CyberSource (Visa) | 2,061 | 118 ms |
377
- | 8 | [Afterpay](https://www.afterpay.com/) | 7,898 | 124 ms |
378
- | 9 | [Cloudflare](https://www.cloudflare.com/website-optimization/) | 348,270 | 125 ms |
379
- | 10 | [Ipify](https://www.ipify.org) | 2,159 | 132 ms |
380
- | 11 | Braintree Payments | 1,010 | 136 ms |
381
- | 12 | Macropod BugHerd | 2,677 | 138 ms |
382
- | 13 | Wufoo | 1,556 | 148 ms |
383
- | 14 | Seznam | 9,260 | 158 ms |
384
- | 15 | Bitly | 2,973 | 158 ms |
385
- | 16 | [Amazon Pay](https://pay.amazon.com) | 6,678 | 161 ms |
386
- | 17 | Key CDN | 5,597 | 186 ms |
387
- | 18 | [Netlify](https://www.netlify.com/) | 1,323 | 194 ms |
388
- | 19 | Highcharts | 3,106 | 214 ms |
389
- | 20 | Riskified | 1,848 | 218 ms |
390
- | 21 | LightWidget | 11,137 | 226 ms |
391
- | 22 | Cookie-Script.com | 41,414 | 227 ms |
392
- | 23 | [OneSignal](https://onesignal.com/) | 66,991 | 254 ms |
393
- | 24 | [New Relic](https://newrelic.com/) | 234,387 | 261 ms |
394
- | 25 | [Foxentry](https://foxentry.cz/) | 1,927 | 270 ms |
395
- | 26 | [TrustArc](https://www.trustarc.com/) | 7,377 | 294 ms |
396
- | 27 | Google reCAPTCHA | 27,115 | 304 ms |
397
- | 28 | [Cookiebot](https://www.cookiebot.com/) | 171,303 | 308 ms |
398
- | 29 | [Accessibe Accessibility Overlay](https://accessibe.com/) | 48,040 | 313 ms |
399
- | 30 | Swiftype | 1,096 | 350 ms |
400
- | 31 | Hexton | 32,051 | 352 ms |
401
- | 32 | iubenda | 93,812 | 356 ms |
402
- | 33 | [Clarity](https://clarity.microsoft.com/) | 338,320 | 359 ms |
403
- | 34 | Trusted Shops | 17,034 | 369 ms |
404
- | 35 | [Other Google APIs/SDKs](https://developers.google.com/apis-explorer/#p/) | 2,358,410 | 378 ms |
405
- | 36 | Bugsnag | 13,395 | 397 ms |
406
- | 37 | GitHub | 6,970 | 434 ms |
407
- | 38 | Bold Commerce | 11,923 | 435 ms |
408
- | 39 | Klevu Search | 1,415 | 437 ms |
409
- | 40 | GetSiteControl | 3,062 | 476 ms |
410
- | 41 | Affirm | 6,594 | 500 ms |
411
- | 42 | [Sentry](https://sentry.io/) | 89,800 | 577 ms |
412
- | 43 | ThreatMetrix | 2,935 | 606 ms |
413
- | 44 | [Yandex APIs](https://yandex.ru/) | 44,655 | 621 ms |
414
- | 45 | [Google Maps](https://www.google.com/maps) | 1,214,682 | 633 ms |
415
- | 46 | Mapbox | 19,297 | 663 ms |
416
- | 47 | [PayPal](https://paypal.com) | 56,797 | 879 ms |
417
- | 48 | [AppDynamics](https://www.appdynamics.com/) | 3,419 | 907 ms |
418
- | 49 | [GoDaddy](https://www.godaddy.com/) | 122,066 | 938 ms |
419
- | 50 | Forter | 4,345 | 943 ms |
420
- | 51 | [Vidyard](https://www.vidyard.com/) | 1,061 | 978 ms |
421
- | 52 | Secomapp | 2,220 | 1102 ms |
422
- | 53 | [Stripe](https://stripe.com) | 127,044 | 1133 ms |
423
- | 54 | [Luigis Box](https://www.luigisbox.com/) | 2,210 | 1217 ms |
424
- | 55 | Marker | 1,508 | 1238 ms |
425
- | 56 | WisePops | 2,044 | 1241 ms |
426
- | 57 | Signyfyd | 2,567 | 1495 ms |
427
- | 58 | Fastly | 9,099 | 1679 ms |
428
- | 59 | Adyen | 2,322 | 2052 ms |
429
- | 60 | Rambler | 16,907 | 4045 ms |
430
- | 61 | [POWr](https://www.powr.io) | 39,624 | 4749 ms |
431
- | 62 | Esri ArcGIS | 3,412 | 5570 ms |
383
+ | 1 | [Statuspage](https://www.statuspage.io) | 1,212 | 36 ms |
384
+ | 2 | Webmarked | 1,077 | 67 ms |
385
+ | 3 | Rollbar | 2,349 | 81 ms |
386
+ | 4 | [Pusher](https://pusher.com/) | 1,698 | 90 ms |
387
+ | 5 | Raygun | 2,539 | 97 ms |
388
+ | 6 | iovation | 2,159 | 125 ms |
389
+ | 7 | [Cloudflare](https://www.cloudflare.com/website-optimization/) | 467,719 | 126 ms |
390
+ | 8 | CyberSource (Visa) | 2,682 | 126 ms |
391
+ | 9 | Klarna | 10,759 | 128 ms |
392
+ | 10 | [Ipify](https://www.ipify.org) | 2,753 | 133 ms |
393
+ | 11 | [Checkout.com](https://www.checkout.com) | 1,367 | 135 ms |
394
+ | 12 | [Doofinder](https://www.doofinder.com/) | 12,550 | 140 ms |
395
+ | 13 | Macropod BugHerd | 3,523 | 145 ms |
396
+ | 14 | Braintree Payments | 1,141 | 150 ms |
397
+ | 15 | [Afterpay](https://www.afterpay.com/) | 8,269 | 154 ms |
398
+ | 16 | [Amazon Pay](https://pay.amazon.com) | 6,833 | 181 ms |
399
+ | 17 | Seznam | 6,863 | 193 ms |
400
+ | 18 | LightWidget | 9,383 | 195 ms |
401
+ | 19 | [Netlify](https://www.netlify.com/) | 1,323 | 226 ms |
402
+ | 20 | Riskified | 1,643 | 228 ms |
403
+ | 21 | Highcharts | 3,181 | 235 ms |
404
+ | 22 | Wufoo | 1,507 | 253 ms |
405
+ | 23 | Cookie-Script.com | 58,095 | 259 ms |
406
+ | 24 | [OneSignal](https://onesignal.com/) | 68,282 | 260 ms |
407
+ | 25 | [New Relic](https://newrelic.com/) | 227,672 | 284 ms |
408
+ | 26 | [Foxentry](https://foxentry.cz/) | 2,313 | 328 ms |
409
+ | 27 | Google reCAPTCHA | 25,662 | 339 ms |
410
+ | 28 | [Cookiebot](https://www.cookiebot.com/) | 187,732 | 346 ms |
411
+ | 29 | [mParticle](https://www.mparticle.com/) | 1,029 | 392 ms |
412
+ | 30 | [TrustArc](https://www.trustarc.com/) | 5,941 | 409 ms |
413
+ | 31 | Bugsnag | 15,069 | 411 ms |
414
+ | 32 | Trusted Shops | 17,267 | 427 ms |
415
+ | 33 | Hexton | 24,738 | 437 ms |
416
+ | 34 | [Other Google APIs/SDKs](https://developers.google.com/apis-explorer/#p/) | 2,638,940 | 439 ms |
417
+ | 35 | [Clarity](https://clarity.microsoft.com/) | 456,309 | 458 ms |
418
+ | 36 | Key CDN | 10,025 | 480 ms |
419
+ | 37 | GitHub | 14,675 | 486 ms |
420
+ | 38 | Bold Commerce | 9,886 | 513 ms |
421
+ | 39 | ThreatMetrix | 3,530 | 539 ms |
422
+ | 40 | GetSiteControl | 3,146 | 553 ms |
423
+ | 41 | [Sentry](https://sentry.io/) | 85,598 | 560 ms |
424
+ | 42 | Affirm | 6,665 | 600 ms |
425
+ | 43 | Mapbox | 19,555 | 707 ms |
426
+ | 44 | iubenda | 97,074 | 720 ms |
427
+ | 45 | [Google Maps](https://www.google.com/maps) | 1,195,850 | 756 ms |
428
+ | 46 | Klevu Search | 1,463 | 769 ms |
429
+ | 47 | [Yandex APIs](https://yandex.ru/) | 51,601 | 790 ms |
430
+ | 48 | [GoDaddy](https://www.godaddy.com/) | 110,342 | 858 ms |
431
+ | 49 | [AppDynamics](https://www.appdynamics.com/) | 2,920 | 859 ms |
432
+ | 50 | Forter | 6,930 | 949 ms |
433
+ | 51 | Secomapp | 2,137 | 1007 ms |
434
+ | 52 | [PayPal](https://paypal.com) | 62,800 | 1026 ms |
435
+ | 53 | [Vidyard](https://www.vidyard.com/) | 1,097 | 1063 ms |
436
+ | 54 | [Stripe](https://stripe.com) | 136,440 | 1219 ms |
437
+ | 55 | [Luigis Box](https://www.luigisbox.com/) | 2,356 | 1263 ms |
438
+ | 56 | WisePops | 1,950 | 1349 ms |
439
+ | 57 | Marker | 1,722 | 1354 ms |
440
+ | 58 | Signyfyd | 2,608 | 1822 ms |
441
+ | 59 | Fastly | 9,582 | 2229 ms |
442
+ | 60 | Adyen | 2,363 | 2681 ms |
443
+ | 61 | Datacamp | 1,181 | 2797 ms |
444
+ | 62 | Rambler | 15,831 | 3444 ms |
445
+ | 63 | [POWr](https://www.powr.io) | 39,716 | 4823 ms |
446
+ | 64 | Esri ArcGIS | 3,432 | 6401 ms |
432
447
 
433
448
  <a name="hosting"></a>
434
449
 
@@ -438,23 +453,21 @@ These scripts are from web hosting platforms (WordPress, Wix, Squarespace, etc).
438
453
 
439
454
  | Rank | Name | Usage | Average Impact |
440
455
  | ---- | ----------------------------------------------------------------------------------------- | ------- | -------------- |
441
- | 1 | [Blogger](https://www.blogger.com/) | 153,857 | 151 ms |
442
- | 2 | [Dealer](https://www.dealer.com/) | 2,332 | 335 ms |
443
- | 3 | Civic | 6,533 | 351 ms |
444
- | 4 | [Salesforce Commerce Cloud](https://www.salesforce.com/products/commerce-cloud/overview/) | 4,001 | 372 ms |
445
- | 5 | Typepad | 1,099 | 412 ms |
446
- | 6 | [WordPress](https://wp.com/) | 311,129 | 645 ms |
447
- | 7 | [Shopify](https://www.shopify.com/) | 308,407 | 759 ms |
448
- | 8 | Global-e | 1,201 | 772 ms |
449
- | 9 | Ecwid | 5,521 | 873 ms |
450
- | 10 | Rackspace | 1,880 | 1264 ms |
451
- | 11 | [Tilda](https://tilda.cc/) | 69,936 | 1316 ms |
452
- | 12 | [Hatena Blog](https://hatenablog.com/) | 43,307 | 1999 ms |
453
- | 13 | [Webflow](https://webflow.com/) | 36,763 | 3603 ms |
454
- | 14 | [Squarespace](https://www.squarespace.com/) | 236,228 | 3642 ms |
455
- | 15 | [WebsiteBuilder.com](https://www.websitebuilder.com) | 4,817 | 4384 ms |
456
- | 16 | [Wix](https://www.wix.com/) | 447,776 | 4780 ms |
457
- | 17 | [Weebly](https://www.weebly.com/) | 66,212 | 5814 ms |
456
+ | 1 | [Blogger](https://www.blogger.com/) | 213,326 | 274 ms |
457
+ | 2 | [Dealer](https://www.dealer.com/) | 2,620 | 333 ms |
458
+ | 3 | Civic | 7,253 | 388 ms |
459
+ | 4 | [Salesforce Commerce Cloud](https://www.salesforce.com/products/commerce-cloud/overview/) | 4,127 | 496 ms |
460
+ | 5 | Global-e | 1,314 | 537 ms |
461
+ | 6 | [WordPress](https://wp.com/) | 308,694 | 716 ms |
462
+ | 7 | [Shopify](https://www.shopify.com/) | 338,668 | 849 ms |
463
+ | 8 | Ecwid | 4,362 | 861 ms |
464
+ | 9 | [Tilda](https://tilda.cc/) | 70,321 | 1347 ms |
465
+ | 10 | Rackspace | 2,624 | 1362 ms |
466
+ | 11 | [Hatena Blog](https://hatenablog.com/) | 43,183 | 2462 ms |
467
+ | 12 | [WebsiteBuilder.com](https://www.websitebuilder.com) | 4,688 | 4174 ms |
468
+ | 13 | [Squarespace](https://www.squarespace.com/) | 243,154 | 4551 ms |
469
+ | 14 | [Wix](https://www.wix.com/) | 458,273 | 4609 ms |
470
+ | 15 | [Weebly](https://www.weebly.com/) | 67,864 | 6086 ms |
458
471
 
459
472
  <a name="marketing"></a>
460
473
 
@@ -464,29 +477,31 @@ These scripts are from marketing tools that add popups/newsletters/etc.
464
477
 
465
478
  | Rank | Name | Usage | Average Impact |
466
479
  | ---- | ------------------------------------------- | ------- | -------------- |
467
- | 1 | [Albacross](https://albacross.com/) | 1,344 | 65 ms |
468
- | 2 | Madison Logic | 1,670 | 74 ms |
469
- | 3 | DemandBase | 2,209 | 126 ms |
470
- | 4 | [Convertful](https://convertful.com/) | 1,556 | 159 ms |
471
- | 5 | [RD Station](https://www.rdstation.com/en/) | 21,042 | 306 ms |
472
- | 6 | [Listrak](https://www.listrak.com/) | 1,204 | 381 ms |
473
- | 7 | [OptinMonster](https://optinmonster.com/) | 2,592 | 410 ms |
474
- | 8 | [Mailchimp](https://mailchimp.com/) | 47,204 | 465 ms |
475
- | 9 | Sojern | 4,030 | 482 ms |
476
- | 10 | Wishpond Technologies | 1,698 | 516 ms |
477
- | 11 | [Hubspot](https://hubspot.com/) | 147,791 | 523 ms |
478
- | 12 | [iZooto](https://www.izooto.com) | 2,302 | 628 ms |
479
- | 13 | [Yotpo](https://www.yotpo.com/) | 27,061 | 630 ms |
480
- | 14 | Kargo | 1,602 | 672 ms |
481
- | 15 | [PureCars](https://www.purecars.com/) | 1,813 | 735 ms |
482
- | 16 | [KARTE](https://karte.io/) | 1,755 | 898 ms |
483
- | 17 | [Judge.me](https://judge.me/) | 28,108 | 975 ms |
484
- | 18 | [Beeketing](https://beeketing.com/) | 2,144 | 1007 ms |
485
- | 19 | [Wunderkind](https://www.wunderkind.co/) | 1,249 | 1336 ms |
486
- | 20 | [Sumo](https://sumo.com/) | 11,786 | 1433 ms |
487
- | 21 | Bigcommerce | 19,744 | 2258 ms |
488
- | 22 | [Drift](https://www.drift.com/) | 5,811 | 4284 ms |
489
- | 23 | [Tray Commerce](https://www.tray.com.br/) | 13,869 | 4626 ms |
480
+ | 1 | Kargo | 1,135 | 43 ms |
481
+ | 2 | [Podsights](https://podsights.com/) | 1,140 | 63 ms |
482
+ | 3 | [Albacross](https://albacross.com/) | 1,503 | 67 ms |
483
+ | 4 | [Convertful](https://convertful.com/) | 1,534 | 140 ms |
484
+ | 5 | DemandBase | 2,552 | 154 ms |
485
+ | 6 | SharpSpring | 2,080 | 304 ms |
486
+ | 7 | [Hello Bar](https://www.hellobar.com/) | 4,502 | 341 ms |
487
+ | 8 | [RD Station](https://www.rdstation.com/en/) | 21,846 | 352 ms |
488
+ | 9 | [Listrak](https://www.listrak.com/) | 1,045 | 439 ms |
489
+ | 10 | [OptinMonster](https://optinmonster.com/) | 2,346 | 442 ms |
490
+ | 11 | Wishpond Technologies | 1,691 | 456 ms |
491
+ | 12 | Sojern | 4,422 | 472 ms |
492
+ | 13 | [Mailchimp](https://mailchimp.com/) | 45,506 | 474 ms |
493
+ | 14 | [iZooto](https://www.izooto.com) | 2,022 | 550 ms |
494
+ | 15 | [Hubspot](https://hubspot.com/) | 154,415 | 597 ms |
495
+ | 16 | [Yotpo](https://www.yotpo.com/) | 26,094 | 648 ms |
496
+ | 17 | [PureCars](https://www.purecars.com/) | 1,292 | 750 ms |
497
+ | 18 | [KARTE](https://karte.io/) | 1,729 | 990 ms |
498
+ | 19 | [Beeketing](https://beeketing.com/) | 1,971 | 1097 ms |
499
+ | 20 | [Judge.me](https://judge.me/) | 27,483 | 1160 ms |
500
+ | 21 | [Sumo](https://sumo.com/) | 10,901 | 1513 ms |
501
+ | 22 | [Wunderkind](https://www.wunderkind.co/) | 1,278 | 1578 ms |
502
+ | 23 | Bigcommerce | 19,595 | 2335 ms |
503
+ | 24 | [Tray Commerce](https://www.tray.com.br/) | 14,071 | 4858 ms |
504
+ | 25 | [Drift](https://www.drift.com/) | 5,515 | 5472 ms |
490
505
 
491
506
  <a name="customer-success"></a>
492
507
 
@@ -496,25 +511,25 @@ These scripts are from customer support/marketing providers that offer chat and
496
511
 
497
512
  | Rank | Name | Usage | Average Impact |
498
513
  | ---- | ----------------------------------------------------------- | ------- | -------------- |
499
- | 1 | SnapEngage | 1,000 | 111 ms |
500
- | 2 | iPerceptions | 5,939 | 133 ms |
501
- | 3 | [Help Scout](https://www.helpscout.net/) | 4,484 | 139 ms |
502
- | 4 | Foursixty | 1,325 | 202 ms |
503
- | 5 | LiveTex | 1,836 | 202 ms |
504
- | 6 | WebEngage | 2,150 | 240 ms |
505
- | 7 | Pure Chat | 3,261 | 330 ms |
506
- | 8 | [Tawk.to](https://www.tawk.to/) | 110,838 | 369 ms |
507
- | 9 | [Smartsupp](https://www.smartsupp.com) | 21,642 | 402 ms |
508
- | 10 | Comm100 | 1,031 | 448 ms |
509
- | 11 | [Jivochat](https://www.jivochat.com/) | 55,524 | 637 ms |
510
- | 12 | [LivePerson](https://www.liveperson.com/) | 2,795 | 688 ms |
511
- | 13 | [Intercom](https://www.intercom.com) | 32,751 | 1100 ms |
512
- | 14 | [Tidio Live Chat](https://www.tidiochat.com/en/) | 25,353 | 1183 ms |
513
- | 15 | [Olark](https://www.olark.com/) | 6,739 | 1320 ms |
514
- | 16 | [ZenDesk](https://zendesk.com/) | 76,280 | 1442 ms |
515
- | 17 | [LiveChat](https://www.livechat.com/) | 39,613 | 1580 ms |
516
- | 18 | Dynamic Yield | 1,860 | 1943 ms |
517
- | 19 | [Freshchat](https://www.freshworks.com/live-chat-software/) | 6,686 | 3069 ms |
514
+ | 1 | [Crisp](https://crisp.chat/) | 1,052 | 32 ms |
515
+ | 2 | iPerceptions | 4,662 | 134 ms |
516
+ | 3 | SnapEngage | 1,038 | 142 ms |
517
+ | 4 | LiveTex | 1,911 | 250 ms |
518
+ | 5 | WebEngage | 2,283 | 346 ms |
519
+ | 6 | Pure Chat | 3,105 | 364 ms |
520
+ | 7 | [Tawk.to](https://www.tawk.to/) | 111,088 | 388 ms |
521
+ | 8 | [Help Scout](https://www.helpscout.net/) | 4,906 | 446 ms |
522
+ | 9 | Comm100 | 1,045 | 449 ms |
523
+ | 10 | [Smartsupp](https://www.smartsupp.com) | 21,505 | 465 ms |
524
+ | 11 | [Jivochat](https://www.jivochat.com/) | 57,540 | 637 ms |
525
+ | 12 | [LivePerson](https://www.liveperson.com/) | 2,544 | 759 ms |
526
+ | 13 | [Tidio Live Chat](https://www.tidiochat.com/en/) | 24,598 | 1081 ms |
527
+ | 14 | [LiveChat](https://www.livechat.com/) | 39,034 | 1260 ms |
528
+ | 15 | [Intercom](https://www.intercom.com) | 35,197 | 1267 ms |
529
+ | 16 | [ZenDesk](https://zendesk.com/) | 72,537 | 1471 ms |
530
+ | 17 | [Olark](https://www.olark.com/) | 6,534 | 1506 ms |
531
+ | 18 | Dynamic Yield | 1,843 | 1943 ms |
532
+ | 19 | [Freshchat](https://www.freshworks.com/live-chat-software/) | 7,081 | 3298 ms |
518
533
 
519
534
  <a name="content"></a>
520
535
 
@@ -524,23 +539,23 @@ These scripts are from content providers or publishing-specific affiliate tracki
524
539
 
525
540
  | Rank | Name | Usage | Average Impact |
526
541
  | ---- | ----------------------------------------- | ------ | -------------- |
527
- | 1 | [Spotify](https://www.spotify.com/) | 11,016 | 1 ms |
528
- | 2 | OpenTable | 4,206 | 78 ms |
529
- | 3 | TripAdvisor | 2,018 | 88 ms |
530
- | 4 | Accuweather | 1,554 | 169 ms |
531
- | 5 | SnapWidget | 13,527 | 179 ms |
532
- | 6 | Tencent | 7,169 | 249 ms |
533
- | 7 | Booking.com | 1,656 | 417 ms |
534
- | 8 | Cloudinary | 2,554 | 494 ms |
535
- | 9 | CPEx | 1,137 | 504 ms |
536
- | 10 | Revcontent | 1,225 | 864 ms |
537
- | 11 | [Hotmart](https://www.hotmart.com/) | 4,014 | 926 ms |
538
- | 12 | [AMP](https://amp.dev/) | 88,558 | 1054 ms |
539
- | 13 | Embedly | 10,428 | 1401 ms |
540
- | 14 | issuu | 2,692 | 1957 ms |
541
- | 15 | [SoundCloud](https://www.soundcloud.com/) | 6,033 | 2479 ms |
542
- | 16 | Dailymotion | 5,423 | 8720 ms |
543
- | 17 | Medium | 19,673 | 12053 ms |
542
+ | 1 | [Spotify](https://www.spotify.com/) | 10,992 | 9 ms |
543
+ | 2 | OpenTable | 4,314 | 96 ms |
544
+ | 3 | Accuweather | 1,477 | 198 ms |
545
+ | 4 | Tencent | 8,726 | 260 ms |
546
+ | 5 | TripAdvisor | 2,354 | 318 ms |
547
+ | 6 | Embedly | 10,836 | 463 ms |
548
+ | 7 | Cloudinary | 2,129 | 558 ms |
549
+ | 8 | Booking.com | 2,448 | 675 ms |
550
+ | 9 | CPEx | 1,104 | 691 ms |
551
+ | 10 | Revcontent | 1,251 | 922 ms |
552
+ | 11 | [AMP](https://amp.dev/) | 66,265 | 1201 ms |
553
+ | 12 | issuu | 2,714 | 2066 ms |
554
+ | 13 | Kaltura Video Platform | 1,017 | 2128 ms |
555
+ | 14 | [SoundCloud](https://www.soundcloud.com/) | 5,859 | 2712 ms |
556
+ | 15 | [Hotmart](https://www.hotmart.com/) | 4,554 | 3374 ms |
557
+ | 16 | Dailymotion | 5,142 | 10905 ms |
558
+ | 17 | Medium | 17,027 | 12740 ms |
544
559
 
545
560
  <a name="cdn"></a>
546
561
 
@@ -550,22 +565,20 @@ These are a mixture of publicly hosted open source libraries (e.g. jQuery) serve
550
565
 
551
566
  | Rank | Name | Usage | Average Impact |
552
567
  | ---- | ------------------------------------------------------------ | --------- | -------------- |
553
- | 1 | [Google Fonts](https://fonts.google.com/) | 220,602 | 0 ms |
554
- | 2 | [Bootstrap CDN](https://www.bootstrapcdn.com/) | 31,394 | 55 ms |
555
- | 3 | [FontAwesome CDN](https://fontawesome.com/) | 310,436 | 219 ms |
556
- | 4 | Monotype | 3,294 | 222 ms |
557
- | 5 | Microsoft Hosted Libs | 19,679 | 225 ms |
558
- | 6 | [Akamai](https://www.akamai.com/) | 9,228 | 297 ms |
559
- | 7 | [Adobe TypeKit](https://fonts.adobe.com/) | 102,866 | 340 ms |
560
- | 8 | Fort Awesome | 3,769 | 348 ms |
561
- | 9 | [jQuery CDN](https://code.jquery.com/) | 713,886 | 382 ms |
562
- | 10 | [Cloudflare CDN](https://cdnjs.com/) | 618,006 | 514 ms |
563
- | 11 | [JSDelivr CDN](https://www.jsdelivr.com/) | 348,981 | 635 ms |
564
- | 12 | Azure Web Services | 43,334 | 677 ms |
565
- | 13 | [Unpkg](https://unpkg.com) | 138,968 | 976 ms |
566
- | 14 | [Google CDN](https://developers.google.com/speed/libraries/) | 3,340,383 | 1058 ms |
567
- | 15 | [Yandex CDN](https://yandex.ru/) | 172,717 | 1715 ms |
568
- | 16 | [CreateJS CDN](https://code.createjs.com/) | 4,377 | 2936 ms |
568
+ | 1 | [Google Fonts](https://fonts.google.com/) | 220,864 | 0 ms |
569
+ | 2 | [Bootstrap CDN](https://www.bootstrapcdn.com/) | 38,731 | 54 ms |
570
+ | 3 | Fort Awesome | 3,635 | 179 ms |
571
+ | 4 | Microsoft Hosted Libs | 20,042 | 228 ms |
572
+ | 5 | Monotype | 3,185 | 229 ms |
573
+ | 6 | [FontAwesome CDN](https://fontawesome.com/) | 291,586 | 250 ms |
574
+ | 7 | [jQuery CDN](https://code.jquery.com/) | 724,477 | 417 ms |
575
+ | 8 | [Akamai](https://www.akamai.com/) | 9,820 | 488 ms |
576
+ | 9 | [Cloudflare CDN](https://cdnjs.com/) | 666,628 | 507 ms |
577
+ | 10 | [JSDelivr CDN](https://www.jsdelivr.com/) | 399,959 | 651 ms |
578
+ | 11 | [Adobe TypeKit](https://fonts.adobe.com/) | 119,621 | 660 ms |
579
+ | 12 | Azure Web Services | 51,378 | 694 ms |
580
+ | 13 | [Google CDN](https://developers.google.com/speed/libraries/) | 3,192,326 | 1505 ms |
581
+ | 14 | [CreateJS CDN](https://code.createjs.com/) | 3,880 | 3519 ms |
569
582
 
570
583
  <a name="tag-manager"></a>
571
584
 
@@ -575,12 +588,11 @@ These scripts tend to load lots of other scripts and initiate many tasks.
575
588
 
576
589
  | Rank | Name | Usage | Average Impact |
577
590
  | ---- | ----------------------------------------------------------------------------- | --------- | -------------- |
578
- | 1 | [Adobe Tag Manager](https://www.adobe.com/experience-platform/) | 183,984 | 185 ms |
579
- | 2 | [Yahoo! Tag Manager](https://marketing.yahoo.co.jp/service/tagmanager/) | 9,086 | 225 ms |
580
- | 3 | TagCommander | 1,455 | 286 ms |
581
- | 4 | [Ensighten](https://www.ensighten.com/) | 3,033 | 545 ms |
582
- | 5 | [Tealium](https://tealium.com/) | 27,489 | 556 ms |
583
- | 6 | [Google Tag Manager](https://marketingplatform.google.com/about/tag-manager/) | 7,862,343 | 708 ms |
591
+ | 1 | [Adobe Tag Manager](https://www.adobe.com/experience-platform/) | 200,160 | 175 ms |
592
+ | 2 | [Tealium](https://tealium.com/) | 75,434 | 267 ms |
593
+ | 3 | TagCommander | 1,509 | 297 ms |
594
+ | 4 | [Ensighten](https://www.ensighten.com/) | 3,199 | 555 ms |
595
+ | 5 | [Google Tag Manager](https://marketingplatform.google.com/about/tag-manager/) | 8,124,119 | 833 ms |
584
596
 
585
597
  <a name="consent-provider"></a>
586
598
 
@@ -588,11 +600,14 @@ These scripts tend to load lots of other scripts and initiate many tasks.
588
600
 
589
601
  IAB Consent Management Providers are the 'Cookie Consent' popups used by many publishers. They're invoked for every page and sit on the critical path between a page loading and adverts being displayed.
590
602
 
591
- | Rank | Name | Usage | Average Impact |
592
- | ---- | ----------------------------------------------- | ------- | -------------- |
593
- | 1 | [Trustcommander](https://www.commandersact.com) | 1,701 | 176 ms |
594
- | 2 | [Optanon](https://www.cookielaw.org/) | 114,644 | 441 ms |
595
- | 3 | [Usercentrics CMP](https://usercentrics.com) | 47,735 | 1018 ms |
603
+ | Rank | Name | Usage | Average Impact |
604
+ | ---- | ----------------------------------------------------------------- | ------- | -------------- |
605
+ | 1 | [Trustcommander](https://www.commandersact.com) | 1,713 | 190 ms |
606
+ | 2 | [Optanon](https://www.cookielaw.org/) | 113,700 | 486 ms |
607
+ | 3 | [UniConsent CMP](https://www.uniconsent.com) | 1,336 | 621 ms |
608
+ | 4 | [Google FundingChoices](https://fundingchoices.google.com/start/) | 400,016 | 644 ms |
609
+ | 5 | [Didomi](https://www.didomi.io/) | 84,206 | 1011 ms |
610
+ | 6 | [Usercentrics CMP](https://usercentrics.com) | 49,602 | 1069 ms |
596
611
 
597
612
  <a name="other"></a>
598
613
 
@@ -602,15 +617,13 @@ These are miscellaneous scripts delivered via a shared origin with no precise ca
602
617
 
603
618
  | Rank | Name | Usage | Average Impact |
604
619
  | ---- | ------------------------------------------------------------------- | ------- | -------------- |
605
- | 1 | Browser-Update.org | 12,856 | 39 ms |
606
- | 2 | [ReadSpeaker](https://www.readspeaker.com) | 5,346 | 106 ms |
607
- | 3 | ResponsiveVoice | 6,401 | 121 ms |
608
- | 4 | Polyfill service | 1,293 | 209 ms |
609
- | 5 | [Browsealoud](https://www.texthelp.com/en-gb/products/browsealoud/) | 1,874 | 304 ms |
610
- | 6 | [Amazon Web Services](https://aws.amazon.com/s3/) | 104,820 | 375 ms |
611
- | 7 | Heroku | 14,127 | 1074 ms |
612
- | 8 | Calendly | 4,007 | 1563 ms |
613
- | 9 | uLogin | 1,427 | 2923 ms |
620
+ | 1 | [ReadSpeaker](https://www.readspeaker.com) | 6,265 | 116 ms |
621
+ | 2 | ResponsiveVoice | 6,863 | 124 ms |
622
+ | 3 | [Browsealoud](https://www.texthelp.com/en-gb/products/browsealoud/) | 1,951 | 341 ms |
623
+ | 4 | [Amazon Web Services](https://aws.amazon.com/s3/) | 119,152 | 436 ms |
624
+ | 5 | Sirv | 1,034 | 584 ms |
625
+ | 6 | Heroku | 14,119 | 893 ms |
626
+ | 7 | Calendly | 4,604 | 1873 ms |
614
627
 
615
628
  <a name="by-total-impact"></a>
616
629
 
@@ -620,206 +633,206 @@ This section highlights the entities responsible for the most script execution a
620
633
 
621
634
  | Name | Popularity | Total Impact | Average Impact |
622
635
  | -------------------------------------------------------------------------------- | ---------- | ------------ | -------------- |
623
- | [Google Tag Manager](https://marketingplatform.google.com/about/tag-manager/) | 7,862,343 | 5,570,434 s | 708 ms |
624
- | [YouTube](https://youtube.com) | 962,443 | 4,803,260 s | 4991 ms |
625
- | [Google CDN](https://developers.google.com/speed/libraries/) | 3,340,383 | 3,534,531 s | 1058 ms |
626
- | [Google/Doubleclick Ads](https://marketingplatform.google.com/about/enterprise/) | 1,172,494 | 3,480,534 s | 2968 ms |
627
- | [Wix](https://www.wix.com/) | 447,776 | 2,140,310 s | 4780 ms |
628
- | [Facebook](https://www.facebook.com) | 3,181,086 | 1,232,848 s | 388 ms |
629
- | [Yandex Metrica](https://metrica.yandex.com/about?) | 596,366 | 1,132,490 s | 1899 ms |
630
- | [Other Google APIs/SDKs](https://developers.google.com/apis-explorer/#p/) | 2,358,410 | 891,484 s | 378 ms |
631
- | [Squarespace](https://www.squarespace.com/) | 236,228 | 860,388 s | 3642 ms |
632
- | [Google Maps](https://www.google.com/maps) | 1,214,682 | 768,992 s | 633 ms |
633
- | [Twitter](https://twitter.com) | 331,511 | 724,490 s | 2185 ms |
634
- | [Google Analytics](https://marketingplatform.google.com/about/analytics/) | 4,492,386 | 507,048 s | 113 ms |
635
- | [Vimeo](https://vimeo.com/) | 141,109 | 401,820 s | 2848 ms |
636
- | [Weebly](https://www.weebly.com/) | 66,212 | 384,979 s | 5814 ms |
637
- | [Pubmatic](https://pubmatic.com/) | 221,339 | 370,370 s | 1673 ms |
638
- | [Cloudflare CDN](https://cdnjs.com/) | 618,006 | 317,591 s | 514 ms |
639
- | [Yandex CDN](https://yandex.ru/) | 172,717 | 296,239 s | 1715 ms |
640
- | [jQuery CDN](https://code.jquery.com/) | 713,886 | 272,882 s | 382 ms |
641
- | Medium | 19,673 | 237,122 s | 12053 ms |
642
- | [Shopify](https://www.shopify.com/) | 308,407 | 234,053 s | 759 ms |
643
- | [JSDelivr CDN](https://www.jsdelivr.com/) | 348,981 | 221,626 s | 635 ms |
644
- | [Rubicon Project](https://rubiconproject.com/) | 220,488 | 219,220 s | 994 ms |
645
- | [Hotjar](https://www.hotjar.com/) | 331,044 | 218,861 s | 661 ms |
646
- | [WordPress](https://wp.com/) | 311,129 | 200,823 s | 645 ms |
647
- | [POWr](https://www.powr.io) | 39,624 | 188,155 s | 4749 ms |
648
- | [Stripe](https://stripe.com) | 127,044 | 143,964 s | 1133 ms |
649
- | [Unpkg](https://unpkg.com) | 138,968 | 135,670 s | 976 ms |
650
- | [Webflow](https://webflow.com/) | 36,763 | 132,439 s | 3603 ms |
651
- | [Clarity](https://clarity.microsoft.com/) | 338,320 | 121,291 s | 359 ms |
652
- | [GoDaddy](https://www.godaddy.com/) | 122,066 | 114,510 s | 938 ms |
653
- | [ZenDesk](https://zendesk.com/) | 76,280 | 110,014 s | 1442 ms |
654
- | [TikTok](https://www.tiktok.com/en/) | 215,993 | 98,799 s | 457 ms |
655
- | [AMP](https://amp.dev/) | 88,558 | 93,307 s | 1054 ms |
656
- | [Tilda](https://tilda.cc/) | 69,936 | 92,012 s | 1316 ms |
657
- | Klaviyo | 142,926 | 89,711 s | 628 ms |
658
- | [Hatena Blog](https://hatenablog.com/) | 43,307 | 86,574 s | 1999 ms |
659
- | [Wistia](https://wistia.com/) | 26,714 | 85,121 s | 3186 ms |
660
- | [Hubspot](https://hubspot.com/) | 147,791 | 77,360 s | 523 ms |
661
- | Rambler | 16,907 | 68,383 s | 4045 ms |
662
- | [FontAwesome CDN](https://fontawesome.com/) | 310,436 | 67,992 s | 219 ms |
663
- | [WordAds](https://wordads.co/) | 102,326 | 66,936 s | 654 ms |
664
- | [Tray Commerce](https://www.tray.com.br/) | 13,869 | 64,152 s | 4626 ms |
665
- | [LiveChat](https://www.livechat.com/) | 39,613 | 62,598 s | 1580 ms |
666
- | [New Relic](https://newrelic.com/) | 234,387 | 61,136 s | 261 ms |
667
- | [VK](https://vk.com/) | 24,107 | 57,032 s | 2366 ms |
668
- | LiveJournal | 9,526 | 55,586 s | 5835 ms |
669
- | [Cookiebot](https://www.cookiebot.com/) | 171,303 | 52,714 s | 308 ms |
670
- | [Sentry](https://sentry.io/) | 89,800 | 51,840 s | 577 ms |
671
- | [Amazon Ads](https://ad.amazon.com/) | 178,313 | 51,283 s | 288 ms |
672
- | [Optanon](https://www.cookielaw.org/) | 114,644 | 50,519 s | 441 ms |
673
- | [PayPal](https://paypal.com) | 56,797 | 49,905 s | 879 ms |
674
- | [Tumblr](https://tumblr.com/) | 17,786 | 49,877 s | 2804 ms |
675
- | [Usercentrics CMP](https://usercentrics.com) | 47,735 | 48,617 s | 1018 ms |
676
- | Dailymotion | 5,423 | 47,289 s | 8720 ms |
677
- | Bigcommerce | 19,744 | 44,589 s | 2258 ms |
678
- | [Cloudflare](https://www.cloudflare.com/website-optimization/) | 348,270 | 43,646 s | 125 ms |
679
- | [Tawk.to](https://www.tawk.to/) | 110,838 | 40,919 s | 369 ms |
680
- | Kakao | 63,733 | 40,901 s | 642 ms |
681
- | [Mediavine](https://www.mediavine.com/) | 9,730 | 39,901 s | 4101 ms |
682
- | [Amazon Web Services](https://aws.amazon.com/s3/) | 104,820 | 39,268 s | 375 ms |
683
- | [Intercom](https://www.intercom.com) | 32,751 | 36,035 s | 1100 ms |
684
- | [Taboola](https://www.taboola.com/) | 50,480 | 36,029 s | 714 ms |
685
- | [Jivochat](https://www.jivochat.com/) | 55,524 | 35,373 s | 637 ms |
686
- | [Adobe TypeKit](https://fonts.adobe.com/) | 102,866 | 34,926 s | 340 ms |
687
- | [Adobe Tag Manager](https://www.adobe.com/experience-platform/) | 183,984 | 33,980 s | 185 ms |
688
- | Tynt | 162,031 | 33,579 s | 207 ms |
689
- | iubenda | 93,812 | 33,363 s | 356 ms |
690
- | [Yahoo! JAPAN Ads](https://marketing.yahoo.co.jp/service/yahooads/) | 53,919 | 30,387 s | 564 ms |
691
- | [ShareThis](https://www.sharethis.com/) | 88,925 | 30,084 s | 338 ms |
692
- | [Tidio Live Chat](https://www.tidiochat.com/en/) | 25,353 | 30,004 s | 1183 ms |
693
- | Azure Web Services | 43,334 | 29,328 s | 677 ms |
694
- | [Yandex APIs](https://yandex.ru/) | 44,655 | 27,736 s | 621 ms |
695
- | [Judge.me](https://judge.me/) | 28,108 | 27,415 s | 975 ms |
696
- | Skimbit | 81,338 | 26,509 s | 326 ms |
697
- | [Drift](https://www.drift.com/) | 5,811 | 24,893 s | 4284 ms |
698
- | Smart AdServer | 109,986 | 23,453 s | 213 ms |
699
- | [Blogger](https://www.blogger.com/) | 153,857 | 23,258 s | 151 ms |
700
- | [Media.net](https://www.media.net/) | 93,229 | 22,748 s | 244 ms |
701
- | [Mailchimp](https://mailchimp.com/) | 47,204 | 21,956 s | 465 ms |
702
- | [WebsiteBuilder.com](https://www.websitebuilder.com) | 4,817 | 21,119 s | 4384 ms |
703
- | [Freshchat](https://www.freshworks.com/live-chat-software/) | 6,686 | 20,523 s | 3069 ms |
704
- | [Snapchat](https://www.snapchat.com) | 49,940 | 19,609 s | 393 ms |
705
- | [Criteo](https://www.criteo.com/) | 165,842 | 19,584 s | 118 ms |
706
- | LinkedIn Ads | 187,285 | 19,550 s | 104 ms |
707
- | Esri ArcGIS | 3,412 | 19,004 s | 5570 ms |
708
- | [MGID](https://www.mgid.com/) | 9,908 | 18,983 s | 1916 ms |
709
- | [Pinterest](https://pinterest.com/) | 131,399 | 18,944 s | 144 ms |
710
- | [Yotpo](https://www.yotpo.com/) | 27,061 | 17,045 s | 630 ms |
711
- | [OneSignal](https://onesignal.com/) | 66,991 | 16,995 s | 254 ms |
712
- | [Sumo](https://sumo.com/) | 11,786 | 16,885 s | 1433 ms |
713
- | [ID5 Identity Cloud](https://id5.io/) | 65,666 | 15,838 s | 241 ms |
714
- | [Tealium](https://tealium.com/) | 27,489 | 15,289 s | 556 ms |
715
- | Fastly | 9,099 | 15,278 s | 1679 ms |
716
- | Heroku | 14,127 | 15,176 s | 1074 ms |
717
- | [Accessibe Accessibility Overlay](https://accessibe.com/) | 48,040 | 15,015 s | 313 ms |
718
- | [SoundCloud](https://www.soundcloud.com/) | 6,033 | 14,955 s | 2479 ms |
719
- | Embedly | 10,428 | 14,605 s | 1401 ms |
720
- | Yahoo! Ad Exchange | 4,858 | 14,446 s | 2974 ms |
721
- | [Brightcove](https://www.brightcove.com/en/) | 13,124 | 14,337 s | 1092 ms |
722
- | [Optimizely](https://www.optimizely.com/) | 15,596 | 13,368 s | 857 ms |
723
- | [Instagram](https://www.instagram.com) | 10,222 | 12,875 s | 1260 ms |
724
- | [CreateJS CDN](https://code.createjs.com/) | 4,377 | 12,852 s | 2936 ms |
725
- | Mapbox | 19,297 | 12,804 s | 663 ms |
726
- | [Integral Ad Science](https://integralads.com/uk/) | 15,169 | 12,543 s | 827 ms |
727
- | Privy | 19,432 | 12,293 s | 633 ms |
728
- | [Lucky Orange](https://www.luckyorange.com/) | 14,012 | 11,647 s | 831 ms |
729
- | Hexton | 32,051 | 11,298 s | 352 ms |
730
- | [Quantcast](https://www.quantcast.com) | 68,514 | 11,252 s | 164 ms |
731
- | [PIXNET](https://www.pixnet.net/) | 15,360 | 10,897 s | 709 ms |
732
- | Trust Pilot | 44,933 | 10,774 s | 240 ms |
733
- | Infolinks | 5,954 | 10,412 s | 1749 ms |
734
- | [Segment](https://segment.com/) | 27,196 | 10,055 s | 370 ms |
735
- | [Adroll](https://www.adroll.com/) | 31,186 | 9,998 s | 321 ms |
736
- | [Crazy Egg](https://www.crazyegg.com/) | 20,553 | 9,970 s | 485 ms |
737
- | Geniee | 14,510 | 9,883 s | 681 ms |
738
- | FullStory | 13,438 | 9,730 s | 724 ms |
739
- | [AddToAny](https://www.addtoany.com/) | 66,597 | 9,718 s | 146 ms |
740
- | Crowd Control | 70,113 | 9,656 s | 138 ms |
741
- | Cookie-Script.com | 41,414 | 9,397 s | 227 ms |
742
- | [Sizmek](https://www.sizmek.com/) | 5,738 | 9,060 s | 1579 ms |
743
- | [Olark](https://www.olark.com/) | 6,739 | 8,896 s | 1320 ms |
744
- | [Smartsupp](https://www.smartsupp.com) | 21,642 | 8,700 s | 402 ms |
745
- | [Snowplow](https://snowplowanalytics.com/) | 59,526 | 8,251 s | 139 ms |
746
- | Google reCAPTCHA | 27,115 | 8,234 s | 304 ms |
747
- | AudienceSearch | 51,541 | 8,028 s | 156 ms |
748
- | Inspectlet | 5,338 | 7,841 s | 1469 ms |
749
- | fluct | 22,281 | 7,606 s | 341 ms |
750
- | [Baidu Analytics](https://tongji.baidu.com/web/welcome/login) | 33,318 | 7,572 s | 227 ms |
751
- | CallRail | 28,866 | 7,122 s | 247 ms |
752
- | Amplitude Mobile Analytics | 36,223 | 7,074 s | 195 ms |
753
- | [Supership](https://supership.jp/) | 18,113 | 6,861 s | 379 ms |
754
- | [Bing Ads](https://bingads.microsoft.com) | 45,421 | 6,651 s | 146 ms |
755
- | [Twitch](https://twitch.tv/) | 1,450 | 6,551 s | 4518 ms |
756
- | SocialShopWave | 4,310 | 6,469 s | 1501 ms |
757
- | [Google Optimize](https://marketingplatform.google.com/about/optimize/) | 41,792 | 6,445 s | 154 ms |
758
- | [RD Station](https://www.rdstation.com/en/) | 21,042 | 6,440 s | 306 ms |
759
- | [LiveRamp Privacy Manager](https://liveramp.com/privacy-legal-compliance/) | 18,855 | 6,397 s | 339 ms |
760
- | OptiMonk | 10,492 | 6,365 s | 607 ms |
761
- | Trusted Shops | 17,034 | 6,281 s | 369 ms |
762
- | Calendly | 4,007 | 6,261 s | 1563 ms |
763
- | [Nielsen NetRatings SiteCensus](http://www.nielsen-online.com/intlpage.html) | 17,440 | 6,016 s | 345 ms |
764
- | [DoubleVerify](https://www.doubleverify.com/) | 4,740 | 5,550 s | 1171 ms |
765
- | StatCounter | 51,587 | 5,371 s | 104 ms |
766
- | Twitter Online Conversion Tracking | 68,128 | 5,356 s | 79 ms |
767
- | Bugsnag | 13,395 | 5,319 s | 397 ms |
768
- | issuu | 2,692 | 5,268 s | 1957 ms |
769
- | [LinkedIn](https://www.linkedin.com/) | 17,125 | 5,244 s | 306 ms |
770
- | Bold Commerce | 11,923 | 5,184 s | 435 ms |
771
- | Conversant | 46,153 | 5,168 s | 112 ms |
772
- | [VWO](https://vwo.com) | 8,018 | 5,119 s | 639 ms |
773
- | Heap | 13,234 | 4,991 s | 377 ms |
774
- | Ecwid | 5,521 | 4,818 s | 873 ms |
775
- | LongTail Ad Solutions | 6,143 | 4,766 s | 776 ms |
776
- | Adyen | 2,322 | 4,765 s | 2052 ms |
777
- | [Pendo](https://www.pendo.io) | 13,333 | 4,757 s | 357 ms |
778
- | [Attentive](https://attentivemobile.com/) | 9,166 | 4,708 s | 514 ms |
779
- | Microsoft Hosted Libs | 19,679 | 4,421 s | 225 ms |
780
- | Technorati | 22,378 | 4,311 s | 193 ms |
781
- | uLogin | 1,427 | 4,171 s | 2923 ms |
782
- | VigLink | 6,674 | 4,146 s | 621 ms |
783
- | Forter | 4,345 | 4,097 s | 943 ms |
784
- | [Scorecard Research](https://www.scorecardresearch.com/) | 46,696 | 4,065 s | 87 ms |
785
- | [Yandex Ads](https://yandex.com/adv/) | 8,817 | 4,055 s | 460 ms |
786
- | [Moat](https://moat.com/) | 3,861 | 4,011 s | 1039 ms |
787
- | Index Exchange | 33,560 | 3,974 s | 118 ms |
788
- | reddit | 16,277 | 3,875 s | 238 ms |
789
- | Signyfyd | 2,567 | 3,839 s | 1495 ms |
790
- | [AppNexus](https://www.appnexus.com/) | 177,948 | 3,835 s | 22 ms |
791
- | Dynatrace | 3,420 | 3,835 s | 1121 ms |
792
- | [Seedtag](https://www.seedtag.com/) | 2,513 | 3,783 s | 1505 ms |
793
- | [Hotmart](https://www.hotmart.com/) | 4,014 | 3,718 s | 926 ms |
794
- | [WordPress Site Stats](https://wp.com/) | 64,925 | 3,615 s | 56 ms |
795
- | Dynamic Yield | 1,860 | 3,614 s | 1943 ms |
796
- | LINE Corporation | 24,991 | 3,437 s | 138 ms |
797
- | LoyaltyLion | 4,213 | 3,434 s | 815 ms |
798
- | [AdScore](https://www.adscore.com/) | 4,378 | 3,374 s | 771 ms |
799
- | [Mixpanel](https://mixpanel.com/) | 20,441 | 3,329 s | 163 ms |
800
- | Affirm | 6,594 | 3,294 s | 500 ms |
801
- | IPONWEB | 19,682 | 3,236 s | 164 ms |
802
- | ContentSquare | 3,541 | 3,229 s | 912 ms |
803
- | [mPulse](https://developer.akamai.com/akamai-mpulse) | 32,660 | 3,196 s | 98 ms |
804
- | GumGum | 123,913 | 3,128 s | 25 ms |
805
- | [AppDynamics](https://www.appdynamics.com/) | 3,419 | 3,100 s | 907 ms |
806
- | [Disqus](https://disqus.com/) | 1,135 | 3,092 s | 2724 ms |
807
- | GitHub | 6,970 | 3,026 s | 434 ms |
808
- | Intercept Interactive | 18,824 | 3,004 s | 160 ms |
809
- | [Akamai](https://www.akamai.com/) | 9,228 | 2,740 s | 297 ms |
810
- | Sonobi | 54,964 | 2,739 s | 50 ms |
811
- | [Luigis Box](https://www.luigisbox.com/) | 2,210 | 2,690 s | 1217 ms |
812
- | [fam](http://admin.fam-ad.com/report/) | 747 | 2,660 s | 3561 ms |
813
- | WisePops | 2,044 | 2,536 s | 1241 ms |
814
- | Gigya | 2,032 | 2,525 s | 1243 ms |
815
- | LightWidget | 11,137 | 2,513 s | 226 ms |
816
- | Secomapp | 2,220 | 2,446 s | 1102 ms |
817
- | [33 Across](https://33across.com/) | 143,025 | 2,443 s | 17 ms |
818
- | SnapWidget | 13,527 | 2,415 s | 179 ms |
819
- | [Outbrain](https://www.outbrain.com/) | 11,439 | 2,405 s | 210 ms |
820
- | [Matomo](https://matomo.org/) | 12,297 | 2,396 s | 195 ms |
821
- | Rackspace | 1,880 | 2,377 s | 1264 ms |
822
- | Gemius | 15,825 | 2,360 s | 149 ms |
636
+ | [Google Tag Manager](https://marketingplatform.google.com/about/tag-manager/) | 8,124,119 | 6,770,913 s | 833 ms |
637
+ | [YouTube](https://youtube.com) | 977,311 | 6,277,580 s | 6423 ms |
638
+ | [Google CDN](https://developers.google.com/speed/libraries/) | 3,192,326 | 4,805,631 s | 1505 ms |
639
+ | [Google/Doubleclick Ads](https://marketingplatform.google.com/about/enterprise/) | 1,232,210 | 3,224,312 s | 2617 ms |
640
+ | [Wix](https://www.wix.com/) | 458,273 | 2,112,269 s | 4609 ms |
641
+ | [Yandex Metrica](https://metrica.yandex.com/about?) | 602,136 | 1,438,545 s | 2389 ms |
642
+ | [Other Google APIs/SDKs](https://developers.google.com/apis-explorer/#p/) | 2,638,940 | 1,158,368 s | 439 ms |
643
+ | [Squarespace](https://www.squarespace.com/) | 243,154 | 1,106,480 s | 4551 ms |
644
+ | [Facebook](https://www.facebook.com) | 3,157,799 | 1,097,107 s | 347 ms |
645
+ | [Google Maps](https://www.google.com/maps) | 1,195,850 | 904,393 s | 756 ms |
646
+ | [Twitter](https://twitter.com) | 319,957 | 804,233 s | 2514 ms |
647
+ | [Google Analytics](https://marketingplatform.google.com/about/analytics/) | 4,231,882 | 495,650 s | 117 ms |
648
+ | [Pubmatic](https://pubmatic.com/) | 279,418 | 417,694 s | 1495 ms |
649
+ | [Weebly](https://www.weebly.com/) | 67,864 | 413,019 s | 6086 ms |
650
+ | [Cloudflare CDN](https://cdnjs.com/) | 666,628 | 337,711 s | 507 ms |
651
+ | [jQuery CDN](https://code.jquery.com/) | 724,477 | 302,334 s | 417 ms |
652
+ | [Shopify](https://www.shopify.com/) | 338,668 | 287,429 s | 849 ms |
653
+ | [Rubicon Project](https://rubiconproject.com/) | 270,271 | 287,111 s | 1062 ms |
654
+ | [Vimeo](https://vimeo.com/) | 120,397 | 263,944 s | 2192 ms |
655
+ | [JSDelivr CDN](https://www.jsdelivr.com/) | 399,959 | 260,364 s | 651 ms |
656
+ | [Google FundingChoices](https://fundingchoices.google.com/start/) | 400,016 | 257,806 s | 644 ms |
657
+ | [Hotjar](https://www.hotjar.com/) | 333,356 | 241,418 s | 724 ms |
658
+ | [WordPress](https://wp.com/) | 308,694 | 220,911 s | 716 ms |
659
+ | Medium | 17,027 | 216,923 s | 12740 ms |
660
+ | [Clarity](https://clarity.microsoft.com/) | 456,309 | 208,825 s | 458 ms |
661
+ | [POWr](https://www.powr.io) | 39,716 | 191,535 s | 4823 ms |
662
+ | [Stripe](https://stripe.com) | 136,440 | 166,355 s | 1219 ms |
663
+ | [Wistia](https://wistia.com/) | 27,059 | 115,722 s | 4277 ms |
664
+ | Klaviyo | 161,289 | 113,130 s | 701 ms |
665
+ | [TikTok](https://www.tiktok.com/en/) | 256,224 | 111,182 s | 434 ms |
666
+ | [ZenDesk](https://zendesk.com/) | 72,537 | 106,701 s | 1471 ms |
667
+ | [Hatena Blog](https://hatenablog.com/) | 43,183 | 106,338 s | 2462 ms |
668
+ | [Amazon Ads](https://ad.amazon.com/) | 240,331 | 98,704 s | 411 ms |
669
+ | [Tilda](https://tilda.cc/) | 70,321 | 94,734 s | 1347 ms |
670
+ | [GoDaddy](https://www.godaddy.com/) | 110,342 | 94,698 s | 858 ms |
671
+ | [Hubspot](https://hubspot.com/) | 154,415 | 92,224 s | 597 ms |
672
+ | [VK](https://vk.com/) | 22,377 | 91,334 s | 4082 ms |
673
+ | [Integral Ad Science](https://integralads.com/uk/) | 21,660 | 88,554 s | 4088 ms |
674
+ | [Didomi](https://www.didomi.io/) | 84,206 | 85,132 s | 1011 ms |
675
+ | [AMP](https://amp.dev/) | 66,265 | 79,591 s | 1201 ms |
676
+ | [Adobe TypeKit](https://fonts.adobe.com/) | 119,621 | 78,982 s | 660 ms |
677
+ | [WordAds](https://wordads.co/) | 100,449 | 74,286 s | 740 ms |
678
+ | [FontAwesome CDN](https://fontawesome.com/) | 291,586 | 73,007 s | 250 ms |
679
+ | iubenda | 97,074 | 69,911 s | 720 ms |
680
+ | [Tray Commerce](https://www.tray.com.br/) | 14,071 | 68,362 s | 4858 ms |
681
+ | [Cookiebot](https://www.cookiebot.com/) | 187,732 | 64,865 s | 346 ms |
682
+ | [New Relic](https://newrelic.com/) | 227,672 | 64,593 s | 284 ms |
683
+ | [PayPal](https://paypal.com) | 62,800 | 64,408 s | 1026 ms |
684
+ | LiveJournal | 9,109 | 63,532 s | 6975 ms |
685
+ | [Mediavine](https://www.mediavine.com/) | 12,963 | 59,009 s | 4552 ms |
686
+ | [Cloudflare](https://www.cloudflare.com/website-optimization/) | 467,719 | 58,723 s | 126 ms |
687
+ | [Blogger](https://www.blogger.com/) | 213,326 | 58,390 s | 274 ms |
688
+ | Dailymotion | 5,142 | 56,076 s | 10905 ms |
689
+ | [Optanon](https://www.cookielaw.org/) | 113,700 | 55,293 s | 486 ms |
690
+ | Rambler | 15,831 | 54,521 s | 3444 ms |
691
+ | [Usercentrics CMP](https://usercentrics.com) | 49,602 | 53,009 s | 1069 ms |
692
+ | [Amazon Web Services](https://aws.amazon.com/s3/) | 119,152 | 51,892 s | 436 ms |
693
+ | [LiveChat](https://www.livechat.com/) | 39,034 | 49,171 s | 1260 ms |
694
+ | [Sentry](https://sentry.io/) | 85,598 | 47,937 s | 560 ms |
695
+ | [DoubleVerify](https://www.doubleverify.com/) | 19,453 | 46,891 s | 2410 ms |
696
+ | Bigcommerce | 19,595 | 45,748 s | 2335 ms |
697
+ | [Tumblr](https://tumblr.com/) | 18,114 | 45,571 s | 2516 ms |
698
+ | [Intercom](https://www.intercom.com) | 35,197 | 44,601 s | 1267 ms |
699
+ | [Tawk.to](https://www.tawk.to/) | 111,088 | 43,075 s | 388 ms |
700
+ | Tynt | 212,415 | 41,644 s | 196 ms |
701
+ | [Yandex APIs](https://yandex.ru/) | 51,601 | 40,765 s | 790 ms |
702
+ | Kakao | 62,730 | 38,351 s | 611 ms |
703
+ | [Jivochat](https://www.jivochat.com/) | 57,540 | 36,664 s | 637 ms |
704
+ | Azure Web Services | 51,378 | 35,665 s | 694 ms |
705
+ | [Adobe Tag Manager](https://www.adobe.com/experience-platform/) | 200,160 | 34,938 s | 175 ms |
706
+ | Skimbit | 86,270 | 32,940 s | 382 ms |
707
+ | [Taboola](https://www.taboola.com/) | 49,191 | 32,632 s | 663 ms |
708
+ | [Instagram](https://www.instagram.com) | 20,376 | 31,988 s | 1570 ms |
709
+ | [Judge.me](https://judge.me/) | 27,483 | 31,887 s | 1160 ms |
710
+ | [ShareThis](https://www.sharethis.com/) | 88,829 | 30,808 s | 347 ms |
711
+ | [Drift](https://www.drift.com/) | 5,515 | 30,180 s | 5472 ms |
712
+ | [Crazy Egg](https://www.crazyegg.com/) | 43,822 | 27,593 s | 630 ms |
713
+ | [Tidio Live Chat](https://www.tidiochat.com/en/) | 24,598 | 26,585 s | 1081 ms |
714
+ | [ID5 Identity Cloud](https://id5.io/) | 119,336 | 26,134 s | 219 ms |
715
+ | [Criteo](https://www.criteo.com/) | 213,880 | 25,625 s | 120 ms |
716
+ | [Media.net](https://www.media.net/) | 97,679 | 24,974 s | 256 ms |
717
+ | InMobi | 126,087 | 24,607 s | 195 ms |
718
+ | [Freshchat](https://www.freshworks.com/live-chat-software/) | 7,081 | 23,350 s | 3298 ms |
719
+ | LinkedIn Ads | 199,088 | 22,806 s | 115 ms |
720
+ | Smart AdServer | 107,812 | 22,357 s | 207 ms |
721
+ | [MGID](https://www.mgid.com/) | 10,437 | 22,074 s | 2115 ms |
722
+ | Esri ArcGIS | 3,432 | 21,968 s | 6401 ms |
723
+ | [Mailchimp](https://mailchimp.com/) | 45,506 | 21,592 s | 474 ms |
724
+ | Fastly | 9,582 | 21,362 s | 2229 ms |
725
+ | [Tealium](https://tealium.com/) | 75,434 | 20,177 s | 267 ms |
726
+ | [WebsiteBuilder.com](https://www.websitebuilder.com) | 4,688 | 19,568 s | 4174 ms |
727
+ | [PIXNET](https://www.pixnet.net/) | 13,718 | 18,541 s | 1352 ms |
728
+ | [Twitch](https://twitch.tv/) | 1,255 | 18,453 s | 14703 ms |
729
+ | [OneSignal](https://onesignal.com/) | 68,282 | 17,761 s | 260 ms |
730
+ | [Pinterest](https://pinterest.com/) | 131,448 | 17,602 s | 134 ms |
731
+ | Geniee | 16,354 | 16,956 s | 1037 ms |
732
+ | [Yotpo](https://www.yotpo.com/) | 26,094 | 16,919 s | 648 ms |
733
+ | [Sumo](https://sumo.com/) | 10,901 | 16,490 s | 1513 ms |
734
+ | Crowd Control | 101,196 | 16,299 s | 161 ms |
735
+ | [SoundCloud](https://www.soundcloud.com/) | 5,859 | 15,889 s | 2712 ms |
736
+ | [Hotmart](https://www.hotmart.com/) | 4,554 | 15,363 s | 3374 ms |
737
+ | [Brightcove](https://www.brightcove.com/en/) | 13,745 | 15,100 s | 1099 ms |
738
+ | Cookie-Script.com | 58,095 | 15,052 s | 259 ms |
739
+ | Privy | 18,961 | 14,993 s | 791 ms |
740
+ | Trust Pilot | 54,942 | 14,795 s | 269 ms |
741
+ | Microad | 23,909 | 14,627 s | 612 ms |
742
+ | [Bing Ads](https://bingads.microsoft.com) | 117,720 | 14,227 s | 121 ms |
743
+ | Mapbox | 19,555 | 13,816 s | 707 ms |
744
+ | [CreateJS CDN](https://code.createjs.com/) | 3,880 | 13,654 s | 3519 ms |
745
+ | [Lucky Orange](https://www.luckyorange.com/) | 16,442 | 12,779 s | 777 ms |
746
+ | Yahoo! Ad Exchange | 4,994 | 12,721 s | 2547 ms |
747
+ | Heroku | 14,119 | 12,603 s | 893 ms |
748
+ | [Optimizely](https://www.optimizely.com/) | 15,998 | 12,600 s | 788 ms |
749
+ | [Quantcast](https://www.quantcast.com) | 77,646 | 12,419 s | 160 ms |
750
+ | [Adroll](https://www.adroll.com/) | 30,782 | 11,884 s | 386 ms |
751
+ | FullStory | 14,687 | 11,575 s | 788 ms |
752
+ | [Segment](https://segment.com/) | 27,036 | 11,055 s | 409 ms |
753
+ | [Supership](https://supership.jp/) | 17,934 | 10,809 s | 603 ms |
754
+ | Hexton | 24,738 | 10,807 s | 437 ms |
755
+ | [AddToAny](https://www.addtoany.com/) | 66,065 | 10,606 s | 161 ms |
756
+ | OptiMonk | 10,615 | 10,318 s | 972 ms |
757
+ | [33 Across](https://33across.com/) | 192,648 | 10,002 s | 52 ms |
758
+ | [Smartsupp](https://www.smartsupp.com) | 21,505 | 9,998 s | 465 ms |
759
+ | [Olark](https://www.olark.com/) | 6,534 | 9,841 s | 1506 ms |
760
+ | [Google Optimize](https://marketingplatform.google.com/about/optimize/) | 38,797 | 9,330 s | 240 ms |
761
+ | AudienceSearch | 46,726 | 9,115 s | 195 ms |
762
+ | IPONWEB | 39,154 | 8,925 s | 228 ms |
763
+ | Amplitude Mobile Analytics | 46,524 | 8,704 s | 187 ms |
764
+ | Google reCAPTCHA | 25,662 | 8,694 s | 339 ms |
765
+ | Calendly | 4,604 | 8,623 s | 1873 ms |
766
+ | [WordPress Site Stats](https://wp.com/) | 128,931 | 8,574 s | 66 ms |
767
+ | CallRail | 29,537 | 8,080 s | 274 ms |
768
+ | Infolinks | 5,950 | 7,995 s | 1344 ms |
769
+ | [Baidu Analytics](https://tongji.baidu.com/web/welcome/login) | 32,612 | 7,739 s | 237 ms |
770
+ | [RD Station](https://www.rdstation.com/en/) | 21,846 | 7,694 s | 352 ms |
771
+ | Inspectlet | 5,346 | 7,622 s | 1426 ms |
772
+ | Trusted Shops | 17,267 | 7,374 s | 427 ms |
773
+ | GitHub | 14,675 | 7,126 s | 486 ms |
774
+ | [Snowplow](https://snowplowanalytics.com/) | 58,566 | 7,099 s | 121 ms |
775
+ | [Ad Lightning](https://www.adlightning.com/) | 3,795 | 6,879 s | 1813 ms |
776
+ | [Nielsen NetRatings SiteCensus](http://www.nielsen-online.com/intlpage.html) | 19,525 | 6,840 s | 350 ms |
777
+ | Connatix | 1,195 | 6,751 s | 5650 ms |
778
+ | [Sizmek](https://www.sizmek.com/) | 4,307 | 6,680 s | 1551 ms |
779
+ | Forter | 6,930 | 6,579 s | 949 ms |
780
+ | [LiveRamp Privacy Manager](https://liveramp.com/privacy-legal-compliance/) | 22,295 | 6,546 s | 294 ms |
781
+ | Conversant | 54,802 | 6,532 s | 119 ms |
782
+ | [VWO](https://vwo.com) | 7,903 | 6,485 s | 821 ms |
783
+ | Adyen | 2,363 | 6,335 s | 2681 ms |
784
+ | [OpenX](https://www.openx.com/) | 76,561 | 6,275 s | 82 ms |
785
+ | [Yahoo! JAPAN Ads](https://marketing.yahoo.co.jp/service/yahooads/) | 37,464 | 6,237 s | 166 ms |
786
+ | Bugsnag | 15,069 | 6,198 s | 411 ms |
787
+ | Twitter Online Conversion Tracking | 73,452 | 6,171 s | 84 ms |
788
+ | [AppNexus](https://www.appnexus.com/) | 234,133 | 5,949 s | 25 ms |
789
+ | [LinkedIn](https://www.linkedin.com/) | 16,507 | 5,777 s | 350 ms |
790
+ | issuu | 2,714 | 5,608 s | 2066 ms |
791
+ | [Attentive](https://attentivemobile.com/) | 9,099 | 5,555 s | 610 ms |
792
+ | StatCounter | 50,769 | 5,427 s | 107 ms |
793
+ | Technorati | 27,186 | 5,383 s | 198 ms |
794
+ | Heap | 12,078 | 5,188 s | 430 ms |
795
+ | [Yandex Ads](https://yandex.com/adv/) | 8,488 | 5,172 s | 609 ms |
796
+ | fluct | 12,890 | 5,114 s | 397 ms |
797
+ | Bold Commerce | 9,886 | 5,073 s | 513 ms |
798
+ | Embedly | 10,836 | 5,014 s | 463 ms |
799
+ | SocialShopWave | 3,720 | 4,962 s | 1334 ms |
800
+ | [Pendo](https://www.pendo.io) | 12,203 | 4,935 s | 404 ms |
801
+ | Qualtrics | 7,134 | 4,907 s | 688 ms |
802
+ | Key CDN | 10,025 | 4,815 s | 480 ms |
803
+ | [Akamai](https://www.akamai.com/) | 9,820 | 4,796 s | 488 ms |
804
+ | Signyfyd | 2,608 | 4,753 s | 1822 ms |
805
+ | Sonobi | 81,682 | 4,682 s | 57 ms |
806
+ | Microsoft Hosted Libs | 20,042 | 4,562 s | 228 ms |
807
+ | LongTail Ad Solutions | 5,572 | 4,531 s | 813 ms |
808
+ | [Scorecard Research](https://www.scorecardresearch.com/) | 54,577 | 4,399 s | 81 ms |
809
+ | Onfocus | 8,836 | 4,241 s | 480 ms |
810
+ | reddit | 18,483 | 4,114 s | 223 ms |
811
+ | Dynatrace | 3,221 | 4,107 s | 1275 ms |
812
+ | Affirm | 6,665 | 3,997 s | 600 ms |
813
+ | LINE Corporation | 26,881 | 3,858 s | 144 ms |
814
+ | Ecwid | 4,362 | 3,757 s | 861 ms |
815
+ | i-mobile | 16,595 | 3,701 s | 223 ms |
816
+ | [Disqus](https://disqus.com/) | 1,775 | 3,697 s | 2083 ms |
817
+ | [Brandmetrics](https://www.brandmetrics.com) | 30,850 | 3,690 s | 120 ms |
818
+ | VigLink | 6,219 | 3,670 s | 590 ms |
819
+ | ContentSquare | 2,948 | 3,627 s | 1230 ms |
820
+ | Dynamic Yield | 1,843 | 3,580 s | 1943 ms |
821
+ | Rackspace | 2,624 | 3,573 s | 1362 ms |
822
+ | GumGum | 167,535 | 3,441 s | 21 ms |
823
+ | TrafficStars | 7,430 | 3,435 s | 462 ms |
824
+ | [Outbrain](https://www.outbrain.com/) | 13,287 | 3,374 s | 254 ms |
825
+ | [Seedtag](https://www.seedtag.com/) | 1,503 | 3,343 s | 2224 ms |
826
+ | Datacamp | 1,181 | 3,304 s | 2797 ms |
827
+ | [Mixpanel](https://mixpanel.com/) | 18,817 | 3,251 s | 173 ms |
828
+ | Conversion Labs | 1,898 | 3,243 s | 1709 ms |
829
+ | [Matomo](https://matomo.org/) | 14,345 | 3,115 s | 217 ms |
830
+ | [mPulse](https://developer.akamai.com/akamai-mpulse) | 30,624 | 3,090 s | 101 ms |
831
+ | [Luigis Box](https://www.luigisbox.com/) | 2,356 | 2,975 s | 1263 ms |
832
+ | LoyaltyLion | 4,114 | 2,972 s | 722 ms |
833
+ | Gemius | 15,596 | 2,965 s | 190 ms |
834
+ | Unbounce | 8,808 | 2,902 s | 330 ms |
835
+ | Civic | 7,253 | 2,816 s | 388 ms |
823
836
 
824
837
  ## Future Work
825
838