chrome-devtools-frontend 1.0.1386602 → 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 (2535) hide show
  1. package/.git-blame-ignore-revs +8 -0
  2. package/.stylelintrc.json +1 -3
  3. package/.vscode/devtools-workspace-launch.json +13 -31
  4. package/.vscode/devtools-workspace-settings.json +2 -4
  5. package/.vscode/devtools-workspace-tasks.json +5 -4
  6. package/AUTHORS +4 -1
  7. package/config/gni/devtools_grd_files.gni +134 -114
  8. package/config/gni/devtools_image_files.gni +18 -1
  9. package/config/owner/INFRA_OWNERS +1 -0
  10. package/config/typescript/tsconfig.eslint.json +2 -1
  11. package/docs/README.md +5 -0
  12. package/docs/contributing/issues.md +1 -1
  13. package/docs/cookbook/localization.md +1 -1
  14. package/docs/get_the_code.md +0 -17
  15. package/docs/playbook.md +176 -0
  16. package/docs/policy/README.md +1 -0
  17. package/docs/policy/gar-page-zoom-policy.md +43 -0
  18. package/docs/policy/images/devtools-gar-testing.png +0 -0
  19. package/docs/policy/images/docked-devtools.webp +0 -0
  20. package/docs/policy/images/undocked-devtools.png +0 -0
  21. package/docs/styleguide/ux/README.md +1 -0
  22. package/docs/styleguide/ux/components.md +150 -22
  23. package/docs/styleguide/ux/images/combo-box-variations.png +0 -0
  24. package/docs/styleguide/ux/images/radio-buttons-variations.png +0 -0
  25. package/docs/styleguide/ux/images/sliders-variations.png +0 -0
  26. package/docs/styleguide/ux/patterns.md +87 -0
  27. package/docs/styleguide/ux/styles.md +40 -7
  28. package/eslint.config.mjs +746 -0
  29. package/extension-api/ExtensionAPI.d.ts +22 -0
  30. package/extensions/cxx_debugging/e2e/TestDriver.ts +1 -3
  31. package/extensions/cxx_debugging/e2e/cxx-debugging-extension-helpers.ts +1 -0
  32. package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +0 -1
  33. package/extensions/cxx_debugging/src/CreditsItem.ts +5 -6
  34. package/extensions/cxx_debugging/src/CustomFormatters.ts +4 -4
  35. package/extensions/cxx_debugging/src/DWARFSymbols.ts +10 -10
  36. package/extensions/cxx_debugging/src/DevToolsPluginHost.ts +6 -6
  37. package/extensions/cxx_debugging/src/DevToolsPluginWorker.ts +3 -6
  38. package/extensions/cxx_debugging/src/DevToolsPluginWorkerMain.ts +1 -0
  39. package/extensions/cxx_debugging/src/ExtensionOptions.ts +6 -10
  40. package/extensions/cxx_debugging/src/Formatters.ts +15 -8
  41. package/extensions/cxx_debugging/src/MEMFSResourceLoader.ts +7 -7
  42. package/extensions/cxx_debugging/src/ModuleConfiguration.ts +6 -6
  43. package/extensions/cxx_debugging/src/ModuleConfigurationList.ts +4 -4
  44. package/extensions/cxx_debugging/src/WasmTypes.ts +21 -11
  45. package/extensions/cxx_debugging/src/WorkerRPC.ts +3 -4
  46. package/extensions/cxx_debugging/src/rollup.config.in.js +1 -3
  47. package/extensions/cxx_debugging/tests/CreditsItem_test.ts +2 -3
  48. package/extensions/cxx_debugging/tests/DevToolsPluginTestWorker.ts +4 -4
  49. package/extensions/cxx_debugging/tests/DevToolsPlugin_test.ts +12 -12
  50. package/extensions/cxx_debugging/tests/Externref_test.ts +3 -6
  51. package/extensions/cxx_debugging/tests/Formatters_test.ts +4 -3
  52. package/extensions/cxx_debugging/tests/Interpreter_test.ts +1 -1
  53. package/extensions/cxx_debugging/tests/RealBackend.ts +9 -9
  54. package/extensions/cxx_debugging/tests/SymbolsBackend_test.ts +31 -29
  55. package/extensions/cxx_debugging/tests/TestUtils.ts +8 -7
  56. package/extensions/cxx_debugging/tests/inputs/externref.js +14 -4
  57. package/extensions/cxx_debugging/tests/inputs/page.js +3 -1
  58. package/front_end/Images/generate-css-vars.js +1 -0
  59. package/front_end/Images/rollup.config.mjs +0 -1
  60. package/front_end/Images/src/account-tree.svg +1 -0
  61. package/front_end/Images/src/arrow-collapse.svg +3 -0
  62. package/front_end/Images/src/arrow-drop-down.svg +3 -0
  63. package/front_end/Images/src/compress.svg +8 -0
  64. package/front_end/Images/src/devtools-thumbnail.svg +57 -0
  65. package/front_end/Images/src/devtools-tips.svg +61 -0
  66. package/front_end/Images/src/difference.svg +3 -0
  67. package/front_end/Images/src/global.svg +5 -0
  68. package/front_end/Images/src/grid-on.svg +10 -0
  69. package/front_end/Images/src/keyboard-full.svg +10 -0
  70. package/front_end/Images/src/label.svg +10 -0
  71. package/front_end/Images/src/node-stack-icon.svg +1 -0
  72. package/front_end/Images/src/override.svg +11 -0
  73. package/front_end/Images/src/palette.svg +10 -0
  74. package/front_end/Images/src/photo-camera.svg +10 -0
  75. package/front_end/Images/src/terminal.svg +10 -0
  76. package/front_end/Images/src/tonality.svg +10 -0
  77. package/front_end/Images/src/whatsnew.svg +61 -0
  78. package/front_end/Tests.js +28 -41
  79. package/front_end/application_tokens.css +407 -0
  80. package/front_end/core/common/Base64.test.ts +3 -3
  81. package/front_end/core/common/CharacterIdMap.test.ts +1 -1
  82. package/front_end/core/common/Color.ts +8 -0
  83. package/front_end/core/common/ColorUtils.test.ts +2 -2
  84. package/front_end/core/common/Console.test.ts +7 -7
  85. package/front_end/core/common/Console.ts +3 -3
  86. package/front_end/core/common/EventTarget.test.ts +7 -7
  87. package/front_end/core/common/EventTarget.ts +3 -3
  88. package/front_end/core/common/Lazy.test.ts +12 -14
  89. package/front_end/core/common/MapWithDefault.test.ts +61 -0
  90. package/front_end/core/common/MapWithDefault.ts +24 -0
  91. package/front_end/core/common/ParsedURL.test.ts +38 -42
  92. package/front_end/core/common/ParsedURL.ts +1 -1
  93. package/front_end/core/common/Progress.test.ts +7 -7
  94. package/front_end/core/common/ResolverBase.test.ts +3 -3
  95. package/front_end/core/common/ResolverBase.ts +2 -7
  96. package/front_end/core/common/ResourceType.test.ts +22 -26
  97. package/front_end/core/common/Revealer.ts +5 -0
  98. package/front_end/core/common/SettingRegistration.test.ts +3 -5
  99. package/front_end/core/common/SettingRegistration.ts +1 -1
  100. package/front_end/core/common/Settings.ts +13 -13
  101. package/front_end/core/common/Throttler.ts +3 -3
  102. package/front_end/core/common/common.ts +4 -3
  103. package/front_end/core/dom_extension/DOMExtension.test.ts +38 -41
  104. package/front_end/core/dom_extension/DOMExtension.ts +5 -4
  105. package/front_end/core/host/AidaClient.test.ts +106 -39
  106. package/front_end/core/host/AidaClient.ts +152 -34
  107. package/front_end/core/host/InspectorFrontendHost.ts +21 -5
  108. package/front_end/core/host/InspectorFrontendHostAPI.ts +33 -38
  109. package/front_end/core/host/ResourceLoader.ts +1 -1
  110. package/front_end/core/host/UserMetrics.ts +125 -185
  111. package/front_end/core/i18n/collect-ui-strings.js +5 -4
  112. package/front_end/core/i18n/generate-locales-js.js +4 -2
  113. package/front_end/core/i18n/i18n.test.ts +45 -0
  114. package/front_end/core/i18n/i18nImpl.ts +1 -1
  115. package/front_end/core/i18n/i18nTypes.ts +3 -3
  116. package/front_end/core/i18n/locales/af.json +848 -518
  117. package/front_end/core/i18n/locales/am.json +857 -527
  118. package/front_end/core/i18n/locales/ar.json +864 -534
  119. package/front_end/core/i18n/locales/as.json +853 -523
  120. package/front_end/core/i18n/locales/az.json +856 -526
  121. package/front_end/core/i18n/locales/be.json +854 -524
  122. package/front_end/core/i18n/locales/bg.json +844 -514
  123. package/front_end/core/i18n/locales/bn.json +851 -521
  124. package/front_end/core/i18n/locales/bs.json +861 -531
  125. package/front_end/core/i18n/locales/ca.json +851 -521
  126. package/front_end/core/i18n/locales/cs.json +854 -524
  127. package/front_end/core/i18n/locales/cy.json +849 -519
  128. package/front_end/core/i18n/locales/da.json +850 -520
  129. package/front_end/core/i18n/locales/de.json +848 -518
  130. package/front_end/core/i18n/locales/el.json +851 -521
  131. package/front_end/core/i18n/locales/en-GB.json +845 -515
  132. package/front_end/core/i18n/locales/es-419.json +847 -517
  133. package/front_end/core/i18n/locales/es.json +847 -517
  134. package/front_end/core/i18n/locales/et.json +843 -513
  135. package/front_end/core/i18n/locales/eu.json +861 -531
  136. package/front_end/core/i18n/locales/fa.json +860 -530
  137. package/front_end/core/i18n/locales/fi.json +848 -518
  138. package/front_end/core/i18n/locales/fil.json +849 -519
  139. package/front_end/core/i18n/locales/fr-CA.json +849 -519
  140. package/front_end/core/i18n/locales/fr.json +849 -519
  141. package/front_end/core/i18n/locales/gl.json +852 -522
  142. package/front_end/core/i18n/locales/gu.json +846 -516
  143. package/front_end/core/i18n/locales/he.json +867 -537
  144. package/front_end/core/i18n/locales/hi.json +853 -523
  145. package/front_end/core/i18n/locales/hr.json +854 -524
  146. package/front_end/core/i18n/locales/hu.json +848 -518
  147. package/front_end/core/i18n/locales/hy.json +850 -520
  148. package/front_end/core/i18n/locales/id.json +849 -519
  149. package/front_end/core/i18n/locales/is.json +850 -520
  150. package/front_end/core/i18n/locales/it.json +852 -522
  151. package/front_end/core/i18n/locales/ja.json +844 -514
  152. package/front_end/core/i18n/locales/ka.json +847 -517
  153. package/front_end/core/i18n/locales/kk.json +850 -520
  154. package/front_end/core/i18n/locales/km.json +853 -523
  155. package/front_end/core/i18n/locales/kn.json +857 -527
  156. package/front_end/core/i18n/locales/ko.json +850 -520
  157. package/front_end/core/i18n/locales/ky.json +846 -516
  158. package/front_end/core/i18n/locales/lo.json +851 -521
  159. package/front_end/core/i18n/locales/lt.json +845 -515
  160. package/front_end/core/i18n/locales/lv.json +849 -519
  161. package/front_end/core/i18n/locales/mk.json +851 -521
  162. package/front_end/core/i18n/locales/ml.json +850 -520
  163. package/front_end/core/i18n/locales/mn.json +860 -530
  164. package/front_end/core/i18n/locales/mr.json +852 -522
  165. package/front_end/core/i18n/locales/ms.json +848 -518
  166. package/front_end/core/i18n/locales/my.json +857 -527
  167. package/front_end/core/i18n/locales/ne.json +857 -527
  168. package/front_end/core/i18n/locales/nl.json +847 -517
  169. package/front_end/core/i18n/locales/no.json +848 -518
  170. package/front_end/core/i18n/locales/or.json +969 -639
  171. package/front_end/core/i18n/locales/pa.json +850 -520
  172. package/front_end/core/i18n/locales/pl.json +849 -519
  173. package/front_end/core/i18n/locales/pt-PT.json +850 -520
  174. package/front_end/core/i18n/locales/pt.json +844 -514
  175. package/front_end/core/i18n/locales/ro.json +850 -520
  176. package/front_end/core/i18n/locales/ru.json +861 -531
  177. package/front_end/core/i18n/locales/si.json +850 -520
  178. package/front_end/core/i18n/locales/sk.json +850 -520
  179. package/front_end/core/i18n/locales/sl.json +851 -521
  180. package/front_end/core/i18n/locales/sq.json +847 -517
  181. package/front_end/core/i18n/locales/sr-Latn.json +848 -518
  182. package/front_end/core/i18n/locales/sr.json +848 -518
  183. package/front_end/core/i18n/locales/sv.json +849 -519
  184. package/front_end/core/i18n/locales/sw.json +856 -526
  185. package/front_end/core/i18n/locales/ta.json +853 -523
  186. package/front_end/core/i18n/locales/te.json +854 -524
  187. package/front_end/core/i18n/locales/th.json +839 -509
  188. package/front_end/core/i18n/locales/tr.json +850 -520
  189. package/front_end/core/i18n/locales/uk.json +850 -520
  190. package/front_end/core/i18n/locales/ur.json +849 -519
  191. package/front_end/core/i18n/locales/uz.json +854 -524
  192. package/front_end/core/i18n/locales/vi.json +847 -517
  193. package/front_end/core/i18n/locales/zh-HK.json +852 -522
  194. package/front_end/core/i18n/locales/zh-TW.json +852 -522
  195. package/front_end/core/i18n/locales/zh.json +849 -519
  196. package/front_end/core/i18n/locales/zu.json +855 -525
  197. package/front_end/core/i18n/time-utilities.ts +17 -0
  198. package/front_end/core/platform/ArrayUtilities.test.ts +7 -8
  199. package/front_end/core/platform/DevToolsPath.test.ts +80 -41
  200. package/front_end/core/platform/DevToolsPath.ts +32 -9
  201. package/front_end/core/platform/MapUtilities.ts +1 -1
  202. package/front_end/core/platform/ServerTiming.ts +8 -8
  203. package/front_end/core/platform/StringUtilities.test.ts +1 -1
  204. package/front_end/core/platform/StringUtilities.ts +1 -1
  205. package/front_end/core/platform/TypedArrayUtilities.test.ts +6 -6
  206. package/front_end/core/protocol_client/InspectorBackend.ts +15 -22
  207. package/front_end/core/protocol_client/protocol_client.ts +1 -0
  208. package/front_end/core/root/Runtime.test.ts +22 -3
  209. package/front_end/core/root/Runtime.ts +99 -52
  210. package/front_end/core/sdk/AccessibilityModel.ts +3 -3
  211. package/front_end/core/sdk/AnimationModel.test.ts +4 -4
  212. package/front_end/core/sdk/AnimationModel.ts +5 -5
  213. package/front_end/core/sdk/AutofillModel.test.ts +1 -1
  214. package/front_end/core/sdk/AutofillModel.ts +3 -3
  215. package/front_end/core/sdk/CPUProfilerModel.ts +4 -4
  216. package/front_end/core/sdk/CPUThrottlingManager.ts +157 -17
  217. package/front_end/core/sdk/CSSMatchedStyles.test.ts +47 -45
  218. package/front_end/core/sdk/CSSMatchedStyles.ts +73 -6
  219. package/front_end/core/sdk/CSSMetadata.ts +21 -0
  220. package/front_end/core/sdk/CSSModel.test.ts +8 -10
  221. package/front_end/core/sdk/CSSModel.ts +53 -34
  222. package/front_end/core/sdk/CSSProperty.ts +16 -6
  223. package/front_end/core/sdk/CSSPropertyParser.ts +4 -4
  224. package/front_end/{panels/elements/PropertyMatchers.test.ts → core/sdk/CSSPropertyParserMatchers.test.ts} +158 -96
  225. package/front_end/{panels/elements/PropertyMatchers.ts → core/sdk/CSSPropertyParserMatchers.ts} +126 -59
  226. package/front_end/core/sdk/CSSStyleDeclaration.test.ts +7 -7
  227. package/front_end/core/sdk/CSSStyleDeclaration.ts +13 -1
  228. package/front_end/core/sdk/CSSStyleSheetHeader.test.ts +29 -0
  229. package/front_end/core/sdk/CSSStyleSheetHeader.ts +1 -1
  230. package/front_end/core/sdk/ChildTargetManager.test.ts +30 -14
  231. package/front_end/core/sdk/ChildTargetManager.ts +8 -11
  232. package/front_end/core/sdk/Connections.ts +26 -8
  233. package/front_end/core/sdk/ConsoleModel.test.ts +6 -4
  234. package/front_end/core/sdk/ConsoleModel.ts +11 -6
  235. package/front_end/core/sdk/Cookie.test.ts +37 -37
  236. package/front_end/core/sdk/CookieModel.test.ts +13 -12
  237. package/front_end/core/sdk/CookieModel.ts +3 -3
  238. package/front_end/core/sdk/DOMDebuggerModel.ts +5 -5
  239. package/front_end/core/sdk/DOMModel.ts +40 -17
  240. package/front_end/core/sdk/DebuggerModel.test.ts +6 -5
  241. package/front_end/core/sdk/DebuggerModel.ts +13 -13
  242. package/front_end/core/sdk/EmulationModel.ts +2 -3
  243. package/front_end/core/sdk/EnhancedTracesParser.test.ts +7 -7
  244. package/front_end/core/sdk/EnhancedTracesParser.ts +3 -1
  245. package/front_end/core/sdk/FrameManager.test.ts +4 -4
  246. package/front_end/core/sdk/FrameManager.ts +7 -7
  247. package/front_end/core/sdk/HeapProfilerModel.ts +7 -7
  248. package/front_end/core/sdk/IOModel.ts +2 -3
  249. package/front_end/core/sdk/IsolateManager.ts +4 -4
  250. package/front_end/core/sdk/IssuesModel.ts +7 -4
  251. package/front_end/core/sdk/LogModel.ts +5 -5
  252. package/front_end/core/sdk/NetworkManager.test.ts +106 -57
  253. package/front_end/core/sdk/NetworkManager.ts +58 -23
  254. package/front_end/core/sdk/NetworkRequest.test.ts +24 -25
  255. package/front_end/core/sdk/NetworkRequest.ts +10 -10
  256. package/front_end/core/sdk/OverlayModel.test.ts +6 -6
  257. package/front_end/core/sdk/OverlayModel.ts +10 -10
  258. package/front_end/core/sdk/OverlayPersistentHighlighter.test.ts +5 -3
  259. package/front_end/core/sdk/PageResourceLoader.test.ts +20 -25
  260. package/front_end/core/sdk/PageResourceLoader.ts +3 -3
  261. package/front_end/core/sdk/PaintProfiler.ts +4 -4
  262. package/front_end/core/sdk/PerformanceMetricsModel.ts +2 -2
  263. package/front_end/core/sdk/PreloadingModel.test.ts +240 -22
  264. package/front_end/core/sdk/PreloadingModel.ts +188 -19
  265. package/front_end/core/sdk/RehydratingConnection.test.ts +3 -3
  266. package/front_end/core/sdk/RehydratingConnection.ts +51 -7
  267. package/front_end/core/sdk/RemoteObject.test.ts +60 -60
  268. package/front_end/core/sdk/RemoteObject.ts +2 -2
  269. package/front_end/core/sdk/ResourceTreeModel.test.ts +5 -5
  270. package/front_end/core/sdk/ResourceTreeModel.ts +39 -32
  271. package/front_end/core/sdk/RuntimeModel.test.ts +4 -2
  272. package/front_end/core/sdk/RuntimeModel.ts +14 -12
  273. package/front_end/core/sdk/ScreenCaptureModel.ts +3 -0
  274. package/front_end/core/sdk/Script.ts +1 -1
  275. package/front_end/core/sdk/SecurityOriginManager.ts +6 -6
  276. package/front_end/core/sdk/ServiceWorkerCacheModel.ts +5 -5
  277. package/front_end/core/sdk/ServiceWorkerManager.test.ts +3 -3
  278. package/front_end/core/sdk/ServiceWorkerManager.ts +10 -11
  279. package/front_end/core/sdk/SourceMap.test.ts +141 -77
  280. package/front_end/core/sdk/SourceMap.ts +110 -193
  281. package/front_end/core/sdk/SourceMapFunctionRanges.test.ts +171 -0
  282. package/front_end/core/sdk/SourceMapFunctionRanges.ts +150 -0
  283. package/front_end/core/sdk/SourceMapManager.test.ts +14 -14
  284. package/front_end/core/sdk/SourceMapManager.ts +12 -12
  285. package/front_end/core/sdk/SourceMapScopes.ts +29 -7
  286. package/front_end/core/sdk/SourceMapScopesInfo.test.ts +117 -25
  287. package/front_end/core/sdk/SourceMapScopesInfo.ts +94 -20
  288. package/front_end/core/sdk/StorageBucketsModel.ts +8 -8
  289. package/front_end/core/sdk/StorageKeyManager.test.ts +4 -2
  290. package/front_end/core/sdk/StorageKeyManager.ts +8 -7
  291. package/front_end/core/sdk/Target.test.ts +39 -3
  292. package/front_end/core/sdk/Target.ts +41 -1
  293. package/front_end/core/sdk/TargetManager.test.ts +6 -4
  294. package/front_end/core/sdk/TargetManager.ts +6 -6
  295. package/front_end/core/sdk/TraceObject.test.ts +2 -2
  296. package/front_end/core/sdk/TraceObject.ts +32 -0
  297. package/front_end/core/sdk/WebAuthnModel.ts +6 -6
  298. package/front_end/core/sdk/sdk-meta.ts +1 -28
  299. package/front_end/core/sdk/sdk.ts +4 -5
  300. package/front_end/design_system_tokens.css +775 -0
  301. package/front_end/devtools_compatibility.js +6 -9
  302. package/front_end/entrypoint_template.html +2 -0
  303. package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.test.ts +1 -1
  304. package/front_end/entrypoints/formatter_worker/FormatterWorker.ts +1 -2
  305. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.test.ts +12 -2
  306. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +3 -3
  307. package/front_end/entrypoints/formatter_worker/ScopeParser.ts +0 -1
  308. package/front_end/entrypoints/formatter_worker/formatter_worker-entrypoint.ts +0 -1
  309. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +68 -53
  310. package/front_end/entrypoints/inspector_main/InspectorMain.test.ts +276 -142
  311. package/front_end/entrypoints/inspector_main/InspectorMain.ts +41 -3
  312. package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +1 -2
  313. package/front_end/entrypoints/inspector_main/RenderingOptions.ts +3 -6
  314. package/front_end/entrypoints/inspector_main/nodeIcon.css +1 -0
  315. package/front_end/entrypoints/js_app/js_app.ts +2 -1
  316. package/front_end/entrypoints/main/ExecutionContextSelector.ts +1 -1
  317. package/front_end/entrypoints/main/MainImpl.ts +118 -95
  318. package/front_end/entrypoints/node_app/NodeConnectionsPanel.ts +6 -8
  319. package/front_end/entrypoints/node_app/NodeMain.ts +10 -5
  320. package/front_end/entrypoints/node_app/node_app.ts +3 -2
  321. package/front_end/entrypoints/shell/shell.ts +1 -1
  322. package/front_end/entrypoints/wasmparser_worker/WasmParserWorker.ts +1 -1
  323. package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
  324. package/front_end/generated/ARIAProperties.js +1 -1
  325. package/front_end/generated/Deprecation.ts +8 -16
  326. package/front_end/generated/InspectorBackendCommands.js +40 -31
  327. package/front_end/generated/SupportedCSSProperties.js +256 -45
  328. package/front_end/generated/protocol-mapping.d.ts +66 -23
  329. package/front_end/generated/protocol-proxy-api.d.ts +53 -25
  330. package/front_end/generated/protocol.ts +354 -87
  331. package/front_end/global_typings/global_defs.d.ts +0 -5
  332. package/front_end/legacy/legacy-defs.d.ts +2 -6
  333. package/front_end/legacy_test_runner/application_test_runner/ResourceTreeTestRunner.js +2 -1
  334. package/front_end/legacy_test_runner/bindings_test_runner/BindingsTestRunner.js +3 -4
  335. package/front_end/legacy_test_runner/elements_test_runner/ElementsTestRunner.js +1 -2
  336. package/front_end/legacy_test_runner/heap_profiler_test_runner/heap_profiler_test_runner.js +15 -3
  337. package/front_end/models/autofill_manager/AutofillManager.test.ts +1 -1
  338. package/front_end/models/autofill_manager/AutofillManager.ts +3 -3
  339. package/front_end/models/bindings/CompilerScriptMapping.test.ts +6 -6
  340. package/front_end/models/bindings/CompilerScriptMapping.ts +8 -0
  341. package/front_end/models/bindings/ContentProviderBasedProject.ts +1 -1
  342. package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +8 -6
  343. package/front_end/models/bindings/DebuggerWorkspaceBinding.test.ts +29 -3
  344. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +8 -0
  345. package/front_end/models/bindings/DefaultScriptMapping.test.ts +7 -5
  346. package/front_end/models/bindings/FileUtils.test.ts +2 -2
  347. package/front_end/models/bindings/FileUtils.ts +1 -1
  348. package/front_end/models/bindings/IgnoreListManager.test.ts +17 -15
  349. package/front_end/models/bindings/IgnoreListManager.ts +9 -9
  350. package/front_end/models/bindings/NetworkProject.ts +4 -4
  351. package/front_end/models/bindings/PresentationConsoleMessageHelper.test.ts +4 -2
  352. package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +4 -5
  353. package/front_end/models/bindings/ResourceMapping.test.ts +6 -4
  354. package/front_end/models/bindings/ResourceScriptMapping.test.ts +4 -2
  355. package/front_end/models/bindings/ResourceScriptMapping.ts +4 -4
  356. package/front_end/models/bindings/ResourceUtils.test.ts +26 -28
  357. package/front_end/models/bindings/ResourceUtils.ts +1 -8
  358. package/front_end/models/bindings/SASSSourceMapping.ts +0 -1
  359. package/front_end/models/breakpoints/BreakpointManager.test.ts +47 -45
  360. package/front_end/models/breakpoints/BreakpointManager.ts +4 -4
  361. package/front_end/models/cpu_profile/CPUProfileDataModel.test.ts +8 -1
  362. package/front_end/models/cpu_profile/CPUProfileDataModel.ts +14 -4
  363. package/front_end/models/cpu_profile/ProfileTreeModel.ts +1 -3
  364. package/front_end/models/crux-manager/CrUXManager.test.ts +101 -28
  365. package/front_end/models/crux-manager/CrUXManager.ts +76 -10
  366. package/front_end/models/emulation/DeviceModeModel.ts +18 -3
  367. package/front_end/models/emulation/EmulatedDevices.test.ts +20 -0
  368. package/front_end/models/emulation/EmulatedDevices.ts +29 -25
  369. package/front_end/models/extensions/ExtensionAPI.ts +301 -175
  370. package/front_end/models/extensions/ExtensionEndpoint.ts +8 -8
  371. package/front_end/models/extensions/ExtensionPanel.ts +4 -2
  372. package/front_end/models/extensions/ExtensionServer.test.ts +281 -65
  373. package/front_end/models/extensions/ExtensionServer.ts +65 -7
  374. package/front_end/models/extensions/HostUrlPattern.test.ts +59 -58
  375. package/front_end/models/extensions/LanguageExtensionEndpoint.test.ts +63 -0
  376. package/front_end/models/extensions/LanguageExtensionEndpoint.ts +25 -6
  377. package/front_end/models/extensions/RecorderPluginManager.test.ts +1 -1
  378. package/front_end/models/extensions/RecorderPluginManager.ts +13 -13
  379. package/front_end/models/extensions/extensions.ts +4 -0
  380. package/front_end/models/formatter/FormatterWorkerPool.ts +3 -4
  381. package/front_end/models/har/Importer.test.ts +4 -4
  382. package/front_end/models/har/Log.test.ts +4 -2
  383. package/front_end/models/har/Log.ts +3 -3
  384. package/front_end/models/har/Writer.test.ts +2 -1
  385. package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +4 -10
  386. package/front_end/models/issues_manager/ClientHintIssue.ts +2 -3
  387. package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +0 -1
  388. package/front_end/models/issues_manager/CookieIssue.ts +5 -3
  389. package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +0 -1
  390. package/front_end/models/issues_manager/DeprecationIssue.test.ts +3 -3
  391. package/front_end/models/issues_manager/DeprecationIssue.ts +3 -4
  392. package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +2 -3
  393. package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.test.ts +1 -1
  394. package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +2 -3
  395. package/front_end/models/issues_manager/GenericIssue.test.ts +2 -2
  396. package/front_end/models/issues_manager/GenericIssue.ts +0 -1
  397. package/front_end/models/issues_manager/IssueResolver.test.ts +3 -3
  398. package/front_end/models/issues_manager/IssuesManager.test.ts +19 -19
  399. package/front_end/models/issues_manager/IssuesManager.ts +29 -10
  400. package/front_end/models/issues_manager/LowTextContrastIssue.test.ts +2 -2
  401. package/front_end/models/issues_manager/MarkdownIssueDescription.ts +1 -1
  402. package/front_end/models/issues_manager/PropertyRuleIssue.test.ts +1 -1
  403. package/front_end/models/issues_manager/RelatedIssue.test.ts +7 -7
  404. package/front_end/models/issues_manager/SelectElementAccessibilityIssue.test.ts +86 -0
  405. package/front_end/models/issues_manager/SelectElementAccessibilityIssue.ts +110 -0
  406. package/front_end/models/issues_manager/SharedDictionaryIssue.test.ts +1 -1
  407. package/front_end/models/issues_manager/StylesheetLoadingIssue.test.ts +7 -7
  408. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedOptGroupChild.md +7 -0
  409. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityDisallowedSelectChild.md +7 -0
  410. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentAttributesSelectDescendant.md +3 -0
  411. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentLegendChild.md +3 -0
  412. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityInteractiveContentOptionChild.md +3 -0
  413. package/front_end/models/issues_manager/descriptions/selectElementAccessibilityNonPhrasingContentOptionChild.md +3 -0
  414. package/front_end/models/issues_manager/issues_manager.ts +2 -0
  415. package/front_end/models/javascript_metadata/JavaScriptMetadata.test.ts +6 -6
  416. package/front_end/models/javascript_metadata/NativeFunctions.js +210 -179
  417. package/front_end/models/live-metrics/LiveMetrics.ts +113 -65
  418. package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +13 -13
  419. package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +13 -6
  420. package/front_end/models/logs/NetworkLog.test.ts +6 -4
  421. package/front_end/models/logs/NetworkLog.ts +6 -6
  422. package/front_end/models/logs/RequestResolver.test.ts +3 -3
  423. package/front_end/models/persistence/EditFileSystemView.ts +4 -7
  424. package/front_end/models/persistence/IsolatedFileSystemManager.ts +9 -13
  425. package/front_end/models/persistence/NetworkPersistenceManager.test.ts +38 -46
  426. package/front_end/models/persistence/NetworkPersistenceManager.ts +6 -6
  427. package/front_end/models/persistence/PersistenceAction.test.ts +11 -9
  428. package/front_end/models/persistence/PersistenceImpl.test.ts +10 -8
  429. package/front_end/models/persistence/PersistenceImpl.ts +4 -4
  430. package/front_end/models/persistence/PersistenceUtils.ts +3 -3
  431. package/front_end/models/persistence/PlatformFileSystem.test.ts +4 -3
  432. package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
  433. package/front_end/models/persistence/WorkspaceSettingsTab.ts +16 -21
  434. package/front_end/models/persistence/editFileSystemView.css +13 -8
  435. package/front_end/models/project_settings/ProjectSettingsModel.test.ts +138 -0
  436. package/front_end/models/project_settings/ProjectSettingsModel.ts +157 -0
  437. package/front_end/models/project_settings/project_settings.ts +9 -0
  438. package/front_end/models/source_map_scopes/NamesResolver.test.ts +11 -3
  439. package/front_end/models/source_map_scopes/NamesResolver.ts +5 -7
  440. package/front_end/models/source_map_scopes/ScopeChainModel.ts +3 -3
  441. package/front_end/models/text_utils/StaticContentProvider.test.ts +4 -2
  442. package/front_end/models/text_utils/StreamingContentData.ts +3 -3
  443. package/front_end/models/text_utils/Text.test.ts +1 -1
  444. package/front_end/models/text_utils/TextRange.test.ts +2 -4
  445. package/front_end/models/text_utils/TextUtils.test.ts +29 -30
  446. package/front_end/models/text_utils/TextUtils.ts +1 -1
  447. package/front_end/models/trace/LanternComputationData.ts +11 -10
  448. package/front_end/models/trace/ModelImpl.test.ts +8 -8
  449. package/front_end/models/trace/ModelImpl.ts +12 -15
  450. package/front_end/models/trace/Processor.test.ts +83 -12
  451. package/front_end/models/trace/Processor.ts +116 -29
  452. package/front_end/models/trace/extras/FilmStrip.test.ts +54 -32
  453. package/front_end/models/trace/extras/FilmStrip.ts +11 -10
  454. package/front_end/models/trace/extras/MainThreadActivity.test.ts +7 -7
  455. package/front_end/models/trace/extras/MainThreadActivity.ts +5 -5
  456. package/front_end/models/trace/extras/Metadata.test.ts +3 -0
  457. package/front_end/models/trace/extras/Metadata.ts +4 -1
  458. package/front_end/models/trace/extras/StackTraceForEvent.test.ts +259 -0
  459. package/front_end/models/trace/extras/StackTraceForEvent.ts +177 -0
  460. package/front_end/models/trace/extras/ThirdParties.test.ts +99 -91
  461. package/front_end/models/trace/extras/ThirdParties.ts +124 -121
  462. package/front_end/models/trace/extras/TimelineJSProfile.ts +10 -5
  463. package/front_end/models/trace/extras/TraceFilter.test.ts +3 -2
  464. package/front_end/models/trace/extras/TraceTree.test.ts +65 -39
  465. package/front_end/models/trace/extras/TraceTree.ts +32 -21
  466. package/front_end/models/trace/extras/extras.ts +1 -1
  467. package/front_end/models/trace/handlers/AnimationFramesHandler.test.ts +40 -0
  468. package/front_end/models/trace/handlers/AnimationFramesHandler.ts +119 -0
  469. package/front_end/models/trace/handlers/AsyncJSCallsHandler.test.ts +211 -0
  470. package/front_end/models/trace/handlers/AsyncJSCallsHandler.ts +185 -0
  471. package/front_end/models/trace/handlers/DOMStatsHandler.test.ts +30 -0
  472. package/front_end/models/trace/handlers/DOMStatsHandler.ts +31 -0
  473. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.test.ts +741 -381
  474. package/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +182 -17
  475. package/front_end/models/trace/handlers/FlowsHandler.test.ts +185 -0
  476. package/front_end/models/trace/handlers/FlowsHandler.ts +175 -0
  477. package/front_end/models/trace/handlers/FramesHandler.test.ts +42 -43
  478. package/front_end/models/trace/handlers/FramesHandler.ts +24 -25
  479. package/front_end/models/trace/handlers/InitiatorsHandler.test.ts +56 -49
  480. package/front_end/models/trace/handlers/InitiatorsHandler.ts +32 -61
  481. package/front_end/models/trace/handlers/LargestImagePaintHandler.test.ts +48 -13
  482. package/front_end/models/trace/handlers/LargestImagePaintHandler.ts +31 -27
  483. package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +10 -10
  484. package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +33 -24
  485. package/front_end/models/trace/handlers/MetaHandler.test.ts +15 -14
  486. package/front_end/models/trace/handlers/MetaHandler.ts +46 -47
  487. package/front_end/models/trace/handlers/ModelHandlers.ts +4 -0
  488. package/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts +178 -72
  489. package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +60 -40
  490. package/front_end/models/trace/handlers/PageLoadMetricsHandler.test.ts +4 -4
  491. package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +28 -27
  492. package/front_end/models/trace/handlers/RendererHandler.test.ts +25 -6
  493. package/front_end/models/trace/handlers/RendererHandler.ts +43 -5
  494. package/front_end/models/trace/handlers/SamplesHandler.test.ts +50 -17
  495. package/front_end/models/trace/handlers/SamplesHandler.ts +69 -60
  496. package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +33 -44
  497. package/front_end/models/trace/handlers/ScreenshotsHandler.ts +38 -13
  498. package/front_end/models/trace/handlers/ServerTimingsHandler.test.ts +6 -6
  499. package/front_end/models/trace/handlers/ServerTimingsHandler.ts +4 -5
  500. package/front_end/models/trace/handlers/Threads.test.ts +6 -6
  501. package/front_end/models/trace/handlers/Threads.ts +13 -4
  502. package/front_end/models/trace/handlers/UserInteractionsHandler.test.ts +7 -7
  503. package/front_end/models/trace/handlers/UserInteractionsHandler.ts +17 -18
  504. package/front_end/models/trace/handlers/UserTimings.md +1 -1
  505. package/front_end/models/trace/handlers/UserTimingsHandler.test.ts +32 -24
  506. package/front_end/models/trace/handlers/UserTimingsHandler.ts +25 -4
  507. package/front_end/models/trace/handlers/WarningsHandler.ts +2 -2
  508. package/front_end/models/trace/handlers/WorkersHandler.test.ts +4 -4
  509. package/front_end/models/trace/handlers/handlers.ts +1 -0
  510. package/front_end/models/trace/{extras/URLForEntry.test.ts → handlers/helpers.test.ts} +34 -7
  511. package/front_end/models/trace/handlers/helpers.ts +158 -0
  512. package/front_end/models/trace/handlers/types.ts +2 -1
  513. package/front_end/models/trace/helpers/SamplesIntegrator.test.ts +81 -13
  514. package/front_end/models/trace/helpers/SamplesIntegrator.ts +59 -18
  515. package/front_end/models/trace/helpers/SyntheticEvents.test.ts +1 -1
  516. package/front_end/models/trace/helpers/SyntheticEvents.ts +1 -1
  517. package/front_end/models/trace/helpers/Timing.test.ts +33 -45
  518. package/front_end/models/trace/helpers/Timing.ts +50 -76
  519. package/front_end/models/trace/helpers/Trace.test.ts +15 -15
  520. package/front_end/models/trace/helpers/Trace.ts +98 -48
  521. package/front_end/models/trace/helpers/TreeHelpers.test.ts +10 -81
  522. package/front_end/models/trace/helpers/TreeHelpers.ts +13 -181
  523. package/front_end/models/trace/insights/CLSCulprits.test.ts +10 -20
  524. package/front_end/models/trace/insights/CLSCulprits.ts +209 -103
  525. package/front_end/models/trace/insights/Common.test.ts +56 -0
  526. package/front_end/models/trace/insights/Common.ts +252 -1
  527. package/front_end/models/trace/insights/DOMSize.test.ts +63 -0
  528. package/front_end/models/trace/insights/DOMSize.ts +175 -0
  529. package/front_end/models/trace/insights/DocumentLatency.test.ts +10 -14
  530. package/front_end/models/trace/insights/DocumentLatency.ts +87 -22
  531. package/front_end/models/trace/insights/FontDisplay.test.ts +3 -13
  532. package/front_end/models/trace/insights/FontDisplay.ts +24 -14
  533. package/front_end/models/trace/insights/ForcedReflow.test.ts +35 -0
  534. package/front_end/models/trace/insights/ForcedReflow.ts +224 -0
  535. package/front_end/models/trace/insights/ImageDelivery.test.ts +35 -28
  536. package/front_end/models/trace/insights/ImageDelivery.ts +142 -17
  537. package/front_end/models/trace/insights/InteractionToNextPaint.test.ts +1 -11
  538. package/front_end/models/trace/insights/InteractionToNextPaint.ts +39 -6
  539. package/front_end/models/trace/insights/LCPDiscovery.test.ts +24 -15
  540. package/front_end/models/trace/insights/LCPDiscovery.ts +57 -19
  541. package/front_end/models/trace/insights/LCPPhases.test.ts +6 -16
  542. package/front_end/models/trace/insights/LCPPhases.ts +57 -29
  543. package/front_end/models/trace/insights/LongCriticalNetworkTree.ts +60 -0
  544. package/front_end/models/trace/insights/Models.ts +3 -0
  545. package/front_end/models/trace/insights/RenderBlocking.test.ts +14 -25
  546. package/front_end/models/trace/insights/RenderBlocking.ts +22 -10
  547. package/front_end/models/trace/insights/SlowCSSSelector.test.ts +5 -15
  548. package/front_end/models/trace/insights/SlowCSSSelector.ts +42 -10
  549. package/front_end/models/trace/insights/Statistics.test.ts +145 -0
  550. package/front_end/models/trace/insights/Statistics.ts +93 -0
  551. package/front_end/models/trace/insights/ThirdParties.test.ts +57 -50
  552. package/front_end/models/trace/insights/ThirdParties.ts +41 -24
  553. package/front_end/models/trace/insights/Viewport.test.ts +8 -13
  554. package/front_end/models/trace/insights/Viewport.ts +10 -9
  555. package/front_end/models/trace/insights/insights.ts +1 -0
  556. package/front_end/models/trace/insights/types.ts +39 -18
  557. package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +101 -73
  558. package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +7 -8
  559. package/front_end/models/trace/lantern/graph/BaseNode.test.ts +83 -76
  560. package/front_end/models/trace/lantern/graph/BaseNode.ts +2 -1
  561. package/front_end/models/trace/lantern/graph/CPUNode.ts +2 -1
  562. package/front_end/models/trace/lantern/graph/NetworkNode.ts +2 -1
  563. package/front_end/models/trace/lantern/graph/PageDependencyGraph.test.ts +110 -114
  564. package/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +2 -1
  565. package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.test.ts +3 -3
  566. package/front_end/models/trace/lantern/metrics/FirstContentfulPaint.ts +1 -1
  567. package/front_end/models/trace/lantern/metrics/Interactive.test.ts +6 -6
  568. package/front_end/models/trace/lantern/metrics/LargestContentfulPaint.test.ts +3 -3
  569. package/front_end/models/trace/lantern/metrics/SpeedIndex.test.ts +3 -3
  570. package/front_end/models/trace/lantern/metrics/TBTUtils.test.ts +1 -1
  571. package/front_end/models/trace/lantern/simulation/ConnectionPool.test.ts +56 -44
  572. package/front_end/models/trace/lantern/simulation/ConnectionPool.ts +1 -1
  573. package/front_end/models/trace/lantern/simulation/DNSCache.test.ts +3 -5
  574. package/front_end/models/trace/lantern/simulation/DNSCache.ts +2 -2
  575. package/front_end/models/trace/lantern/simulation/Simulator.test.ts +69 -38
  576. package/front_end/models/trace/lantern/simulation/Simulator.ts +4 -3
  577. package/front_end/models/trace/lantern/simulation/TCPConnection.test.ts +1 -1
  578. package/front_end/models/trace/lantern/simulation/TCPConnection.ts +0 -4
  579. package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +2 -2
  580. package/front_end/models/trace/lantern/types/Lantern.ts +56 -56
  581. package/front_end/models/trace/root-causes/LayoutShift.test.ts +32 -35
  582. package/front_end/models/trace/root-causes/LayoutShift.ts +20 -19
  583. package/front_end/models/trace/root-causes/RootCauses.ts +8 -8
  584. package/front_end/models/trace/types/Configuration.ts +23 -6
  585. package/front_end/models/trace/types/Extensions.ts +6 -7
  586. package/front_end/models/trace/types/File.ts +33 -31
  587. package/front_end/models/trace/types/Timing.ts +12 -20
  588. package/front_end/models/trace/types/TraceEvents.ts +351 -197
  589. package/front_end/models/workspace/FileManager.ts +3 -3
  590. package/front_end/models/workspace/SearchConfig.test.ts +3 -2
  591. package/front_end/models/workspace/UISourceCode.test.ts +1 -1
  592. package/front_end/models/workspace/UISourceCode.ts +10 -13
  593. package/front_end/models/workspace/WorkspaceImpl.test.ts +18 -19
  594. package/front_end/models/workspace/WorkspaceImpl.ts +10 -10
  595. package/front_end/models/workspace_diff/WorkspaceDiff.test.ts +5 -3
  596. package/front_end/models/workspace_diff/WorkspaceDiff.ts +49 -47
  597. package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +4 -7
  598. package/front_end/panels/accessibility/AccessibilityNodeView.ts +1 -4
  599. package/front_end/panels/accessibility/AccessibilitySubPane.ts +6 -8
  600. package/front_end/panels/accessibility/accessibilityNode.css +2 -2
  601. package/front_end/panels/accessibility/axBreadcrumbs.css +4 -15
  602. package/front_end/panels/{freestyler/FreestylerPanel.test.ts → ai_assistance/AiAssistancePanel.test.ts} +218 -206
  603. package/front_end/panels/{freestyler/FreestylerPanel.ts → ai_assistance/AiAssistancePanel.ts} +388 -294
  604. package/front_end/panels/{freestyler → ai_assistance}/AiHistoryStorage.test.ts +53 -30
  605. package/front_end/panels/ai_assistance/AiHistoryStorage.ts +129 -0
  606. package/front_end/panels/ai_assistance/ChangeManager.test.ts +210 -0
  607. package/front_end/panels/{freestyler → ai_assistance}/ChangeManager.ts +34 -15
  608. package/front_end/panels/{freestyler/FreestylerEvaluateAction.test.ts → ai_assistance/EvaluateAction.test.ts} +37 -35
  609. package/front_end/panels/{freestyler/FreestylerEvaluateAction.ts → ai_assistance/EvaluateAction.ts} +10 -5
  610. package/front_end/panels/{freestyler → ai_assistance}/ExtensionScope.ts +50 -31
  611. package/front_end/panels/ai_assistance/agents/AiAgent.test.ts +405 -0
  612. package/front_end/panels/ai_assistance/agents/AiAgent.ts +683 -0
  613. package/front_end/panels/ai_assistance/agents/FileAgent.test.ts +208 -0
  614. package/front_end/panels/{freestyler/DrJonesFileAgent.ts → ai_assistance/agents/FileAgent.ts} +23 -81
  615. package/front_end/panels/ai_assistance/agents/NetworkAgent.test.ts +236 -0
  616. package/front_end/panels/ai_assistance/agents/NetworkAgent.ts +199 -0
  617. package/front_end/panels/ai_assistance/agents/PatchAgent.ts +327 -0
  618. package/front_end/panels/{freestyler/DrJonesPerformanceAgent.test.ts → ai_assistance/agents/PerformanceAgent.test.ts} +67 -91
  619. package/front_end/panels/{freestyler/DrJonesPerformanceAgent.ts → ai_assistance/agents/PerformanceAgent.ts} +39 -27
  620. package/front_end/panels/ai_assistance/agents/PerformanceInsightsAgent.ts +117 -0
  621. package/front_end/panels/{freestyler/FreestylerAgent.test.ts → ai_assistance/agents/StylingAgent.test.ts} +459 -605
  622. package/front_end/panels/{freestyler/FreestylerAgent.ts → ai_assistance/agents/StylingAgent.ts} +298 -105
  623. package/front_end/panels/{freestyler/freestylerPanel.css → ai_assistance/aiAssistancePanel.css} +2 -2
  624. package/front_end/panels/{freestyler/freestyler-meta.ts → ai_assistance/ai_assistance-meta.ts} +57 -45
  625. package/front_end/panels/ai_assistance/ai_assistance.ts +20 -0
  626. package/front_end/panels/{freestyler/components/FreestylerChatUi.test.ts → ai_assistance/components/ChatView.test.ts} +21 -24
  627. package/front_end/panels/ai_assistance/components/ChatView.ts +1630 -0
  628. package/front_end/panels/ai_assistance/components/MarkdownRendererWithCodeBlock.ts +57 -0
  629. package/front_end/panels/ai_assistance/components/UserActionRow.test.ts +98 -0
  630. package/front_end/panels/ai_assistance/components/UserActionRow.ts +437 -0
  631. package/front_end/panels/{freestyler/components/freestylerChatUi.css → ai_assistance/components/chatView.css} +131 -11
  632. package/front_end/panels/ai_assistance/components/userActionRow.css +117 -0
  633. package/front_end/panels/{freestyler/DrJonesFileAgent.test.ts → ai_assistance/data_formatters/FileFormatter.test.ts} +46 -234
  634. package/front_end/panels/ai_assistance/data_formatters/FileFormatter.ts +81 -0
  635. package/front_end/panels/ai_assistance/data_formatters/NetworkRequestFormatter.test.ts +87 -0
  636. package/front_end/panels/ai_assistance/data_formatters/NetworkRequestFormatter.ts +272 -0
  637. package/front_end/panels/ai_assistance/debug.ts +30 -0
  638. package/front_end/panels/animation/AnimationScreenshotPopover.ts +2 -1
  639. package/front_end/panels/animation/AnimationTimeline.test.ts +8 -8
  640. package/front_end/panels/animation/AnimationTimeline.ts +11 -6
  641. package/front_end/panels/animation/AnimationUI.ts +7 -7
  642. package/front_end/panels/animation/animationTimeline.css +8 -15
  643. package/front_end/panels/application/AppManifestView.test.ts +14 -12
  644. package/front_end/panels/application/AppManifestView.ts +16 -20
  645. package/front_end/panels/application/ApplicationPanelSidebar.test.ts +12 -13
  646. package/front_end/panels/application/ApplicationPanelSidebar.ts +94 -25
  647. package/front_end/panels/application/ApplicationPanelTreeElement.ts +34 -2
  648. package/front_end/panels/application/BackgroundServiceModel.ts +4 -4
  649. package/front_end/panels/application/BackgroundServiceView.test.ts +23 -2
  650. package/front_end/panels/application/BackgroundServiceView.ts +38 -34
  651. package/front_end/panels/application/CookieItemsView.ts +7 -6
  652. package/front_end/panels/application/DOMStorageItemsView.ts +38 -53
  653. package/front_end/panels/application/DOMStorageModel.test.ts +1 -1
  654. package/front_end/panels/application/DOMStorageModel.ts +11 -11
  655. package/front_end/panels/application/ExtensionStorageItemsView.test.ts +20 -29
  656. package/front_end/panels/application/ExtensionStorageItemsView.ts +41 -96
  657. package/front_end/panels/application/ExtensionStorageModel.test.ts +9 -7
  658. package/front_end/panels/application/ExtensionStorageModel.ts +4 -4
  659. package/front_end/panels/application/IndexedDBModel.ts +8 -8
  660. package/front_end/panels/application/IndexedDBViews.test.ts +6 -8
  661. package/front_end/panels/application/IndexedDBViews.ts +11 -14
  662. package/front_end/panels/application/InterestGroupStorageModel.ts +4 -4
  663. package/front_end/panels/application/InterestGroupStorageView.test.ts +9 -33
  664. package/front_end/panels/application/InterestGroupStorageView.ts +38 -33
  665. package/front_end/panels/application/InterestGroupTreeElement.test.ts +1 -1
  666. package/front_end/panels/application/KeyValueStorageItemsView.test.ts +122 -0
  667. package/front_end/panels/application/KeyValueStorageItemsView.ts +356 -0
  668. package/front_end/panels/application/OpenedWindowDetailsView.ts +4 -10
  669. package/front_end/panels/application/PreloadingTreeElement.ts +2 -2
  670. package/front_end/panels/application/ReportingApiReportsView.test.ts +1 -13
  671. package/front_end/panels/application/ReportingApiReportsView.ts +14 -19
  672. package/front_end/panels/application/ReportingApiView.test.ts +13 -0
  673. package/front_end/panels/application/ResourcesPanel.ts +11 -12
  674. package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +11 -1
  675. package/front_end/panels/application/ServiceWorkerCacheViews.ts +12 -5
  676. package/front_end/panels/application/ServiceWorkerUpdateCycleView.test.ts +9 -10
  677. package/front_end/panels/application/ServiceWorkerUpdateCycleView.ts +2 -2
  678. package/front_end/panels/application/ServiceWorkersView.ts +1 -7
  679. package/front_end/panels/application/SharedStorageEventsView.test.ts +4 -19
  680. package/front_end/panels/application/SharedStorageEventsView.ts +24 -28
  681. package/front_end/panels/application/SharedStorageItemsView.test.ts +14 -16
  682. package/front_end/panels/application/SharedStorageItemsView.ts +14 -10
  683. package/front_end/panels/application/SharedStorageModel.test.ts +1 -1
  684. package/front_end/panels/application/SharedStorageModel.ts +9 -9
  685. package/front_end/panels/application/SharedStorageTreeElement.test.ts +2 -4
  686. package/front_end/panels/application/StorageBucketsTreeElement.ts +19 -3
  687. package/front_end/panels/application/StorageItemsView.ts +4 -2
  688. package/front_end/panels/application/StorageView.test.ts +2 -4
  689. package/front_end/panels/application/StorageView.ts +9 -16
  690. package/front_end/panels/application/appManifestView.css +1 -1
  691. package/front_end/panels/application/application.ts +2 -0
  692. package/front_end/panels/application/components/BackForwardCacheView.test.ts +10 -12
  693. package/front_end/panels/application/components/BackForwardCacheView.ts +30 -29
  694. package/front_end/panels/application/components/BounceTrackingMitigationsView.test.ts +18 -21
  695. package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +24 -38
  696. package/front_end/panels/application/components/EndpointsGrid.test.ts +13 -14
  697. package/front_end/panels/application/components/EndpointsGrid.ts +40 -51
  698. package/front_end/panels/application/components/FrameDetailsView.test.ts +3 -5
  699. package/front_end/panels/application/components/FrameDetailsView.ts +61 -60
  700. package/front_end/panels/application/components/InterestGroupAccessGrid.test.ts +5 -11
  701. package/front_end/panels/application/components/InterestGroupAccessGrid.ts +65 -73
  702. package/front_end/panels/application/components/OriginTrialTreeView.test.ts +3 -5
  703. package/front_end/panels/application/components/OriginTrialTreeView.ts +23 -15
  704. package/front_end/panels/application/components/PermissionsPolicySection.ts +19 -17
  705. package/front_end/panels/application/components/ProtocolHandlersView.test.ts +5 -3
  706. package/front_end/panels/application/components/ProtocolHandlersView.ts +17 -11
  707. package/front_end/panels/application/components/ReportsGrid.test.ts +11 -12
  708. package/front_end/panels/application/components/ReportsGrid.ts +67 -81
  709. package/front_end/panels/application/components/ServiceWorkerRouterView.test.ts +3 -5
  710. package/front_end/panels/application/components/ServiceWorkerRouterView.ts +8 -4
  711. package/front_end/panels/application/components/SharedStorageAccessGrid.test.ts +8 -16
  712. package/front_end/panels/application/components/SharedStorageAccessGrid.ts +96 -97
  713. package/front_end/panels/application/components/SharedStorageMetadataView.test.ts +5 -7
  714. package/front_end/panels/application/components/SharedStorageMetadataView.ts +10 -6
  715. package/front_end/panels/application/components/StackTrace.test.ts +4 -3
  716. package/front_end/panels/application/components/StackTrace.ts +16 -10
  717. package/front_end/panels/application/components/StorageMetadataView.test.ts +3 -5
  718. package/front_end/panels/application/components/StorageMetadataView.ts +20 -21
  719. package/front_end/panels/application/components/TrustTokensView.test.ts +9 -15
  720. package/front_end/panels/application/components/TrustTokensView.ts +76 -79
  721. package/front_end/panels/application/components/bounceTrackingMitigationsView.css +1 -2
  722. package/front_end/panels/application/components/interestGroupAccessGrid.css +3 -2
  723. package/front_end/panels/application/components/reportingApiGrid.css +3 -13
  724. package/front_end/panels/application/components/sharedStorageAccessGrid.css +3 -2
  725. package/front_end/panels/application/components/trustTokensView.css +3 -2
  726. package/front_end/panels/application/interestGroupStorageView.css +0 -13
  727. package/front_end/panels/application/preloading/PreloadingView.test.ts +61 -54
  728. package/front_end/panels/application/preloading/PreloadingView.ts +28 -34
  729. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +11 -16
  730. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +63 -93
  731. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.test.ts +188 -35
  732. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +91 -48
  733. package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +28 -39
  734. package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +186 -30
  735. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +63 -107
  736. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.test.ts +6 -5
  737. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +31 -63
  738. package/front_end/panels/application/preloading/components/RuleSetDetailsView.test.ts +7 -15
  739. package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +16 -13
  740. package/front_end/panels/application/preloading/components/RuleSetGrid.test.ts +11 -9
  741. package/front_end/panels/application/preloading/components/RuleSetGrid.ts +126 -219
  742. package/front_end/panels/application/preloading/components/UsedPreloadingView.test.ts +92 -70
  743. package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +22 -20
  744. package/front_end/panels/application/preloading/components/preloadingDetailsReportView.css +8 -0
  745. package/front_end/panels/application/preloading/components/preloadingDisabledInfobar.css +8 -34
  746. package/front_end/panels/application/preloading/components/preloadingGrid.css +2 -2
  747. package/front_end/panels/application/preloading/components/ruleSetGrid.css +2 -2
  748. package/front_end/panels/application/resourcesPanel.css +1 -2
  749. package/front_end/panels/application/serviceWorkersView.css +0 -5
  750. package/front_end/panels/application/sharedStorageEventsView.css +0 -13
  751. package/front_end/panels/autofill/AutofillView.test.ts +25 -24
  752. package/front_end/panels/autofill/AutofillView.ts +56 -114
  753. package/front_end/panels/autofill/autofillView.css +5 -0
  754. package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +3 -6
  755. package/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts +22 -14
  756. package/front_end/panels/browser_debugger/ObjectEventListenersSidebarPane.ts +1 -1
  757. package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +4 -7
  758. package/front_end/panels/browser_debugger/domBreakpointsSidebarPane.css +4 -0
  759. package/front_end/panels/changes/ChangesSidebar.ts +6 -9
  760. package/front_end/panels/changes/ChangesView.ts +45 -22
  761. package/front_end/panels/changes/changesView.css +2 -2
  762. package/front_end/panels/console/ConsoleContextSelector.ts +1 -2
  763. package/front_end/panels/console/ConsoleFilter.ts +3 -3
  764. package/front_end/panels/console/ConsolePinPane.ts +9 -11
  765. package/front_end/panels/console/ConsolePrompt.ts +5 -8
  766. package/front_end/panels/console/ConsoleSidebar.ts +5 -9
  767. package/front_end/panels/console/ConsoleView.test.ts +33 -6
  768. package/front_end/panels/console/ConsoleView.ts +63 -60
  769. package/front_end/panels/console/ConsoleViewMessage.test.ts +81 -12
  770. package/front_end/panels/console/ConsoleViewMessage.ts +45 -7
  771. package/front_end/panels/console/ConsoleViewport.ts +2 -2
  772. package/front_end/panels/console/ErrorStackParser.test.ts +42 -22
  773. package/front_end/panels/console/ErrorStackParser.ts +10 -2
  774. package/front_end/panels/console/consolePinPane.css +1 -1
  775. package/front_end/panels/console/consoleSidebar.css +4 -0
  776. package/front_end/panels/console/consoleView.css +24 -10
  777. package/front_end/panels/console_counters/WarningErrorCounter.ts +1 -0
  778. package/front_end/panels/coverage/CoverageDecorationManager.test.ts +4 -3
  779. package/front_end/panels/coverage/CoverageListView.ts +2 -5
  780. package/front_end/panels/coverage/CoverageModel.ts +8 -8
  781. package/front_end/panels/coverage/CoverageView.test.ts +4 -6
  782. package/front_end/panels/coverage/CoverageView.ts +11 -7
  783. package/front_end/panels/coverage/coverageView.css +1 -2
  784. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +8 -13
  785. package/front_end/panels/css_overview/CSSOverviewController.ts +8 -8
  786. package/front_end/panels/css_overview/CSSOverviewPanel.ts +1 -4
  787. package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -5
  788. package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +9 -11
  789. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +6 -4
  790. package/front_end/panels/css_overview/cssOverviewCompletedView.css +3 -2
  791. package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +150 -234
  792. package/front_end/panels/developer_resources/DeveloperResourcesView.test.ts +7 -6
  793. package/front_end/panels/developer_resources/DeveloperResourcesView.ts +31 -13
  794. package/front_end/panels/developer_resources/developerResourcesListView.css +4 -8
  795. package/front_end/panels/developer_resources/developerResourcesView.css +0 -1
  796. package/front_end/panels/elements/AccessibilityTreeUtils.ts +3 -3
  797. package/front_end/panels/elements/AccessibilityTreeView.test.ts +3 -1
  798. package/front_end/panels/elements/AccessibilityTreeView.ts +5 -1
  799. package/front_end/panels/elements/CSSRuleValidator.ts +4 -10
  800. package/front_end/panels/elements/ClassesPaneWidget.ts +4 -4
  801. package/front_end/panels/elements/ColorSwatchPopoverIcon.test.ts +63 -0
  802. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +44 -18
  803. package/front_end/panels/elements/ComputedStyleModel.test.ts +157 -0
  804. package/front_end/panels/elements/ComputedStyleModel.ts +81 -19
  805. package/front_end/panels/elements/ComputedStyleWidget.test.ts +133 -52
  806. package/front_end/panels/elements/ComputedStyleWidget.ts +34 -26
  807. package/front_end/panels/elements/DOMLinkifier.ts +18 -17
  808. package/front_end/panels/elements/ElementStatePaneWidget.test.ts +9 -20
  809. package/front_end/panels/elements/ElementStatePaneWidget.ts +12 -3
  810. package/front_end/panels/elements/ElementsPanel.ts +24 -27
  811. package/front_end/panels/elements/ElementsSidebarPane.ts +11 -7
  812. package/front_end/panels/elements/ElementsTreeElement.ts +20 -22
  813. package/front_end/panels/elements/ElementsTreeOutline.test.ts +93 -0
  814. package/front_end/panels/elements/ElementsTreeOutline.ts +19 -15
  815. package/front_end/panels/elements/EventListenersWidget.ts +1 -1
  816. package/front_end/panels/elements/LayersWidget.ts +3 -3
  817. package/front_end/panels/elements/MetricsSidebarPane.ts +4 -6
  818. package/front_end/panels/elements/NodeStackTraceWidget.ts +1 -1
  819. package/front_end/panels/elements/PlatformFontsWidget.ts +5 -9
  820. package/front_end/panels/elements/PropertiesWidget.ts +4 -6
  821. package/front_end/panels/elements/PropertyRenderer.test.ts +5 -5
  822. package/front_end/panels/elements/PropertyRenderer.ts +31 -16
  823. package/front_end/panels/elements/StylePropertiesSection.test.ts +23 -52
  824. package/front_end/panels/elements/StylePropertiesSection.ts +19 -14
  825. package/front_end/panels/elements/StylePropertyHighlighter.test.ts +5 -1
  826. package/front_end/panels/elements/StylePropertyTreeElement.test.ts +191 -190
  827. package/front_end/panels/elements/StylePropertyTreeElement.ts +331 -178
  828. package/front_end/panels/elements/StylesSidebarPane.test.ts +431 -33
  829. package/front_end/panels/elements/StylesSidebarPane.ts +182 -51
  830. package/front_end/panels/elements/TopLayerContainer.ts +1 -2
  831. package/front_end/panels/elements/WebCustomData.test.ts +1 -1
  832. package/front_end/panels/elements/components/AccessibilityTreeNode.test.ts +3 -5
  833. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +12 -12
  834. package/front_end/panels/elements/components/AnchorFunctionLinkSwatch.ts +17 -13
  835. package/front_end/panels/elements/components/CSSHintDetailsView.ts +6 -4
  836. package/front_end/panels/elements/components/CSSPropertyDocsView.ts +8 -6
  837. package/front_end/panels/elements/components/CSSPropertyIconResolver.ts +31 -9
  838. package/front_end/panels/elements/components/CSSQuery.ts +15 -7
  839. package/front_end/panels/elements/components/CSSVariableValueView.ts +9 -5
  840. package/front_end/panels/elements/components/ComputedStyleProperty.ts +5 -3
  841. package/front_end/panels/elements/components/ComputedStyleTrace.ts +6 -4
  842. package/front_end/panels/elements/components/ElementsBreadcrumbs.test.ts +13 -15
  843. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +18 -15
  844. package/front_end/panels/elements/components/ElementsTreeExpandButton.test.ts +3 -5
  845. package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +6 -4
  846. package/front_end/panels/elements/components/LayoutPane.test.ts +14 -10
  847. package/front_end/panels/elements/components/LayoutPane.ts +18 -12
  848. package/front_end/panels/elements/components/QueryContainer.test.ts +1 -1
  849. package/front_end/panels/elements/components/QueryContainer.ts +17 -13
  850. package/front_end/panels/elements/components/StylePropertyEditor.ts +11 -7
  851. package/front_end/panels/elements/components/components.ts +0 -2
  852. package/front_end/panels/elements/components/layoutPane.css +1 -1
  853. package/front_end/panels/elements/elements.ts +0 -2
  854. package/front_end/panels/elements/elementsPanel.css +4 -4
  855. package/front_end/panels/elements/elementsTreeOutline.css +9 -10
  856. package/front_end/panels/elements/metricsSidebarPane.css +1 -1
  857. package/front_end/panels/elements/stylePropertiesTreeOutline.css +8 -0
  858. package/front_end/panels/emulation/DeviceModeToolbar.ts +28 -43
  859. package/front_end/panels/emulation/DeviceModeView.ts +19 -23
  860. package/front_end/panels/emulation/DeviceModeWrapper.ts +27 -2
  861. package/front_end/panels/emulation/InspectedPagePlaceholder.ts +5 -5
  862. package/front_end/panels/emulation/MediaQueryInspector.test.ts +2 -2
  863. package/front_end/panels/emulation/MediaQueryInspector.ts +1 -1
  864. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +3 -6
  865. package/front_end/panels/emulation/deviceModeView.css +26 -29
  866. package/front_end/panels/emulation/emulation-meta.ts +0 -1
  867. package/front_end/panels/emulation/mediaQueryInspector.css +3 -6
  868. package/front_end/panels/event_listeners/EventListenersUtils.ts +4 -3
  869. package/front_end/panels/event_listeners/EventListenersView.ts +3 -6
  870. package/front_end/panels/explain/PromptBuilder.test.ts +48 -25
  871. package/front_end/panels/explain/PromptBuilder.ts +10 -11
  872. package/front_end/panels/explain/components/ConsoleInsight.test.ts +263 -1
  873. package/front_end/panels/explain/components/ConsoleInsight.ts +259 -31
  874. package/front_end/panels/explain/components/consoleInsight.css +68 -9
  875. package/front_end/panels/explain/components/consoleInsightSourcesList.css +2 -0
  876. package/front_end/panels/explain/explain-meta.ts +12 -8
  877. package/front_end/panels/issues/AffectedBlockedByResponseView.ts +3 -3
  878. package/front_end/panels/issues/AffectedDescendantsWithinSelectElementView.ts +64 -0
  879. package/front_end/panels/issues/AffectedDirectivesView.ts +2 -2
  880. package/front_end/panels/issues/AffectedHeavyAdView.ts +1 -1
  881. package/front_end/panels/issues/AffectedSharedArrayBufferIssueDetailsView.ts +1 -1
  882. package/front_end/panels/issues/AffectedTrackingSitesView.ts +1 -0
  883. package/front_end/panels/issues/IssueAggregator.test.ts +23 -20
  884. package/front_end/panels/issues/IssueAggregator.ts +25 -10
  885. package/front_end/panels/issues/IssueView.ts +2 -0
  886. package/front_end/panels/issues/IssuesPane.ts +9 -8
  887. package/front_end/panels/issues/components/ElementsPanelLink.ts +6 -4
  888. package/front_end/panels/issues/components/HideIssuesMenu.ts +6 -4
  889. package/front_end/panels/issues/issuesPane.css +1 -1
  890. package/front_end/panels/issues/issuesTree.css +9 -7
  891. package/front_end/panels/layer_viewer/LayerDetailsView.ts +16 -10
  892. package/front_end/panels/layer_viewer/LayerTreeOutline.ts +3 -3
  893. package/front_end/panels/layer_viewer/LayerViewHost.ts +0 -1
  894. package/front_end/panels/layer_viewer/Layers3DView.ts +11 -10
  895. package/front_end/panels/layer_viewer/PaintProfilerView.ts +6 -9
  896. package/front_end/panels/layer_viewer/TransformController.ts +8 -5
  897. package/front_end/panels/layer_viewer/layerDetailsView.css +5 -2
  898. package/front_end/panels/layer_viewer/layers3DView.css +1 -1
  899. package/front_end/panels/layers/LayerTreeModel.ts +5 -5
  900. package/front_end/panels/layers/LayersPanel.ts +1 -2
  901. package/front_end/panels/lighthouse/LighthouseController.ts +9 -9
  902. package/front_end/panels/lighthouse/LighthousePanel.ts +10 -9
  903. package/front_end/panels/lighthouse/LighthouseProtocolService.ts +1 -1
  904. package/front_end/panels/lighthouse/LighthouseReportRenderer.test.ts +1 -1
  905. package/front_end/panels/lighthouse/LighthouseReportSelector.ts +3 -7
  906. package/front_end/panels/lighthouse/LighthouseStartView.ts +5 -2
  907. package/front_end/panels/lighthouse/LighthouseStatusView.ts +2 -2
  908. package/front_end/panels/lighthouse/LighthouseTimespanView.ts +2 -2
  909. package/front_end/panels/lighthouse/lighthousePanel.css +6 -6
  910. package/front_end/panels/lighthouse/lighthouseStartView.css +1 -0
  911. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.test.ts +4 -4
  912. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +14 -14
  913. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.test.ts +3 -3
  914. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +3 -3
  915. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +9 -5
  916. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.test.ts +3 -3
  917. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +26 -26
  918. package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +10 -6
  919. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +9 -5
  920. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.test.ts +2 -2
  921. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.ts +15 -11
  922. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.test.ts +3 -3
  923. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +17 -10
  924. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +4 -3
  925. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +8 -4
  926. package/front_end/panels/linear_memory_inspector/components/valueInterpreterDisplay.css +1 -0
  927. package/front_end/panels/linear_memory_inspector/components/valueInterpreterSettings.css +1 -2
  928. package/front_end/panels/media/EventDisplayTable.ts +2 -5
  929. package/front_end/panels/media/EventTimelineView.ts +3 -3
  930. package/front_end/panels/media/MainView.test.ts +2 -2
  931. package/front_end/panels/media/MediaModel.ts +7 -7
  932. package/front_end/panels/media/PlayerListView.ts +1 -5
  933. package/front_end/panels/media/PlayerMessagesView.ts +6 -9
  934. package/front_end/panels/media/PlayerPropertiesView.ts +5 -8
  935. package/front_end/panels/mobile_throttling/CalibrationController.ts +368 -0
  936. package/front_end/panels/mobile_throttling/MobileThrottlingSelector.ts +5 -4
  937. package/front_end/panels/mobile_throttling/ThrottlingManager.test.ts +8 -10
  938. package/front_end/panels/mobile_throttling/ThrottlingManager.ts +169 -91
  939. package/front_end/panels/mobile_throttling/ThrottlingPresets.ts +77 -15
  940. package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +336 -12
  941. package/front_end/panels/mobile_throttling/mobile_throttling-meta.ts +1 -0
  942. package/front_end/panels/mobile_throttling/throttlingSettingsTab.css +45 -8
  943. package/front_end/panels/network/BinaryResourceView.ts +7 -9
  944. package/front_end/panels/network/BlockedURLsPane.test.ts +4 -2
  945. package/front_end/panels/network/BlockedURLsPane.ts +10 -8
  946. package/front_end/panels/network/EventSourceMessagesView.ts +6 -5
  947. package/front_end/panels/network/NetworkConfigView.test.ts +15 -0
  948. package/front_end/panels/network/NetworkConfigView.ts +13 -15
  949. package/front_end/panels/network/NetworkDataGridNode.test.ts +40 -60
  950. package/front_end/panels/network/NetworkDataGridNode.ts +4 -4
  951. package/front_end/panels/network/NetworkItemView.test.ts +26 -28
  952. package/front_end/panels/network/NetworkItemView.ts +9 -11
  953. package/front_end/panels/network/NetworkLogView.test.ts +70 -40
  954. package/front_end/panels/network/NetworkLogView.ts +20 -19
  955. package/front_end/panels/network/NetworkLogViewColumns.ts +5 -8
  956. package/front_end/panels/network/NetworkManageCustomHeadersView.ts +3 -3
  957. package/front_end/panels/network/NetworkOverview.test.ts +2 -4
  958. package/front_end/panels/network/NetworkOverview.ts +14 -16
  959. package/front_end/panels/network/NetworkPanel.test.ts +6 -9
  960. package/front_end/panels/network/NetworkPanel.ts +45 -49
  961. package/front_end/panels/network/NetworkSearchScope.test.ts +5 -5
  962. package/front_end/panels/network/NetworkTimeCalculator.ts +3 -3
  963. package/front_end/panels/network/NetworkWaterfallColumn.ts +8 -8
  964. package/front_end/panels/network/RequestCookiesView.test.ts +5 -4
  965. package/front_end/panels/network/RequestCookiesView.ts +4 -6
  966. package/front_end/panels/network/RequestHTMLView.ts +2 -1
  967. package/front_end/panels/network/RequestInitiatorView.ts +5 -5
  968. package/front_end/panels/network/RequestPayloadView.ts +22 -14
  969. package/front_end/panels/network/RequestPreviewView.test.ts +8 -9
  970. package/front_end/panels/network/RequestPreviewView.ts +5 -3
  971. package/front_end/panels/network/RequestResponseView.test.ts +8 -8
  972. package/front_end/panels/network/RequestResponseView.ts +8 -3
  973. package/front_end/panels/network/RequestTimingView.test.ts +6 -4
  974. package/front_end/panels/network/RequestTimingView.ts +10 -11
  975. package/front_end/panels/network/ResourceWebSocketFrameView.ts +11 -5
  976. package/front_end/panels/network/SignedExchangeInfoView.ts +6 -10
  977. package/front_end/panels/network/binaryResourceView.css +1 -1
  978. package/front_end/panels/network/blockedURLsPane.css +1 -2
  979. package/front_end/panels/network/components/EditableSpan.ts +5 -3
  980. package/front_end/panels/network/components/HeaderSectionRow.test.ts +25 -27
  981. package/front_end/panels/network/components/HeaderSectionRow.ts +25 -24
  982. package/front_end/panels/network/components/RequestHeaderSection.test.ts +3 -5
  983. package/front_end/panels/network/components/RequestHeaderSection.ts +9 -5
  984. package/front_end/panels/network/components/RequestHeadersView.test.ts +42 -49
  985. package/front_end/panels/network/components/RequestHeadersView.ts +30 -28
  986. package/front_end/panels/network/components/RequestTrustTokensView.test.ts +1 -1
  987. package/front_end/panels/network/components/RequestTrustTokensView.ts +29 -19
  988. package/front_end/panels/network/components/ResponseHeaderSection.test.ts +57 -66
  989. package/front_end/panels/network/components/ResponseHeaderSection.ts +8 -8
  990. package/front_end/panels/network/components/WebBundleInfoView.css +8 -0
  991. package/front_end/panels/network/components/WebBundleInfoView.ts +32 -49
  992. package/front_end/panels/network/network-meta.ts +5 -2
  993. package/front_end/panels/network/networkConfigView.css +3 -11
  994. package/front_end/panels/network/networkLogView.css +3 -6
  995. package/front_end/panels/network/networkManageCustomHeadersView.css +7 -11
  996. package/front_end/panels/network/networkPanel.css +9 -12
  997. package/front_end/panels/network/networkTimingTable.css +1 -1
  998. package/front_end/panels/network/requestInitiatorView.css +1 -1
  999. package/front_end/panels/network/webSocketFrameView.css +2 -2
  1000. package/front_end/panels/performance_monitor/PerformanceMonitor.ts +8 -8
  1001. package/front_end/panels/performance_monitor/performanceMonitor.css +1 -2
  1002. package/front_end/panels/profiler/HeapDetachedElementsView.ts +9 -5
  1003. package/front_end/panels/profiler/HeapProfileView.ts +7 -7
  1004. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +5 -5
  1005. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +17 -17
  1006. package/front_end/panels/profiler/HeapSnapshotProxy.ts +3 -3
  1007. package/front_end/panels/profiler/HeapSnapshotView.ts +37 -18
  1008. package/front_end/panels/profiler/HeapTimelineOverview.ts +5 -6
  1009. package/front_end/panels/profiler/IsolateSelector.ts +1 -1
  1010. package/front_end/panels/profiler/LiveHeapProfileView.ts +5 -3
  1011. package/front_end/panels/profiler/ProfileDataGrid.ts +1 -2
  1012. package/front_end/panels/profiler/ProfileFlameChartDataProvider.ts +6 -7
  1013. package/front_end/panels/profiler/ProfileHeader.ts +12 -12
  1014. package/front_end/panels/profiler/ProfileLauncherView.ts +11 -17
  1015. package/front_end/panels/profiler/ProfileSidebarTreeElement.ts +8 -2
  1016. package/front_end/panels/profiler/ProfileView.ts +1 -1
  1017. package/front_end/panels/profiler/ProfilesPanel.ts +16 -12
  1018. package/front_end/panels/profiler/TopDownProfileDataGrid.ts +2 -2
  1019. package/front_end/panels/profiler/heapProfiler.css +8 -4
  1020. package/front_end/panels/profiler/liveHeapProfile.css +1 -1
  1021. package/front_end/panels/profiler/profileLauncherView.css +27 -33
  1022. package/front_end/panels/profiler/profilesPanel.css +1 -4
  1023. package/front_end/panels/profiler/profilesSidebarTree.css +10 -0
  1024. package/front_end/panels/protocol_monitor/{components/JSONEditor.css → JSONEditor.css} +6 -1
  1025. package/front_end/panels/protocol_monitor/{components/JSONEditor.test.ts → JSONEditor.test.ts} +124 -127
  1026. package/front_end/panels/protocol_monitor/{components/JSONEditor.ts → JSONEditor.ts} +159 -82
  1027. package/front_end/panels/protocol_monitor/ProtocolMonitor.test.ts +12 -12
  1028. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +293 -360
  1029. package/front_end/panels/protocol_monitor/protocol_monitor.ts +2 -2
  1030. package/front_end/panels/recorder/RecorderController.test.ts +10 -14
  1031. package/front_end/panels/recorder/RecorderController.ts +53 -23
  1032. package/front_end/panels/recorder/components/ControlButton.ts +7 -3
  1033. package/front_end/panels/recorder/components/CreateRecordingView.test.ts +9 -9
  1034. package/front_end/panels/recorder/components/CreateRecordingView.ts +8 -6
  1035. package/front_end/panels/recorder/components/ExtensionView.ts +8 -4
  1036. package/front_end/panels/recorder/components/RecordingListView.test.ts +7 -9
  1037. package/front_end/panels/recorder/components/RecordingListView.ts +8 -4
  1038. package/front_end/panels/recorder/components/RecordingView.test.ts +7 -9
  1039. package/front_end/panels/recorder/components/RecordingView.ts +22 -20
  1040. package/front_end/panels/recorder/components/ReplaySection.test.ts +3 -5
  1041. package/front_end/panels/recorder/components/ReplaySection.ts +3 -3
  1042. package/front_end/panels/recorder/components/SelectButton.test.ts +3 -5
  1043. package/front_end/panels/recorder/components/SelectButton.ts +14 -10
  1044. package/front_end/panels/recorder/components/StepEditor.test.ts +38 -38
  1045. package/front_end/panels/recorder/components/StepEditor.ts +18 -14
  1046. package/front_end/panels/recorder/components/StepView.test.ts +10 -10
  1047. package/front_end/panels/recorder/components/StepView.ts +23 -20
  1048. package/front_end/panels/recorder/components/TimelineSection.ts +9 -5
  1049. package/front_end/panels/recorder/components/components.ts +0 -2
  1050. package/front_end/panels/recorder/components/controlButton.css +3 -4
  1051. package/front_end/panels/recorder/components/stepView.css +4 -4
  1052. package/front_end/panels/recorder/controllers/SelectorPicker.ts +3 -4
  1053. package/front_end/panels/recorder/converters/Converter.ts +1 -1
  1054. package/front_end/panels/recorder/converters/LighthouseConverter.test.ts +1 -1
  1055. package/front_end/panels/recorder/converters/PuppeteerConverter.test.ts +2 -2
  1056. package/front_end/panels/recorder/converters/PuppeteerReplayConverter.test.ts +1 -1
  1057. package/front_end/panels/recorder/extensions/ExtensionManager.ts +3 -3
  1058. package/front_end/panels/recorder/injected/injected.ts +2 -2
  1059. package/front_end/panels/recorder/injected/selectors/CSSSelector.test.ts +0 -2
  1060. package/front_end/panels/recorder/models/RecordingPlayer.test.ts +7 -7
  1061. package/front_end/panels/recorder/models/RecordingPlayer.ts +10 -13
  1062. package/front_end/panels/recorder/models/RecordingSession.ts +31 -34
  1063. package/front_end/panels/recorder/models/Schema.ts +1 -1
  1064. package/front_end/panels/recorder/models/SchemaUtils.ts +10 -4
  1065. package/front_end/panels/recorder/models/ScreenshotUtils.test.ts +4 -4
  1066. package/front_end/panels/recorder/models/Section.test.ts +5 -5
  1067. package/front_end/panels/recorder/models/recording-storage.test.ts +1 -1
  1068. package/front_end/panels/recorder/models/screenshot-storage.test.ts +1 -1
  1069. package/front_end/panels/recorder/recorderController.css +2 -1
  1070. package/front_end/panels/recorder/util/util.ts +1 -1
  1071. package/front_end/panels/screencast/ScreencastView.ts +22 -40
  1072. package/front_end/panels/screencast/screencastView.css +1 -0
  1073. package/front_end/panels/search/SearchResultsPane.ts +1 -4
  1074. package/front_end/panels/search/SearchView.ts +10 -9
  1075. package/front_end/panels/security/CookieControlsTreeElement.ts +7 -4
  1076. package/front_end/panels/security/CookieControlsView.test.ts +40 -3
  1077. package/front_end/panels/security/CookieControlsView.ts +204 -66
  1078. package/front_end/panels/security/CookieReportTreeElement.ts +7 -4
  1079. package/front_end/panels/security/CookieReportView.test.ts +23 -23
  1080. package/front_end/panels/security/CookieReportView.ts +277 -44
  1081. package/front_end/panels/security/OriginTreeElement.ts +2 -3
  1082. package/front_end/panels/security/SecurityModel.ts +3 -3
  1083. package/front_end/panels/security/SecurityPanel.test.ts +43 -3
  1084. package/front_end/panels/security/SecurityPanel.ts +49 -52
  1085. package/front_end/panels/security/SecurityPanelSidebar.ts +82 -23
  1086. package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +21 -2
  1087. package/front_end/panels/security/cookieControlsView.css +29 -4
  1088. package/front_end/panels/security/cookieReportView.css +4 -3
  1089. package/front_end/panels/security/mainView.css +1 -2
  1090. package/front_end/panels/security/originView.css +1 -2
  1091. package/front_end/panels/security/security-meta.ts +20 -7
  1092. package/front_end/panels/sensors/LocationsSettingsTab.ts +18 -19
  1093. package/front_end/panels/sensors/SensorsView.ts +11 -15
  1094. package/front_end/panels/sensors/locationsSettingsTab.css +1 -1
  1095. package/front_end/panels/sensors/sensors.css +2 -5
  1096. package/front_end/panels/settings/AISettingsTab.test.ts +52 -7
  1097. package/front_end/panels/settings/AISettingsTab.ts +115 -59
  1098. package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +21 -32
  1099. package/front_end/panels/settings/KeybindsSettingsTab.ts +18 -20
  1100. package/front_end/panels/settings/SettingsScreen.ts +12 -12
  1101. package/front_end/panels/settings/aiSettingsTab.css +14 -4
  1102. package/front_end/panels/settings/components/SyncSection.test.ts +2 -2
  1103. package/front_end/panels/settings/components/SyncSection.ts +9 -6
  1104. package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +13 -18
  1105. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +14 -10
  1106. package/front_end/panels/settings/emulation/components/userAgentClientHintsForm.css +1 -2
  1107. package/front_end/panels/settings/emulation/devicesSettingsTab.css +3 -1
  1108. package/front_end/panels/settings/emulation/utils/StructuredHeaders.test.ts +2 -2
  1109. package/front_end/panels/settings/emulation/utils/UserAgentMetadata.ts +5 -5
  1110. package/front_end/panels/settings/keybindsSettingsTab.css +5 -9
  1111. package/front_end/panels/settings/settingsScreen.css +31 -13
  1112. package/front_end/panels/snippets/ScriptSnippetFileSystem.test.ts +4 -2
  1113. package/front_end/panels/snippets/SnippetsQuickOpen.ts +9 -3
  1114. package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -4
  1115. package/front_end/panels/sources/BreakpointEditDialog.test.ts +2 -3
  1116. package/front_end/panels/sources/BreakpointEditDialog.ts +6 -11
  1117. package/front_end/panels/sources/CSSPlugin.test.ts +4 -3
  1118. package/front_end/panels/sources/CallStackSidebarPane.ts +4 -7
  1119. package/front_end/panels/sources/CoveragePlugin.test.ts +4 -2
  1120. package/front_end/panels/sources/CoveragePlugin.ts +4 -0
  1121. package/front_end/panels/sources/DebuggerPausedMessage.ts +3 -3
  1122. package/front_end/panels/sources/DebuggerPlugin.test.ts +9 -7
  1123. package/front_end/panels/sources/DebuggerPlugin.ts +20 -16
  1124. package/front_end/panels/sources/FilePathScoreFunction.ts +39 -19
  1125. package/front_end/panels/sources/FilteredUISourceCodeListProvider.test.ts +3 -3
  1126. package/front_end/panels/sources/FilteredUISourceCodeListProvider.ts +2 -1
  1127. package/front_end/panels/sources/GoToLineQuickOpen.ts +16 -22
  1128. package/front_end/panels/sources/NavigatorView.test.ts +12 -10
  1129. package/front_end/panels/sources/NavigatorView.ts +34 -24
  1130. package/front_end/panels/sources/OpenFileQuickOpen.ts +2 -2
  1131. package/front_end/panels/sources/OutlineQuickOpen.ts +10 -7
  1132. package/front_end/panels/sources/Plugin.ts +1 -1
  1133. package/front_end/panels/sources/ProfilePlugin.ts +5 -1
  1134. package/front_end/panels/sources/ScopeChainSidebarPane.ts +2 -5
  1135. package/front_end/panels/sources/SnippetsPlugin.ts +2 -2
  1136. package/front_end/panels/sources/SourcesNavigator.test.ts +41 -39
  1137. package/front_end/panels/sources/SourcesNavigator.ts +45 -49
  1138. package/front_end/panels/sources/SourcesPanel.ts +13 -10
  1139. package/front_end/panels/sources/SourcesView.test.ts +16 -15
  1140. package/front_end/panels/sources/SourcesView.ts +39 -28
  1141. package/front_end/panels/sources/TabbedEditorContainer.test.ts +17 -24
  1142. package/front_end/panels/sources/TabbedEditorContainer.ts +7 -7
  1143. package/front_end/panels/sources/ThreadsSidebarPane.ts +1 -4
  1144. package/front_end/panels/sources/UISourceCodeFrame.ts +9 -8
  1145. package/front_end/panels/sources/WatchExpressionsSidebarPane.ts +7 -11
  1146. package/front_end/panels/sources/components/BreakpointsView.test.ts +47 -48
  1147. package/front_end/panels/sources/components/BreakpointsView.ts +22 -20
  1148. package/front_end/panels/sources/components/BreakpointsViewUtils.test.ts +44 -42
  1149. package/front_end/panels/sources/components/HeadersView.test.ts +24 -24
  1150. package/front_end/panels/sources/components/HeadersView.ts +18 -18
  1151. package/front_end/panels/sources/components/breakpointsView.css +7 -7
  1152. package/front_end/panels/sources/dialog.css +1 -1
  1153. package/front_end/panels/sources/navigatorTree.css +4 -4
  1154. package/front_end/panels/sources/sources-meta.ts +29 -6
  1155. package/front_end/panels/sources/sourcesPanel.css +5 -0
  1156. package/front_end/panels/sources/sourcesView.css +0 -4
  1157. package/front_end/panels/timeline/AnimationsTrackAppender.ts +0 -5
  1158. package/front_end/panels/timeline/AnnotationHelpers.test.ts +4 -4
  1159. package/front_end/panels/timeline/AnnotationHelpers.ts +8 -9
  1160. package/front_end/panels/timeline/AppenderUtils.ts +18 -13
  1161. package/front_end/panels/timeline/BenchmarkEvents.ts +1 -1
  1162. package/front_end/panels/timeline/Breadcrumbs.test.ts +29 -29
  1163. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +46 -60
  1164. package/front_end/panels/timeline/CountersGraph.ts +8 -6
  1165. package/front_end/panels/timeline/EntriesFilter.test.ts +20 -71
  1166. package/front_end/panels/timeline/EntriesFilter.ts +18 -33
  1167. package/front_end/panels/timeline/EventsTimelineTreeView.ts +6 -11
  1168. package/front_end/panels/timeline/ExtensionTrackAppender.ts +9 -4
  1169. package/front_end/panels/timeline/Initiators.test.ts +149 -168
  1170. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +25 -45
  1171. package/front_end/panels/timeline/ModificationsManager.test.ts +23 -23
  1172. package/front_end/panels/timeline/ModificationsManager.ts +8 -9
  1173. package/front_end/panels/timeline/NetworkTrackAppender.ts +8 -10
  1174. package/front_end/panels/timeline/README.md +30 -0
  1175. package/front_end/panels/timeline/ServerTimingsTrackAppender.ts +0 -4
  1176. package/front_end/panels/timeline/ThirdPartyTreeView.test.ts +68 -0
  1177. package/front_end/panels/timeline/ThirdPartyTreeView.ts +300 -0
  1178. package/front_end/panels/timeline/ThreadAppender.ts +6 -13
  1179. package/front_end/panels/timeline/TimelineController.ts +53 -8
  1180. package/front_end/panels/timeline/TimelineDetailsView.test.ts +37 -19
  1181. package/front_end/panels/timeline/TimelineDetailsView.ts +94 -37
  1182. package/front_end/panels/timeline/TimelineEventOverview.ts +28 -28
  1183. package/front_end/panels/timeline/TimelineFilters.test.ts +5 -7
  1184. package/front_end/panels/timeline/TimelineFilters.ts +2 -2
  1185. package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +8 -11
  1186. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +135 -124
  1187. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +10 -11
  1188. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +49 -47
  1189. package/front_end/panels/timeline/TimelineFlameChartView.test.ts +255 -222
  1190. package/front_end/panels/timeline/TimelineFlameChartView.ts +409 -108
  1191. package/front_end/panels/timeline/TimelineHistoryManager.test.ts +10 -46
  1192. package/front_end/panels/timeline/TimelineHistoryManager.ts +29 -61
  1193. package/front_end/panels/timeline/TimelineLayersView.ts +1 -1
  1194. package/front_end/panels/timeline/TimelineLoader.test.ts +11 -11
  1195. package/front_end/panels/timeline/TimelineLoader.ts +17 -20
  1196. package/front_end/panels/timeline/TimelineMiniMap.test.ts +2 -3
  1197. package/front_end/panels/timeline/TimelineMiniMap.ts +11 -21
  1198. package/front_end/panels/timeline/TimelinePaintProfilerView.ts +3 -6
  1199. package/front_end/panels/timeline/TimelinePanel.test.ts +140 -0
  1200. package/front_end/panels/timeline/TimelinePanel.ts +349 -218
  1201. package/front_end/panels/timeline/TimelineSelection.test.ts +1 -1
  1202. package/front_end/panels/timeline/TimelineSelection.ts +9 -9
  1203. package/front_end/panels/timeline/TimelineSelectorStatsView.ts +148 -186
  1204. package/front_end/panels/timeline/TimelineTreeView.test.ts +24 -22
  1205. package/front_end/panels/timeline/TimelineTreeView.ts +155 -53
  1206. package/front_end/panels/timeline/TimelineUIUtils.test.ts +254 -127
  1207. package/front_end/panels/timeline/TimelineUIUtils.ts +171 -265
  1208. package/front_end/panels/timeline/TimingsTrackAppender.ts +28 -86
  1209. package/front_end/panels/timeline/components/Breadcrumbs.ts +3 -3
  1210. package/front_end/panels/timeline/components/BreadcrumbsUI.test.ts +14 -16
  1211. package/front_end/panels/timeline/components/BreadcrumbsUI.ts +10 -6
  1212. package/front_end/panels/timeline/components/CPUThrottlingSelector.test.ts +19 -13
  1213. package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +135 -32
  1214. package/front_end/panels/timeline/components/DetailsView.ts +2 -2
  1215. package/front_end/panels/timeline/components/FieldSettingsDialog.test.ts +54 -311
  1216. package/front_end/panels/timeline/components/FieldSettingsDialog.ts +26 -264
  1217. package/front_end/panels/timeline/components/IgnoreListSetting.test.ts +423 -0
  1218. package/front_end/panels/timeline/components/IgnoreListSetting.ts +384 -0
  1219. package/front_end/panels/timeline/components/InteractionBreakdown.test.ts +2 -3
  1220. package/front_end/panels/timeline/components/InteractionBreakdown.ts +8 -4
  1221. package/front_end/panels/timeline/components/LayoutShiftDetails.ts +58 -38
  1222. package/front_end/panels/timeline/components/LiveMetricsView.test.ts +85 -118
  1223. package/front_end/panels/timeline/components/LiveMetricsView.ts +135 -160
  1224. package/front_end/panels/timeline/components/MetricCard.test.ts +58 -37
  1225. package/front_end/panels/timeline/components/MetricCard.ts +30 -46
  1226. package/front_end/panels/timeline/components/MetricCompareStrings.ts +9 -9
  1227. package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +4 -1
  1228. package/front_end/panels/timeline/components/NetworkRequestDetails.ts +52 -35
  1229. package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +18 -15
  1230. package/front_end/panels/timeline/components/NetworkThrottlingSelector.test.ts +14 -15
  1231. package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +43 -9
  1232. package/front_end/panels/timeline/components/OriginMap.test.ts +359 -0
  1233. package/front_end/panels/timeline/components/OriginMap.ts +278 -0
  1234. package/front_end/panels/timeline/components/RelatedInsightChips.test.ts +37 -6
  1235. package/front_end/panels/timeline/components/RelatedInsightChips.ts +42 -14
  1236. package/front_end/panels/timeline/components/Sidebar.test.ts +87 -15
  1237. package/front_end/panels/timeline/components/Sidebar.ts +25 -35
  1238. package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +23 -26
  1239. package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +23 -15
  1240. package/front_end/panels/timeline/components/SidebarInsightsTab.test.ts +2 -4
  1241. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +30 -14
  1242. package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +93 -19
  1243. package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +271 -96
  1244. package/front_end/panels/timeline/components/TimelineSummary.test.ts +4 -2
  1245. package/front_end/panels/timeline/components/TimelineSummary.ts +40 -36
  1246. package/front_end/panels/timeline/components/Utils.test.ts +18 -20
  1247. package/front_end/panels/timeline/components/Utils.ts +52 -5
  1248. package/front_end/panels/timeline/components/breadcrumbsUI.css +1 -2
  1249. package/front_end/panels/timeline/components/components.ts +4 -0
  1250. package/front_end/panels/timeline/components/cpuThrottlingSelector.css +5 -2
  1251. package/front_end/panels/timeline/components/fieldSettingsDialog.css +13 -13
  1252. package/front_end/panels/timeline/components/ignoreListSetting.css +67 -0
  1253. package/front_end/panels/timeline/components/insights/BaseInsightComponent.test.ts +12 -12
  1254. package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +65 -25
  1255. package/front_end/panels/timeline/components/insights/CLSCulprits.test.ts +44 -0
  1256. package/front_end/panels/timeline/components/insights/CLSCulprits.ts +31 -114
  1257. package/front_end/panels/timeline/components/insights/Checklist.ts +108 -0
  1258. package/front_end/panels/timeline/components/insights/DOMSize.ts +127 -0
  1259. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +18 -109
  1260. package/front_end/panels/timeline/components/insights/EventRef.ts +13 -20
  1261. package/front_end/panels/timeline/components/insights/FontDisplay.ts +9 -26
  1262. package/front_end/panels/timeline/components/insights/ForcedReflow.ts +105 -0
  1263. package/front_end/panels/timeline/components/insights/ImageDelivery.ts +29 -72
  1264. package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +15 -44
  1265. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +33 -96
  1266. package/front_end/panels/timeline/components/insights/LCPPhases.ts +22 -58
  1267. package/front_end/panels/timeline/components/insights/LongCriticalNetworkTree.ts +53 -0
  1268. package/front_end/panels/timeline/components/insights/NodeLink.ts +42 -27
  1269. package/front_end/panels/timeline/components/insights/README.md +16 -32
  1270. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +16 -31
  1271. package/front_end/panels/timeline/components/insights/SidebarInsight.ts +4 -4
  1272. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +53 -66
  1273. package/front_end/panels/timeline/components/insights/Table.ts +30 -14
  1274. package/front_end/panels/timeline/components/insights/ThirdParties.ts +33 -42
  1275. package/front_end/panels/timeline/components/insights/Viewport.ts +16 -19
  1276. package/front_end/panels/timeline/components/insights/baseInsightComponent.css +14 -43
  1277. package/front_end/panels/timeline/components/insights/checklist.css +33 -0
  1278. package/front_end/panels/timeline/components/insights/insights.ts +8 -0
  1279. package/front_end/panels/timeline/components/insights/table.css +2 -1
  1280. package/front_end/panels/timeline/components/layoutShiftDetails.css +1 -0
  1281. package/front_end/panels/timeline/components/liveMetricsView.css +41 -2
  1282. package/front_end/panels/timeline/components/metricCard.css +39 -4
  1283. package/front_end/panels/timeline/components/networkThrottlingSelector.css +5 -2
  1284. package/front_end/panels/timeline/components/originMap.css +71 -0
  1285. package/front_end/panels/timeline/components/relatedInsightChips.css +29 -0
  1286. package/front_end/panels/timeline/components/sidebarAnnotationsTab.css +1 -1
  1287. package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +62 -3
  1288. package/front_end/panels/timeline/components/timelineSummary.css +15 -11
  1289. package/front_end/panels/timeline/docs/flame_chart_migration.md +1 -3
  1290. package/front_end/panels/timeline/docs/sync_tracks.md +1 -1
  1291. package/front_end/panels/timeline/enable-easter-egg.js +1 -0
  1292. package/front_end/panels/timeline/fixtures/traces/README.md +46 -5
  1293. package/front_end/panels/timeline/fixtures/traces/async-js-calls.json.gz +0 -0
  1294. package/front_end/panels/timeline/fixtures/traces/crux.json.gz +0 -0
  1295. package/front_end/panels/timeline/fixtures/traces/dom-size-long.json.gz +0 -0
  1296. package/front_end/panels/timeline/fixtures/traces/dom-size-overlap.json.gz +0 -0
  1297. package/front_end/panels/timeline/fixtures/traces/dom-size.json.gz +0 -0
  1298. package/front_end/panels/timeline/fixtures/traces/extension-tracks-and-marks.json.gz +0 -0
  1299. package/front_end/panels/timeline/fixtures/traces/forced-reflow.json.gz +0 -0
  1300. package/front_end/panels/timeline/fixtures/traces/image-delivery.json.gz +0 -0
  1301. package/front_end/panels/timeline/fixtures/traces/lcp-fetchpriority-high.json.gz +0 -0
  1302. package/front_end/panels/timeline/fixtures/traces/lcp-late-paint-event.json.gz +0 -0
  1303. package/front_end/panels/timeline/fixtures/traces/lcp-multiple-frames.json.gz +0 -0
  1304. package/front_end/panels/timeline/fixtures/traces/multi-frame-dom-stats.json.gz +0 -0
  1305. package/front_end/panels/timeline/fixtures/traces/timings-track.json.gz +0 -0
  1306. package/front_end/panels/timeline/fixtures/traces/web-dev-animation-frames.json.gz +0 -0
  1307. package/front_end/panels/timeline/fixtures/traces/web-dev-initial-url.json.gz +0 -0
  1308. package/front_end/panels/timeline/fixtures/traces/web-dev-screenshot-source-ids.json.gz +0 -0
  1309. package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +87 -25
  1310. package/front_end/panels/timeline/overlays/OverlaysImpl.ts +306 -102
  1311. package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +49 -39
  1312. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +11 -7
  1313. package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +12 -8
  1314. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.test.ts +1 -2
  1315. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +15 -11
  1316. package/front_end/panels/timeline/timeline.ts +2 -2
  1317. package/front_end/panels/timeline/timelineFlameChartView.css +43 -5
  1318. package/front_end/panels/timeline/timelineFlamechartPopover.css +5 -2
  1319. package/front_end/panels/timeline/timelinePanel.css +227 -23
  1320. package/front_end/panels/timeline/timelineSelectorStatsView.css +9 -0
  1321. package/front_end/panels/timeline/timelineStatusDialog.css +24 -11
  1322. package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +4 -5
  1323. package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +34 -35
  1324. package/front_end/panels/timeline/track_appenders/CompatibilityTracksAppender.test.ts +6 -20
  1325. package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +29 -16
  1326. package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +3 -4
  1327. package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +6 -7
  1328. package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +11 -9
  1329. package/front_end/panels/timeline/track_appenders/NetworkTrackAppender.test.ts +3 -4
  1330. package/front_end/panels/timeline/track_appenders/ServerTimingsTrackAppender.test.ts +7 -11
  1331. package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +21 -19
  1332. package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +11 -72
  1333. package/front_end/panels/timeline/utils/AICallTree.test.ts +123 -22
  1334. package/front_end/panels/timeline/utils/AICallTree.ts +58 -13
  1335. package/front_end/panels/timeline/utils/EntityMapper.test.ts +124 -0
  1336. package/front_end/panels/timeline/utils/EntityMapper.ts +164 -0
  1337. package/front_end/panels/timeline/utils/EntryName.test.ts +15 -0
  1338. package/front_end/panels/timeline/utils/EntryName.ts +13 -1
  1339. package/front_end/panels/timeline/utils/EntryStyles.ts +51 -7
  1340. package/front_end/panels/timeline/utils/Helpers.ts +29 -3
  1341. package/front_end/panels/timeline/utils/IgnoreList.test.ts +6 -6
  1342. package/front_end/panels/timeline/utils/ImageCache.test.ts +5 -4
  1343. package/front_end/panels/timeline/utils/ImageCache.ts +12 -7
  1344. package/front_end/panels/timeline/utils/InsightAIContext.ts +5 -0
  1345. package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +88 -6
  1346. package/front_end/panels/timeline/utils/SourceMapsResolver.ts +28 -26
  1347. package/front_end/panels/timeline/utils/utils.ts +4 -2
  1348. package/front_end/panels/utils/utils.test.ts +28 -34
  1349. package/front_end/panels/web_audio/AudioContextContentBuilder.ts +1 -1
  1350. package/front_end/panels/web_audio/AudioContextSelector.ts +4 -5
  1351. package/front_end/panels/web_audio/WebAudioModel.ts +17 -17
  1352. package/front_end/panels/web_audio/WebAudioView.ts +8 -4
  1353. package/front_end/panels/web_audio/graph_visualizer/GraphView.ts +3 -3
  1354. package/front_end/panels/webauthn/WebauthnPane.test.ts +55 -11
  1355. package/front_end/panels/webauthn/WebauthnPane.ts +58 -37
  1356. package/front_end/panels/webauthn/webauthnPane.css +3 -10
  1357. package/front_end/panels/whats_new/ReleaseNote.test.ts +6 -4
  1358. package/front_end/panels/whats_new/ReleaseNoteText.ts +25 -10
  1359. package/front_end/panels/whats_new/ReleaseNoteView.test.ts +160 -0
  1360. package/front_end/panels/whats_new/ReleaseNoteView.ts +110 -110
  1361. package/front_end/panels/whats_new/WhatsNewImpl.ts +2 -2
  1362. package/front_end/panels/whats_new/releaseNoteView.css +80 -85
  1363. package/front_end/panels/whats_new/resources/WNDT.md +6 -6
  1364. package/front_end/panels/whats_new/whats_new-meta.ts +1 -2
  1365. package/front_end/services/puppeteer/PuppeteerConnection.ts +0 -1
  1366. package/front_end/services/trace_bounds/TraceBounds.test.ts +20 -20
  1367. package/front_end/services/trace_bounds/TraceBounds.ts +10 -12
  1368. package/front_end/testing/AiAssistanceHelpers.ts +142 -0
  1369. package/front_end/testing/DOMHelpers.ts +46 -15
  1370. package/front_end/testing/DataGridHelpers.ts +7 -77
  1371. package/front_end/testing/EnvironmentHelpers.ts +43 -11
  1372. package/front_end/testing/ExpectStubCall.ts +2 -3
  1373. package/front_end/testing/InsightHelpers.ts +11 -0
  1374. package/front_end/testing/LanguagePluginHelpers.ts +4 -2
  1375. package/front_end/testing/MockConnection.ts +11 -16
  1376. package/front_end/testing/MockExecutionContext.ts +4 -4
  1377. package/front_end/testing/MutationHelpers.test.ts +5 -7
  1378. package/front_end/testing/MutationHelpers.ts +1 -1
  1379. package/front_end/testing/NetworkHelpers.ts +2 -4
  1380. package/front_end/testing/OverridesHelpers.ts +4 -2
  1381. package/front_end/testing/RealConnection.ts +1 -1
  1382. package/front_end/testing/ResourceTreeHelpers.ts +4 -2
  1383. package/front_end/testing/StubIssue.ts +1 -1
  1384. package/front_end/testing/StyleHelpers.ts +90 -0
  1385. package/front_end/testing/TraceHelpers.ts +134 -43
  1386. package/front_end/testing/TraceLoader.ts +14 -0
  1387. package/front_end/testing/TrackAsyncOperations.ts +15 -15
  1388. package/front_end/testing/UISourceCodeHelpers.ts +5 -3
  1389. package/front_end/testing/test_setup.ts +4 -3
  1390. package/front_end/third_party/axe-core/README.chromium +2 -2
  1391. package/front_end/third_party/codemirror.next/package.json +1 -1
  1392. package/front_end/third_party/i18n/localized-string-set.ts +14 -4
  1393. package/front_end/third_party/lighthouse/README.chromium +2 -2
  1394. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +1091 -807
  1395. package/front_end/third_party/lighthouse/locales/ar-XB.json +60 -0
  1396. package/front_end/third_party/lighthouse/locales/ar.json +60 -0
  1397. package/front_end/third_party/lighthouse/locales/bg.json +77 -17
  1398. package/front_end/third_party/lighthouse/locales/ca.json +77 -17
  1399. package/front_end/third_party/lighthouse/locales/cs.json +77 -17
  1400. package/front_end/third_party/lighthouse/locales/da.json +77 -17
  1401. package/front_end/third_party/lighthouse/locales/de.json +77 -17
  1402. package/front_end/third_party/lighthouse/locales/el.json +77 -17
  1403. package/front_end/third_party/lighthouse/locales/en-GB.json +70 -10
  1404. package/front_end/third_party/lighthouse/locales/en-US.json +154 -40
  1405. package/front_end/third_party/lighthouse/locales/en-XL.json +154 -40
  1406. package/front_end/third_party/lighthouse/locales/es-419.json +77 -17
  1407. package/front_end/third_party/lighthouse/locales/es.json +60 -0
  1408. package/front_end/third_party/lighthouse/locales/fi.json +60 -0
  1409. package/front_end/third_party/lighthouse/locales/fil.json +60 -0
  1410. package/front_end/third_party/lighthouse/locales/fr.json +77 -17
  1411. package/front_end/third_party/lighthouse/locales/he.json +77 -17
  1412. package/front_end/third_party/lighthouse/locales/hi.json +77 -17
  1413. package/front_end/third_party/lighthouse/locales/hr.json +60 -0
  1414. package/front_end/third_party/lighthouse/locales/hu.json +77 -17
  1415. package/front_end/third_party/lighthouse/locales/id.json +77 -17
  1416. package/front_end/third_party/lighthouse/locales/it.json +77 -17
  1417. package/front_end/third_party/lighthouse/locales/ja.json +60 -0
  1418. package/front_end/third_party/lighthouse/locales/ko.json +60 -0
  1419. package/front_end/third_party/lighthouse/locales/lt.json +77 -17
  1420. package/front_end/third_party/lighthouse/locales/lv.json +77 -17
  1421. package/front_end/third_party/lighthouse/locales/nl.json +60 -0
  1422. package/front_end/third_party/lighthouse/locales/no.json +77 -17
  1423. package/front_end/third_party/lighthouse/locales/pl.json +60 -0
  1424. package/front_end/third_party/lighthouse/locales/pt-PT.json +60 -0
  1425. package/front_end/third_party/lighthouse/locales/pt.json +77 -17
  1426. package/front_end/third_party/lighthouse/locales/ro.json +77 -17
  1427. package/front_end/third_party/lighthouse/locales/ru.json +60 -0
  1428. package/front_end/third_party/lighthouse/locales/sk.json +60 -0
  1429. package/front_end/third_party/lighthouse/locales/sl.json +77 -17
  1430. package/front_end/third_party/lighthouse/locales/sr-Latn.json +60 -0
  1431. package/front_end/third_party/lighthouse/locales/sr.json +60 -0
  1432. package/front_end/third_party/lighthouse/locales/sv.json +77 -17
  1433. package/front_end/third_party/lighthouse/locales/ta.json +77 -17
  1434. package/front_end/third_party/lighthouse/locales/te.json +72 -12
  1435. package/front_end/third_party/lighthouse/locales/th.json +60 -0
  1436. package/front_end/third_party/lighthouse/locales/tr.json +77 -17
  1437. package/front_end/third_party/lighthouse/locales/uk.json +78 -18
  1438. package/front_end/third_party/lighthouse/locales/vi.json +60 -0
  1439. package/front_end/third_party/lighthouse/locales/zh-HK.json +77 -17
  1440. package/front_end/third_party/lighthouse/locales/zh-TW.json +77 -17
  1441. package/front_end/third_party/lighthouse/locales/zh.json +77 -17
  1442. package/front_end/third_party/lighthouse/report-assets/report-generator.mjs +1 -1
  1443. package/front_end/third_party/lit/lib/decorators.d.ts +5 -2
  1444. package/front_end/third_party/lit/lib/decorators.js +5 -5
  1445. package/front_end/third_party/lit/lib/decorators.js.map +1 -1
  1446. package/front_end/third_party/lit/lib/directive.d.ts +15 -7
  1447. package/front_end/third_party/lit/lib/directive.js.map +1 -1
  1448. package/front_end/third_party/lit/lib/directives.d.ts +147 -7
  1449. package/front_end/third_party/lit/lib/directives.js +9 -9
  1450. package/front_end/third_party/lit/lib/directives.js.map +1 -1
  1451. package/front_end/third_party/lit/lib/lit.d.ts +126 -13
  1452. package/front_end/third_party/lit/lib/lit.js +5 -5
  1453. package/front_end/third_party/lit/lib/lit.js.map +1 -1
  1454. package/front_end/third_party/lit/lib/static-html.d.ts +202 -0
  1455. package/front_end/third_party/lit/lib/static-html.js +13 -0
  1456. package/front_end/third_party/lit/lib/static-html.js.map +1 -0
  1457. package/front_end/third_party/lit/lit.ts +2 -1
  1458. package/front_end/third_party/lit/package.json +2 -2
  1459. package/front_end/third_party/lit/{rollup.config.js → rollup.config.mjs} +2 -2
  1460. package/front_end/third_party/lit/src/static-html.ts +5 -0
  1461. package/front_end/third_party/puppeteer/README.chromium +2 -2
  1462. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +29 -1
  1463. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
  1464. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js +46 -14
  1465. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
  1466. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts +14 -0
  1467. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts.map +1 -1
  1468. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js +12 -0
  1469. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js.map +1 -1
  1470. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/CDPSession.d.ts.map +1 -1
  1471. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts +9 -4
  1472. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts.map +1 -1
  1473. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js +6 -6
  1474. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js.map +1 -1
  1475. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.d.ts +5 -5
  1476. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js +4 -4
  1477. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +35 -19
  1478. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
  1479. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js +11 -12
  1480. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
  1481. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js +17 -7
  1482. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js.map +1 -1
  1483. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js +7 -7
  1484. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js.map +1 -1
  1485. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.d.ts +2 -2
  1486. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.d.ts.map +1 -1
  1487. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js +19 -8
  1488. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js.map +1 -1
  1489. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.d.ts +3 -0
  1490. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.d.ts.map +1 -1
  1491. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js +35 -9
  1492. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js.map +1 -1
  1493. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/CDPSession.js +2 -2
  1494. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/CDPSession.js.map +1 -1
  1495. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts +4 -4
  1496. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.d.ts.map +1 -1
  1497. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js +1 -1
  1498. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Connection.js.map +1 -1
  1499. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts +2 -0
  1500. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  1501. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js +15 -1
  1502. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js.map +1 -1
  1503. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts +2 -2
  1504. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
  1505. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +21 -11
  1506. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map +1 -1
  1507. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts.map +1 -1
  1508. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js +18 -4
  1509. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js.map +1 -1
  1510. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts +2 -1
  1511. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
  1512. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.js +4 -1
  1513. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/HTTPRequest.js.map +1 -1
  1514. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts +11 -1
  1515. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.d.ts.map +1 -1
  1516. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +32 -3
  1517. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
  1518. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js +2 -2
  1519. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js.map +1 -1
  1520. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts +2 -0
  1521. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  1522. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js +7 -0
  1523. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  1524. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.js +1 -1
  1525. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.js.map +1 -1
  1526. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts +1 -1
  1527. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts.map +1 -1
  1528. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  1529. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts +8 -1
  1530. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  1531. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +100 -4
  1532. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
  1533. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts +3 -3
  1534. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts.map +1 -1
  1535. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.js +5 -12
  1536. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.js.map +1 -1
  1537. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.d.ts +2 -2
  1538. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.d.ts.map +1 -1
  1539. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js +1 -5
  1540. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js.map +1 -1
  1541. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.d.ts +3 -0
  1542. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.d.ts.map +1 -1
  1543. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js +28 -0
  1544. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js.map +1 -1
  1545. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.d.ts +1 -1
  1546. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.d.ts.map +1 -1
  1547. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.js +11 -3
  1548. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/CDPSession.js.map +1 -1
  1549. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.d.ts +1 -1
  1550. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.d.ts.map +1 -1
  1551. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js +12 -4
  1552. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js.map +1 -1
  1553. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +7 -7
  1554. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js.map +1 -1
  1555. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts +1 -0
  1556. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  1557. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js +11 -1
  1558. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js.map +1 -1
  1559. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/EmulationManager.d.ts.map +1 -1
  1560. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/EmulationManager.js +1 -0
  1561. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/EmulationManager.js.map +1 -1
  1562. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  1563. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js +2 -3
  1564. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
  1565. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.d.ts.map +1 -1
  1566. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js +1 -6
  1567. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js.map +1 -1
  1568. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js +1 -1
  1569. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js.map +1 -1
  1570. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js +1 -1
  1571. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPRequest.js.map +1 -1
  1572. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.d.ts.map +1 -1
  1573. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js +1 -3
  1574. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js.map +1 -1
  1575. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js +1 -1
  1576. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  1577. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts +2 -1
  1578. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts.map +1 -1
  1579. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js +21 -20
  1580. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js.map +1 -1
  1581. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.d.ts +34 -0
  1582. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.d.ts.map +1 -0
  1583. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.js +8 -0
  1584. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManageEvents.js.map +1 -0
  1585. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.d.ts +14 -33
  1586. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.d.ts.map +1 -1
  1587. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.js +308 -0
  1588. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/TargetManager.js.map +1 -1
  1589. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +0 -2
  1590. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts.map +1 -1
  1591. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js +0 -2
  1592. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js.map +1 -1
  1593. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.d.ts.map +1 -1
  1594. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js +17 -7
  1595. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js.map +1 -1
  1596. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts +1 -0
  1597. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
  1598. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js +7 -0
  1599. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js.map +1 -1
  1600. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +1 -6
  1601. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  1602. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Cookie.d.ts +85 -4
  1603. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Cookie.d.ts.map +1 -1
  1604. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js +17 -7
  1605. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js.map +1 -1
  1606. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.d.ts +15 -12
  1607. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.d.ts.map +1 -1
  1608. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.js +47 -11
  1609. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.js.map +1 -1
  1610. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.d.ts.map +1 -1
  1611. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.js +2 -2
  1612. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WaitTask.js.map +1 -1
  1613. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -1
  1614. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js +1 -1
  1615. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -1
  1616. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
  1617. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
  1618. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
  1619. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.js +17 -7
  1620. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.js.map +1 -1
  1621. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts +6 -6
  1622. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  1623. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js +25 -19
  1624. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js.map +1 -1
  1625. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts +5 -5
  1626. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
  1627. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js +7 -4
  1628. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js.map +1 -1
  1629. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts +5 -5
  1630. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts.map +1 -1
  1631. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js +8 -21
  1632. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js.map +1 -1
  1633. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts +40 -52
  1634. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts.map +1 -1
  1635. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.d.ts +14 -13
  1636. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.d.ts.map +1 -1
  1637. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.js +34 -24
  1638. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.js.map +1 -1
  1639. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts +7 -3
  1640. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts.map +1 -1
  1641. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js +17 -7
  1642. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js.map +1 -1
  1643. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +3 -3
  1644. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +3 -3
  1645. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
  1646. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
  1647. package/front_end/third_party/puppeteer/package/lib/cjs/third_party/parsel-js/parsel-js.js +11 -21
  1648. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +308 -172
  1649. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +1079 -993
  1650. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +29 -1
  1651. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
  1652. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js +46 -14
  1653. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
  1654. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts +14 -0
  1655. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts.map +1 -1
  1656. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js +12 -0
  1657. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js.map +1 -1
  1658. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/CDPSession.d.ts.map +1 -1
  1659. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts +9 -4
  1660. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts.map +1 -1
  1661. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js +6 -6
  1662. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js.map +1 -1
  1663. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.d.ts +5 -5
  1664. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js +4 -4
  1665. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +35 -19
  1666. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
  1667. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js +11 -12
  1668. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
  1669. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js +7 -7
  1670. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js.map +1 -1
  1671. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.d.ts +2 -2
  1672. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.d.ts.map +1 -1
  1673. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.js +2 -1
  1674. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserConnector.js.map +1 -1
  1675. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.d.ts +3 -0
  1676. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.d.ts.map +1 -1
  1677. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js +36 -10
  1678. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js.map +1 -1
  1679. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/CDPSession.js +2 -2
  1680. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/CDPSession.js.map +1 -1
  1681. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts +4 -4
  1682. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.d.ts.map +1 -1
  1683. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js +1 -1
  1684. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Connection.js.map +1 -1
  1685. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts +2 -0
  1686. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  1687. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js +15 -1
  1688. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js.map +1 -1
  1689. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.d.ts +2 -2
  1690. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.d.ts.map +1 -1
  1691. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js +2 -2
  1692. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js.map +1 -1
  1693. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts.map +1 -1
  1694. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js +20 -6
  1695. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js.map +1 -1
  1696. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts +2 -1
  1697. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.d.ts.map +1 -1
  1698. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.js +4 -1
  1699. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/HTTPRequest.js.map +1 -1
  1700. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts +11 -1
  1701. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.d.ts.map +1 -1
  1702. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +29 -5
  1703. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
  1704. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js +3 -3
  1705. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js.map +1 -1
  1706. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts +2 -0
  1707. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  1708. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js +7 -0
  1709. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  1710. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.js +1 -1
  1711. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.js.map +1 -1
  1712. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts +1 -1
  1713. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts.map +1 -1
  1714. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  1715. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts +8 -1
  1716. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  1717. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +100 -4
  1718. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
  1719. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts +3 -3
  1720. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts.map +1 -1
  1721. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.js +5 -12
  1722. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.js.map +1 -1
  1723. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.d.ts +2 -2
  1724. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.d.ts.map +1 -1
  1725. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.js +1 -5
  1726. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserConnector.js.map +1 -1
  1727. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.d.ts +3 -0
  1728. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.d.ts.map +1 -1
  1729. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js +28 -0
  1730. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js.map +1 -1
  1731. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.d.ts +1 -1
  1732. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.d.ts.map +1 -1
  1733. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.js +11 -3
  1734. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/CDPSession.js.map +1 -1
  1735. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.d.ts +1 -1
  1736. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.d.ts.map +1 -1
  1737. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.js +12 -4
  1738. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Connection.js.map +1 -1
  1739. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +7 -7
  1740. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js.map +1 -1
  1741. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.d.ts +1 -0
  1742. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  1743. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js +11 -1
  1744. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js.map +1 -1
  1745. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/EmulationManager.d.ts.map +1 -1
  1746. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/EmulationManager.js +1 -0
  1747. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/EmulationManager.js.map +1 -1
  1748. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  1749. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js +2 -3
  1750. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
  1751. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.d.ts.map +1 -1
  1752. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js +1 -6
  1753. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js.map +1 -1
  1754. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js +1 -1
  1755. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js.map +1 -1
  1756. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js +1 -1
  1757. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPRequest.js.map +1 -1
  1758. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.d.ts.map +1 -1
  1759. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js +1 -3
  1760. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js.map +1 -1
  1761. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js +1 -1
  1762. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  1763. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts +2 -1
  1764. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts.map +1 -1
  1765. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js +20 -20
  1766. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js.map +1 -1
  1767. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.d.ts +34 -0
  1768. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.d.ts.map +1 -0
  1769. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.js +7 -0
  1770. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManageEvents.js.map +1 -0
  1771. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.d.ts +14 -33
  1772. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.d.ts.map +1 -1
  1773. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.js +306 -1
  1774. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/TargetManager.js.map +1 -1
  1775. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +0 -2
  1776. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts.map +1 -1
  1777. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js +0 -2
  1778. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js.map +1 -1
  1779. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts.map +1 -1
  1780. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.js.map +1 -1
  1781. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts +1 -0
  1782. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
  1783. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js +7 -0
  1784. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js.map +1 -1
  1785. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +1 -6
  1786. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  1787. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Cookie.d.ts +85 -4
  1788. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Cookie.d.ts.map +1 -1
  1789. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts +15 -12
  1790. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts.map +1 -1
  1791. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js +47 -11
  1792. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js.map +1 -1
  1793. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.d.ts.map +1 -1
  1794. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.js +2 -2
  1795. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WaitTask.js.map +1 -1
  1796. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -1
  1797. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js +1 -1
  1798. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -1
  1799. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
  1800. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
  1801. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts +6 -6
  1802. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  1803. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js +8 -12
  1804. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js.map +1 -1
  1805. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts +5 -5
  1806. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
  1807. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js +7 -4
  1808. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js.map +1 -1
  1809. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts +5 -5
  1810. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts.map +1 -1
  1811. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js +8 -21
  1812. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js.map +1 -1
  1813. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +40 -52
  1814. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts.map +1 -1
  1815. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.d.ts +14 -13
  1816. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.d.ts.map +1 -1
  1817. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.js +34 -24
  1818. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.js.map +1 -1
  1819. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts +7 -3
  1820. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts.map +1 -1
  1821. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +3 -3
  1822. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +3 -3
  1823. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
  1824. package/front_end/third_party/puppeteer/package/lib/esm/third_party/parsel-js/parsel-js.js +11 -21
  1825. package/front_end/third_party/puppeteer/package/lib/types.d.ts +308 -172
  1826. package/front_end/third_party/puppeteer/package/package.json +17 -11
  1827. package/front_end/third_party/puppeteer/package/src/api/Browser.ts +64 -27
  1828. package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +26 -0
  1829. package/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts +12 -6
  1830. package/front_end/third_party/puppeteer/package/src/api/Frame.ts +5 -5
  1831. package/front_end/third_party/puppeteer/package/src/api/Page.ts +35 -21
  1832. package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +7 -7
  1833. package/front_end/third_party/puppeteer/package/src/bidi/BrowserConnector.ts +4 -6
  1834. package/front_end/third_party/puppeteer/package/src/bidi/BrowserContext.ts +57 -10
  1835. package/front_end/third_party/puppeteer/package/src/bidi/CDPSession.ts +2 -2
  1836. package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +5 -5
  1837. package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +17 -0
  1838. package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +3 -3
  1839. package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +32 -7
  1840. package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +6 -2
  1841. package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +45 -6
  1842. package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +3 -3
  1843. package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +10 -0
  1844. package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +1 -1
  1845. package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +1 -1
  1846. package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +55 -3
  1847. package/front_end/third_party/puppeteer/package/src/cdp/Browser.ts +8 -21
  1848. package/front_end/third_party/puppeteer/package/src/cdp/BrowserConnector.ts +2 -11
  1849. package/front_end/third_party/puppeteer/package/src/cdp/BrowserContext.ts +33 -0
  1850. package/front_end/third_party/puppeteer/package/src/cdp/CDPSession.ts +14 -6
  1851. package/front_end/third_party/puppeteer/package/src/cdp/Connection.ts +15 -6
  1852. package/front_end/third_party/puppeteer/package/src/cdp/DeviceRequestPrompt.ts +7 -7
  1853. package/front_end/third_party/puppeteer/package/src/cdp/ElementHandle.ts +13 -1
  1854. package/front_end/third_party/puppeteer/package/src/cdp/EmulationManager.ts +1 -0
  1855. package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +2 -3
  1856. package/front_end/third_party/puppeteer/package/src/cdp/Frame.ts +1 -8
  1857. package/front_end/third_party/puppeteer/package/src/cdp/FrameManager.ts +1 -1
  1858. package/front_end/third_party/puppeteer/package/src/cdp/HTTPRequest.ts +1 -1
  1859. package/front_end/third_party/puppeteer/package/src/cdp/HTTPResponse.ts +1 -3
  1860. package/front_end/third_party/puppeteer/package/src/cdp/IsolatedWorld.ts +1 -1
  1861. package/front_end/third_party/puppeteer/package/src/cdp/Page.ts +29 -23
  1862. package/front_end/third_party/puppeteer/package/src/cdp/TargetManageEvents.ts +38 -0
  1863. package/front_end/third_party/puppeteer/package/src/cdp/TargetManager.ts +417 -35
  1864. package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +0 -2
  1865. package/front_end/third_party/puppeteer/package/src/common/BrowserConnector.ts +1 -2
  1866. package/front_end/third_party/puppeteer/package/src/common/CallbackRegistry.ts +8 -0
  1867. package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +1 -6
  1868. package/front_end/third_party/puppeteer/package/src/common/Cookie.ts +87 -4
  1869. package/front_end/third_party/puppeteer/package/src/common/PDFOptions.ts +63 -25
  1870. package/front_end/third_party/puppeteer/package/src/common/WaitTask.ts +2 -6
  1871. package/front_end/third_party/puppeteer/package/src/common/util.ts +3 -1
  1872. package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
  1873. package/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts +19 -26
  1874. package/front_end/third_party/puppeteer/package/src/node/ChromeLauncher.ts +11 -12
  1875. package/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts +12 -30
  1876. package/front_end/third_party/puppeteer/package/src/node/LaunchOptions.ts +40 -55
  1877. package/front_end/third_party/puppeteer/package/src/node/PuppeteerNode.ts +55 -45
  1878. package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
  1879. package/front_end/third_party/puppeteer/puppeteer-tsconfig.json +1 -2
  1880. package/front_end/third_party/third-party-web/README.chromium +2 -2
  1881. package/front_end/third_party/third-party-web/lib/nostats-subset.js +1 -1
  1882. package/front_end/third_party/third-party-web/package/README.md +586 -573
  1883. package/front_end/third_party/third-party-web/package/dist/entities-httparchive-nostats.json +1 -1
  1884. package/front_end/third_party/third-party-web/package/dist/entities-httparchive.json +1 -1
  1885. package/front_end/third_party/third-party-web/package/dist/entities-nostats.json +1 -1
  1886. package/front_end/third_party/third-party-web/package/dist/entities.json +1 -1
  1887. package/front_end/third_party/third-party-web/package/facades.md +46 -0
  1888. package/front_end/third_party/third-party-web/package/lib/__snapshots__/index.test.js.snap +1 -1
  1889. package/front_end/third_party/third-party-web/package/lib/index.test.js +6 -6
  1890. package/front_end/third_party/third-party-web/package/lib/markdown/faqs.partial.md +36 -0
  1891. package/front_end/third_party/third-party-web/package/lib/markdown/goals.partial.md +9 -0
  1892. package/front_end/third_party/third-party-web/package/lib/markdown/methodology.partial.md +5 -0
  1893. package/front_end/third_party/third-party-web/package/lib/markdown/template.md +151 -0
  1894. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-02-01.md +1 -0
  1895. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-03-01.md +1 -0
  1896. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-05-06.md +1 -0
  1897. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-05-13.md +14 -0
  1898. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2021-01-01.md +1 -0
  1899. package/front_end/third_party/third-party-web/package/lib/markdown/updates/2024-07-01.md +3 -0
  1900. package/front_end/third_party/third-party-web/package/nostats-subset.d.ts +1 -0
  1901. package/front_end/third_party/third-party-web/package/package.json +5 -4
  1902. package/front_end/third_party/third-party-web/package.json +2 -1
  1903. package/front_end/third_party/third-party-web/rebuild.sh +8 -0
  1904. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js +9 -5
  1905. package/front_end/ui/components/adorners/Adorner.test.ts +2 -2
  1906. package/front_end/ui/components/adorners/Adorner.ts +15 -17
  1907. package/front_end/ui/components/buttons/Button.test.ts +26 -6
  1908. package/front_end/ui/components/buttons/Button.ts +16 -34
  1909. package/front_end/ui/components/buttons/button.css +13 -23
  1910. package/front_end/ui/components/buttons/buttons.ts +2 -0
  1911. package/front_end/ui/{legacy → components/buttons}/textButton.css +6 -6
  1912. package/front_end/ui/components/cards/Card.test.ts +81 -72
  1913. package/front_end/ui/components/cards/Card.ts +85 -54
  1914. package/front_end/ui/components/cards/card.css +40 -36
  1915. package/front_end/ui/components/chrome_link/ChromeLink.test.ts +8 -10
  1916. package/front_end/ui/components/chrome_link/ChromeLink.ts +4 -6
  1917. package/front_end/ui/components/code_highlighter/code_highlighter.ts +2 -2
  1918. package/front_end/ui/components/dialogs/ButtonDialog.test.ts +4 -6
  1919. package/front_end/ui/components/dialogs/ButtonDialog.ts +9 -5
  1920. package/front_end/ui/components/dialogs/Dialog.test.ts +47 -50
  1921. package/front_end/ui/components/dialogs/Dialog.ts +31 -114
  1922. package/front_end/ui/components/dialogs/ShortcutDialog.test.ts +7 -23
  1923. package/front_end/ui/components/dialogs/ShortcutDialog.ts +18 -95
  1924. package/front_end/ui/components/dialogs/buttonDialog.css +1 -1
  1925. package/front_end/ui/components/dialogs/dialog.css +15 -8
  1926. package/front_end/ui/components/dialogs/dialogs.ts +0 -2
  1927. package/front_end/ui/components/dialogs/shortcutDialog.css +10 -29
  1928. package/front_end/ui/components/diff_view/DiffView.test.ts +1 -1
  1929. package/front_end/ui/components/diff_view/DiffView.ts +20 -14
  1930. package/front_end/ui/components/diff_view/diffView.css +2 -2
  1931. package/front_end/ui/components/docs/{freestyler → ai_assistance}/basic.ts +8 -8
  1932. package/front_end/ui/components/docs/{freestyler → ai_assistance}/empty_state.ts +5 -5
  1933. package/front_end/ui/components/docs/breadcrumbs_perf/initial-breadcrumb-perf.ts +4 -4
  1934. package/front_end/ui/components/docs/breadcrumbs_perf/nested-breadcrumbs-perf.ts +8 -8
  1935. package/front_end/ui/components/docs/building-ui-documentation/StylingComponents.md +5 -1
  1936. package/front_end/ui/components/docs/building-ui-documentation/TestingComponents.md +6 -7
  1937. package/front_end/ui/components/docs/button/basic.html +18 -34
  1938. package/front_end/ui/components/docs/button/basic.ts +135 -371
  1939. package/front_end/ui/components/docs/{data_grid_controller → combo_box}/basic.html +2 -12
  1940. package/front_end/ui/components/docs/combo_box/basic.ts +49 -0
  1941. package/front_end/ui/components/docs/create_breadcrumbs.ts +4 -4
  1942. package/front_end/ui/components/docs/dialog/basic.ts +71 -7
  1943. package/front_end/ui/components/docs/dialog/button_dialog.ts +2 -1
  1944. package/front_end/ui/components/docs/{icon_dialog/basic.html → dialog/shortcut_dialog.html} +2 -2
  1945. package/front_end/ui/components/docs/{shortcut_dialog/basic.ts → dialog/shortcut_dialog.ts} +5 -5
  1946. package/front_end/ui/components/docs/elements_breadcrumbs/helpers.ts +1 -1
  1947. package/front_end/ui/components/docs/expandable_list/basic.ts +2 -2
  1948. package/front_end/ui/components/docs/icon_component/basic.ts +8 -34
  1949. package/front_end/ui/components/docs/linkifier/simple-url.ts +1 -1
  1950. package/front_end/ui/components/docs/menu/basic.ts +0 -1
  1951. package/front_end/ui/components/docs/panel_introduction_steps/basic.ts +3 -3
  1952. package/front_end/ui/components/docs/performance_panel/basic.ts +0 -5
  1953. package/front_end/ui/components/docs/performance_panel/flamechart.ts +8 -8
  1954. package/front_end/ui/components/docs/performance_panel/network_request_details.ts +2 -1
  1955. package/front_end/ui/components/docs/performance_panel/overview.ts +2 -2
  1956. package/front_end/ui/components/docs/performance_panel/timeline_history_manager.ts +0 -3
  1957. package/front_end/ui/components/docs/performance_panel/track_example.ts +4 -4
  1958. package/front_end/ui/components/docs/{data_grid → radio_button}/basic.html +5 -11
  1959. package/front_end/ui/components/docs/radio_button/basic.ts +50 -0
  1960. package/front_end/ui/components/docs/recorder_control_button/basic.ts +1 -1
  1961. package/front_end/ui/components/docs/recorder_create_recording_view/basic.ts +1 -1
  1962. package/front_end/ui/components/docs/recorder_recording_list_view/basic.ts +1 -1
  1963. package/front_end/ui/components/docs/recorder_recording_view/basic.ts +1 -1
  1964. package/front_end/ui/components/docs/recorder_select_button/basic.ts +4 -4
  1965. package/front_end/ui/components/docs/recorder_split_view/basic.ts +1 -1
  1966. package/front_end/ui/components/docs/report/basic.ts +3 -3
  1967. package/front_end/ui/components/docs/select_menu/basic.ts +3 -4
  1968. package/front_end/ui/components/docs/slider/basic.html +20 -0
  1969. package/front_end/ui/components/docs/slider/basic.ts +62 -0
  1970. package/front_end/ui/components/docs/theme_colors/basic.ts +4 -4
  1971. package/front_end/ui/components/docs/tooltip/basic.html +20 -0
  1972. package/front_end/ui/components/docs/tooltip/basic.ts +64 -0
  1973. package/front_end/ui/components/docs/tree_outline/custom-renderers.ts +4 -4
  1974. package/front_end/ui/components/expandable_list/ExpandableList.test.ts +5 -7
  1975. package/front_end/ui/components/expandable_list/ExpandableList.ts +11 -7
  1976. package/front_end/ui/components/floating_button/FloatingButton.ts +8 -4
  1977. package/front_end/ui/components/helpers/directives.ts +7 -7
  1978. package/front_end/ui/components/helpers/helpers.test.ts +7 -11
  1979. package/front_end/ui/components/helpers/scheduled-render.ts +4 -3
  1980. package/front_end/ui/components/highlighting/HighlightManager.test.ts +7 -7
  1981. package/front_end/ui/components/highlighting/HighlightManager.ts +5 -1
  1982. package/front_end/ui/components/icon_button/FileSourceIcon.ts +5 -7
  1983. package/front_end/ui/components/icon_button/Icon.ts +5 -19
  1984. package/front_end/ui/components/icon_button/IconButton.test.ts +8 -8
  1985. package/front_end/ui/components/icon_button/IconButton.ts +9 -12
  1986. package/front_end/ui/components/icon_button/icon.css +1 -1
  1987. package/front_end/ui/components/icon_button/iconButton.css +13 -9
  1988. package/front_end/ui/components/input/input.ts +10 -2
  1989. package/front_end/ui/components/issue_counter/IssueCounter.test.ts +10 -10
  1990. package/front_end/ui/components/issue_counter/IssueCounter.ts +3 -8
  1991. package/front_end/ui/components/issue_counter/IssueLinkIcon.test.ts +5 -10
  1992. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +11 -9
  1993. package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -1
  1994. package/front_end/ui/components/linkifier/LinkifierImpl.test.ts +14 -14
  1995. package/front_end/ui/components/linkifier/LinkifierImpl.ts +22 -9
  1996. package/front_end/ui/components/linkifier/LinkifierUtils.ts +1 -1
  1997. package/front_end/ui/components/markdown_view/CodeBlock.test.ts +12 -22
  1998. package/front_end/ui/components/markdown_view/CodeBlock.ts +14 -15
  1999. package/front_end/ui/components/markdown_view/MarkdownImage.test.ts +2 -4
  2000. package/front_end/ui/components/markdown_view/MarkdownImage.ts +10 -6
  2001. package/front_end/ui/components/markdown_view/MarkdownLink.test.ts +4 -2
  2002. package/front_end/ui/components/markdown_view/MarkdownLink.ts +6 -4
  2003. package/front_end/ui/components/markdown_view/MarkdownView.test.ts +27 -25
  2004. package/front_end/ui/components/markdown_view/MarkdownView.ts +81 -35
  2005. package/front_end/ui/components/markdown_view/markdownLink.css +0 -4
  2006. package/front_end/ui/components/markdown_view/markdownView.css +15 -4
  2007. package/front_end/ui/components/menus/Menu.ts +41 -30
  2008. package/front_end/ui/components/menus/README.md +10 -2
  2009. package/front_end/ui/components/menus/SelectMenu.test.ts +6 -10
  2010. package/front_end/ui/components/menus/SelectMenu.ts +25 -50
  2011. package/front_end/ui/components/menus/menu.css +1 -1
  2012. package/front_end/ui/components/menus/menuGroup.css +0 -1
  2013. package/front_end/ui/components/menus/menuItem.css +11 -3
  2014. package/front_end/ui/components/menus/selectMenuButton.css +1 -1
  2015. package/front_end/ui/components/node_text/NodeText.ts +9 -5
  2016. package/front_end/ui/components/panel_feedback/FeedbackButton.test.ts +6 -6
  2017. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +3 -7
  2018. package/front_end/ui/components/panel_feedback/PanelFeedback.test.ts +6 -6
  2019. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +6 -4
  2020. package/front_end/ui/components/panel_feedback/PreviewToggle.test.ts +5 -7
  2021. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +5 -3
  2022. package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +7 -4
  2023. package/front_end/ui/components/render_coordinator/render_coordinator.test.ts +53 -52
  2024. package/front_end/ui/components/render_coordinator/render_coordinator.ts +301 -2
  2025. package/front_end/ui/components/report_view/ReportView.test.ts +2 -4
  2026. package/front_end/ui/components/report_view/ReportView.ts +37 -20
  2027. package/front_end/ui/components/request_link_icon/RequestLinkIcon.test.ts +6 -11
  2028. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +39 -32
  2029. package/front_end/ui/components/request_link_icon/requestLinkIcon.css +3 -0
  2030. package/front_end/ui/components/settings/SettingCheckbox.test.ts +3 -3
  2031. package/front_end/ui/components/settings/SettingCheckbox.ts +14 -9
  2032. package/front_end/ui/components/settings/SettingDeprecationWarning.ts +9 -5
  2033. package/front_end/ui/components/spinners/Spinner.ts +6 -4
  2034. package/front_end/ui/components/spinners/spinner.css +4 -4
  2035. package/front_end/ui/components/split_view/SplitView.test.ts +6 -8
  2036. package/front_end/ui/components/split_view/SplitView.ts +2 -4
  2037. package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +13 -13
  2038. package/front_end/ui/components/srgb_overlay/srgbOverlay.css +2 -2
  2039. package/front_end/ui/components/suggestion_input/SuggestionInput.ts +16 -9
  2040. package/front_end/ui/components/suggestion_input/suggestionInput.css +1 -2
  2041. package/front_end/ui/components/survey_link/SurveyLink.ts +4 -10
  2042. package/front_end/ui/components/switch/SwitchImpl.test.ts +0 -1
  2043. package/front_end/ui/components/switch/SwitchImpl.ts +9 -7
  2044. package/front_end/ui/components/switch/switch.css +18 -0
  2045. package/front_end/ui/components/text_editor/TextEditor.test.ts +11 -9
  2046. package/front_end/ui/components/text_editor/TextEditor.ts +2 -4
  2047. package/front_end/ui/components/text_editor/config.ts +22 -4
  2048. package/front_end/ui/components/text_prompt/TextPrompt.test.ts +3 -3
  2049. package/front_end/ui/components/text_prompt/TextPrompt.ts +4 -9
  2050. package/front_end/ui/components/text_prompt/textPrompt.css +6 -1
  2051. package/front_end/ui/components/tooltip/Tooltip.test.ts +55 -0
  2052. package/front_end/ui/components/tooltip/Tooltip.ts +146 -0
  2053. package/front_end/ui/components/tooltip/tooltip.css +41 -0
  2054. package/front_end/ui/components/tooltip/tooltips.ts +7 -0
  2055. package/front_end/ui/components/tree_outline/TreeOutline.test.ts +48 -52
  2056. package/front_end/ui/components/tree_outline/TreeOutline.ts +18 -19
  2057. package/front_end/ui/components/tree_outline/TreeOutlineUtils.ts +8 -8
  2058. package/front_end/ui/components/tree_outline/treeOutline.css +5 -3
  2059. package/front_end/ui/legacy/ARIAUtils.ts +6 -10
  2060. package/front_end/ui/legacy/ActionRegistration.ts +4 -4
  2061. package/front_end/ui/legacy/Context.ts +3 -3
  2062. package/front_end/ui/legacy/ContextMenu.ts +8 -2
  2063. package/front_end/ui/legacy/Dialog.ts +6 -8
  2064. package/front_end/ui/legacy/DockController.test.ts +2 -2
  2065. package/front_end/ui/legacy/DockController.ts +5 -5
  2066. package/front_end/ui/legacy/DropTarget.ts +2 -3
  2067. package/front_end/ui/legacy/EmptyWidget.ts +16 -12
  2068. package/front_end/ui/legacy/FilterBar.test.ts +3 -3
  2069. package/front_end/ui/legacy/FilterBar.ts +32 -17
  2070. package/front_end/ui/legacy/Geometry.ts +3 -11
  2071. package/front_end/ui/legacy/GlassPane.ts +3 -7
  2072. package/front_end/ui/legacy/Infobar.ts +10 -20
  2073. package/front_end/ui/legacy/InspectorView.ts +15 -11
  2074. package/front_end/ui/legacy/ListModel.ts +3 -3
  2075. package/front_end/ui/legacy/ListWidget.ts +25 -16
  2076. package/front_end/ui/legacy/PopoverHelper.ts +1 -1
  2077. package/front_end/ui/legacy/ProgressIndicator.ts +10 -8
  2078. package/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts +1 -1
  2079. package/front_end/ui/legacy/ReportView.ts +7 -7
  2080. package/front_end/ui/legacy/ResizerWidget.ts +6 -6
  2081. package/front_end/ui/legacy/RootView.ts +1 -1
  2082. package/front_end/ui/legacy/SearchableView.ts +11 -12
  2083. package/front_end/ui/legacy/SettingsUI.ts +8 -17
  2084. package/front_end/ui/legacy/ShortcutRegistry.test.ts +3 -3
  2085. package/front_end/ui/legacy/SoftContextMenu.ts +1 -1
  2086. package/front_end/ui/legacy/SoftDropDown.ts +2 -3
  2087. package/front_end/ui/legacy/SplitWidget.test.ts +1 -2
  2088. package/front_end/ui/legacy/SplitWidget.ts +12 -7
  2089. package/front_end/ui/legacy/SuggestBox.test.ts +5 -5
  2090. package/front_end/ui/legacy/SuggestBox.ts +2 -3
  2091. package/front_end/ui/legacy/TabbedPane.ts +78 -18
  2092. package/front_end/ui/legacy/TargetCrashedScreen.ts +1 -1
  2093. package/front_end/ui/legacy/TextPrompt.ts +5 -5
  2094. package/front_end/ui/legacy/ThrottledWidget.ts +7 -2
  2095. package/front_end/ui/legacy/Toolbar.test.ts +102 -22
  2096. package/front_end/ui/legacy/Toolbar.ts +147 -181
  2097. package/front_end/ui/legacy/Treeoutline.ts +13 -16
  2098. package/front_end/ui/legacy/UIUtils.test.ts +13 -17
  2099. package/front_end/ui/legacy/UIUtils.ts +183 -165
  2100. package/front_end/ui/legacy/ViewManager.ts +14 -11
  2101. package/front_end/ui/legacy/ViewRegistration.test.ts +1 -1
  2102. package/front_end/ui/legacy/Widget.test.ts +121 -4
  2103. package/front_end/ui/legacy/Widget.ts +155 -55
  2104. package/front_end/ui/legacy/XLink.test.ts +4 -6
  2105. package/front_end/ui/legacy/XLink.ts +1 -3
  2106. package/front_end/ui/legacy/ZoomManager.ts +3 -3
  2107. package/front_end/ui/legacy/components/color_picker/ColorFormatSpec.ts +5 -5
  2108. package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +11 -9
  2109. package/front_end/ui/legacy/components/color_picker/ContrastInfo.ts +3 -3
  2110. package/front_end/ui/legacy/components/color_picker/FormatPickerContextMenu.ts +5 -5
  2111. package/front_end/ui/legacy/components/color_picker/Spectrum.test.ts +1 -1
  2112. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +24 -20
  2113. package/front_end/ui/legacy/components/color_picker/spectrum.css +5 -4
  2114. package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +2 -5
  2115. package/front_end/ui/legacy/components/data_grid/DataGrid.test.ts +2 -3
  2116. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +96 -46
  2117. package/front_end/ui/legacy/components/data_grid/DataGridElement.test.ts +269 -0
  2118. package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +470 -0
  2119. package/front_end/ui/legacy/components/data_grid/SortableDataGrid.ts +6 -0
  2120. package/front_end/ui/legacy/components/data_grid/ViewportDataGrid.ts +112 -19
  2121. package/front_end/ui/legacy/components/data_grid/dataGrid.css +14 -19
  2122. package/front_end/ui/legacy/components/data_grid/data_grid.ts +2 -2
  2123. package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +15 -15
  2124. package/front_end/ui/legacy/components/inline_editor/BezierEditor.ts +4 -4
  2125. package/front_end/ui/legacy/components/inline_editor/CSSAngle.test.ts +3 -3
  2126. package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +10 -5
  2127. package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +10 -6
  2128. package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +8 -4
  2129. package/front_end/ui/legacy/components/inline_editor/CSSLinearEasingModel.ts +9 -9
  2130. package/front_end/ui/legacy/components/inline_editor/CSSShadowEditor.ts +7 -6
  2131. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.test.ts +1 -1
  2132. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +7 -5
  2133. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.test.ts +5 -5
  2134. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +10 -6
  2135. package/front_end/ui/legacy/components/inline_editor/FontEditor.ts +30 -32
  2136. package/front_end/ui/legacy/components/inline_editor/FontEditorUtils.ts +0 -13
  2137. package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +11 -7
  2138. package/front_end/ui/legacy/components/inline_editor/SwatchPopoverHelper.ts +4 -4
  2139. package/front_end/ui/legacy/components/inline_editor/Swatches.ts +28 -30
  2140. package/front_end/ui/legacy/components/inline_editor/bezierSwatch.css +4 -4
  2141. package/front_end/ui/legacy/components/inline_editor/cssAngleEditor.css +1 -4
  2142. package/front_end/ui/legacy/components/inline_editor/cssAngleSwatch.css +1 -4
  2143. package/front_end/ui/legacy/components/inline_editor/fontEditor.css +1 -1
  2144. package/front_end/ui/legacy/components/inline_editor/inline_editor.ts +0 -2
  2145. package/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts +1 -4
  2146. package/front_end/ui/legacy/components/object_ui/JavaScriptREPL.ts +1 -1
  2147. package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +3 -3
  2148. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +4 -7
  2149. package/front_end/ui/legacy/components/object_ui/objectPropertiesSection.css +3 -4
  2150. package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +10 -10
  2151. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +86 -77
  2152. package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +27 -10
  2153. package/front_end/ui/legacy/components/perf_ui/FilmStripView.ts +20 -18
  2154. package/front_end/ui/legacy/components/perf_ui/FlameChart.test.ts +2 -2
  2155. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +276 -201
  2156. package/front_end/ui/legacy/components/perf_ui/LineLevelProfile.ts +3 -3
  2157. package/front_end/ui/legacy/components/perf_ui/OverviewGrid.ts +10 -16
  2158. package/front_end/ui/legacy/components/perf_ui/PieChart.test.ts +6 -6
  2159. package/front_end/ui/legacy/components/perf_ui/PieChart.ts +6 -4
  2160. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.test.ts +1 -1
  2161. package/front_end/ui/legacy/components/perf_ui/TimelineGrid.ts +1 -14
  2162. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.test.ts +1 -1
  2163. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +17 -17
  2164. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +54 -41
  2165. package/front_end/ui/legacy/components/perf_ui/filmStripView.css +1 -2
  2166. package/front_end/ui/legacy/components/perf_ui/flameChart.css +1 -12
  2167. package/front_end/ui/legacy/components/perf_ui/overviewGrid.css +2 -5
  2168. package/front_end/ui/legacy/components/perf_ui/perf_ui-meta.ts +13 -11
  2169. package/front_end/ui/legacy/components/perf_ui/pieChart.css +1 -1
  2170. package/front_end/ui/legacy/components/perf_ui/timelineGrid.css +1 -4
  2171. package/front_end/ui/legacy/components/quick_open/CommandMenu.test.ts +3 -3
  2172. package/front_end/ui/legacy/components/quick_open/CommandMenu.ts +33 -30
  2173. package/front_end/ui/legacy/components/quick_open/FilteredListWidget.ts +12 -8
  2174. package/front_end/ui/legacy/components/quick_open/HelpQuickOpen.ts +8 -12
  2175. package/front_end/ui/legacy/components/quick_open/filteredListWidget.css +40 -56
  2176. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +8 -7
  2177. package/front_end/ui/legacy/components/source_frame/FontView.ts +2 -2
  2178. package/front_end/ui/legacy/components/source_frame/ImageView.ts +2 -2
  2179. package/front_end/ui/legacy/components/source_frame/JSONView.ts +2 -2
  2180. package/front_end/ui/legacy/components/source_frame/PreviewFactory.ts +7 -3
  2181. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.test.ts +4 -2
  2182. package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +7 -5
  2183. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +7 -9
  2184. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +1 -1
  2185. package/front_end/ui/legacy/components/source_frame/XMLView.ts +3 -3
  2186. package/front_end/ui/legacy/components/source_frame/resourceSourceFrame.css +1 -1
  2187. package/front_end/ui/legacy/components/utils/ImagePreview.ts +26 -26
  2188. package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +3 -4
  2189. package/front_end/ui/legacy/components/utils/Linkifier.test.ts +11 -7
  2190. package/front_end/ui/legacy/components/utils/Linkifier.ts +6 -7
  2191. package/front_end/ui/legacy/components/utils/TargetDetachedDialog.ts +3 -12
  2192. package/front_end/ui/legacy/dialog.css +2 -1
  2193. package/front_end/ui/legacy/dropTarget.css +1 -4
  2194. package/front_end/ui/legacy/emptyWidget.css +0 -21
  2195. package/front_end/ui/legacy/filter.css +3 -1
  2196. package/front_end/ui/legacy/glassPane.css +2 -4
  2197. package/front_end/ui/legacy/infobar.css +14 -2
  2198. package/front_end/ui/legacy/inspectorCommon.css +721 -164
  2199. package/front_end/ui/legacy/inspectorViewTabbedPane.css +1 -20
  2200. package/front_end/ui/legacy/legacy.ts +0 -2
  2201. package/front_end/ui/legacy/reportView.css +8 -2
  2202. package/front_end/ui/legacy/rootView.css +1 -4
  2203. package/front_end/ui/legacy/searchableView.css +1 -1
  2204. package/front_end/ui/legacy/softContextMenu.css +1 -1
  2205. package/front_end/ui/legacy/softDropDown.css +1 -2
  2206. package/front_end/ui/legacy/tabbedPane.css +127 -38
  2207. package/front_end/ui/legacy/textPrompt.css +1 -0
  2208. package/front_end/ui/legacy/theme_support/ThemeSupport.ts +0 -5
  2209. package/front_end/ui/legacy/toolbar.css +11 -567
  2210. package/front_end/ui/legacy/treeoutline.css +7 -7
  2211. package/front_end/ui/legacy/viewContainers.css +3 -3
  2212. package/front_end/ui/lit/i18n-template.test.ts +51 -0
  2213. package/front_end/ui/lit/i18n-template.ts +32 -0
  2214. package/front_end/ui/{lit-html/lit-html.ts → lit/lit.ts} +13 -14
  2215. package/front_end/ui/visual_logging/Debugging.test.ts +0 -9
  2216. package/front_end/ui/visual_logging/Debugging.ts +88 -30
  2217. package/front_end/ui/visual_logging/DomState.test.ts +6 -6
  2218. package/front_end/ui/visual_logging/KnownContextValues.ts +263 -12
  2219. package/front_end/ui/visual_logging/LoggingDriver.test.ts +6 -7
  2220. package/front_end/ui/visual_logging/LoggingDriver.ts +3 -4
  2221. package/front_end/ui/visual_logging/LoggingEvents.test.ts +16 -16
  2222. package/front_end/ui/visual_logging/LoggingEvents.ts +1 -1
  2223. package/front_end/ui/visual_logging/visual_logging.ts +13 -2
  2224. package/inspector_overlay/common.css +1 -4
  2225. package/inspector_overlay/common.ts +0 -1
  2226. package/inspector_overlay/css_grid_label_helpers.test.ts +14 -15
  2227. package/inspector_overlay/css_grid_label_helpers.ts +2 -2
  2228. package/inspector_overlay/drag_resize_handler.ts +4 -4
  2229. package/inspector_overlay/highlight_common.test.ts +6 -6
  2230. package/inspector_overlay/highlight_common.ts +0 -1
  2231. package/inspector_overlay/highlight_flex_common.test.ts +45 -45
  2232. package/inspector_overlay/main.ts +12 -13
  2233. package/inspector_overlay/resources.grd +1 -1
  2234. package/inspector_overlay/testing/InspectorOverlayHelpers.ts +3 -3
  2235. package/inspector_overlay/tool_highlight.css +3 -3
  2236. package/inspector_overlay/tool_highlight.test.ts +3 -3
  2237. package/inspector_overlay/tool_highlight.ts +0 -1
  2238. package/inspector_overlay/tool_persistent.ts +7 -13
  2239. package/inspector_overlay/tool_screenshot.ts +6 -6
  2240. package/inspector_overlay/tool_source_order.ts +1 -2
  2241. package/inspector_overlay/tool_window_controls.test.ts +2 -2
  2242. package/package.json +30 -32
  2243. package/scripts/add_icon_paths.py +71 -0
  2244. package/scripts/ai_assistance/README.md +46 -0
  2245. package/scripts/ai_assistance/auto-run-helpers.js +82 -0
  2246. package/scripts/ai_assistance/auto-run.js +694 -0
  2247. package/scripts/ai_assistance/auto-run.test.js +88 -0
  2248. package/scripts/{freestyler → ai_assistance}/eval/index.js +1 -1
  2249. package/scripts/{freestyler → ai_assistance}/to_tsv.mjs +2 -3
  2250. package/scripts/ai_assistance/tsconfig.json +15 -0
  2251. package/scripts/ai_assistance/types.d.ts +55 -0
  2252. package/scripts/build/compress_files.js +2 -2
  2253. package/scripts/build/cross_reference_ninja_and_tsc.js +27 -16
  2254. package/scripts/build/devtools_plugin.js +2 -2
  2255. package/scripts/build/esbuild.js +2 -1
  2256. package/scripts/build/generate_css_js_files.js +13 -57
  2257. package/scripts/build/generate_deprecations.py +0 -2
  2258. package/scripts/build/generate_devtools_grd.py +1 -2
  2259. package/scripts/build/generate_html_entrypoint.js +1 -0
  2260. package/scripts/build/generate_supported_css.py +1 -1
  2261. package/scripts/build/ninja/copy-file.js +6 -4
  2262. package/scripts/build/ninja/copy-files.js +1 -0
  2263. package/scripts/build/ninja/generate-declaration.js +1 -0
  2264. package/scripts/build/ninja/generate-tsconfig.js +0 -1
  2265. package/scripts/build/ninja/generate_css.gni +1 -16
  2266. package/scripts/build/ninja/minify-json-files.js +1 -0
  2267. package/scripts/build/rollup.config.mjs +1 -1
  2268. package/scripts/build/tests/generate_css_js_files_test.js +5 -56
  2269. package/scripts/build/typescript/ts_library.py +27 -1
  2270. package/scripts/build/typescript/typescript.gni +4 -1
  2271. package/scripts/check_esbuild_versions.js +1 -1
  2272. package/scripts/check_experiments.js +87 -25
  2273. package/scripts/component_server/server.js +146 -55
  2274. package/scripts/devtools_paths.js +31 -15
  2275. package/scripts/eslint_rules/README.md +10 -2
  2276. package/scripts/eslint_rules/lib/{canvas_context_tracking.js → canvas-context-tracking.js} +3 -0
  2277. package/scripts/eslint_rules/lib/{check_css_import.js → check-css-import.js} +7 -3
  2278. package/scripts/eslint_rules/lib/{check_enumerated_histograms.js → check-enumerated-histograms.js} +3 -0
  2279. package/scripts/eslint_rules/lib/{check_license_header.js → check-license-header.js} +7 -2
  2280. package/scripts/eslint_rules/lib/{check_test_definitions.js → check-test-definitions.js} +5 -1
  2281. package/scripts/eslint_rules/lib/{check_was_shown_methods.js → check-was-shown-methods.js} +3 -0
  2282. package/scripts/eslint_rules/lib/{enforce_bound_render_for_schedule_render.js → enforce-bound-render-for-schedule-render.js} +3 -0
  2283. package/scripts/eslint_rules/lib/{enforce_custom_event_names.js → enforce-custom-event-names.js} +3 -0
  2284. package/scripts/eslint_rules/lib/{enforce_default_import_name.js → enforce-default-import-name.js} +5 -1
  2285. package/scripts/eslint_rules/lib/enforce-optional-properties-last.js +4 -1
  2286. package/scripts/eslint_rules/lib/{es_modules_import.js → es-modules-import.js} +26 -1
  2287. package/scripts/eslint_rules/lib/{html_tagged_template.js → html-tagged-template.js} +8 -4
  2288. package/scripts/eslint_rules/lib/{inject_checkbox_styles.js → inject-checkbox-styles.js} +7 -2
  2289. package/scripts/eslint_rules/lib/{inline_type_imports.js → inline-type-imports.js} +3 -0
  2290. package/scripts/eslint_rules/lib/{jslog_context_list.js → jslog-context-list.js} +4 -1
  2291. package/scripts/eslint_rules/lib/{l10n_filename_matches.js → l10n-filename-matches.js} +42 -23
  2292. package/scripts/eslint_rules/lib/{l10n_helper.js → l10n-helper.js} +5 -3
  2293. package/scripts/eslint_rules/lib/{l10n_i18nString_call_only_with_uistrings.js → l10n-i18nString-call-only-with-uistrings.js} +3 -0
  2294. package/scripts/eslint_rules/lib/{l10n_no_i18nString_calls_module_instantiation.js → l10n-no-i18nString-calls-module-instantiation.js} +5 -1
  2295. package/scripts/eslint_rules/lib/{l10n_no_locked_or_placeholder_only_phrase.js → l10n-no-locked-or-placeholder-only-phrase.js} +4 -1
  2296. package/scripts/eslint_rules/lib/{l10n_no_uistrings_export.js → l10n-no-uistrings-export.js} +15 -6
  2297. package/scripts/eslint_rules/lib/{l10n_no_unused_message.js → l10n-no-unused-message.js} +13 -3
  2298. package/scripts/eslint_rules/lib/{lit_html_no_attribute_quotes.js → lit-no-attribute-quotes.js} +4 -1
  2299. package/scripts/eslint_rules/lib/{lit_template_result_or_nothing.js → lit-template-result-or-nothing.js} +44 -26
  2300. package/scripts/eslint_rules/lib/{ban_a_tags_in_lit_html.js → no-a-tags-in-lit.js} +3 -1
  2301. package/scripts/eslint_rules/lib/no-assert-deep-strict-equal.js +61 -0
  2302. package/scripts/eslint_rules/lib/no-assert-equal-boolean-null-undefined.js +125 -0
  2303. package/scripts/eslint_rules/lib/{avoid_assert_equal.js → no-assert-equal.js} +3 -0
  2304. package/scripts/eslint_rules/lib/no-assert-strict-equal-for-arrays-and-objects.js +78 -0
  2305. package/scripts/eslint_rules/lib/{no_bound_component_methods.js → no-bound-component-methods.js} +4 -1
  2306. package/scripts/eslint_rules/lib/{commented_out_console.js → no-commented-out-console.js} +4 -1
  2307. package/scripts/eslint_rules/lib/{commented_out_import.js → no-commented-out-import.js} +4 -1
  2308. package/scripts/eslint_rules/lib/no-customized-builtin-elements.js +123 -0
  2309. package/scripts/eslint_rules/lib/{no_importing_images_from_src.js → no-importing-images-from-src.js} +3 -0
  2310. package/scripts/eslint_rules/lib/{ban_imports_in_directory.js → no-imports-in-directory.js} +5 -2
  2311. package/scripts/eslint_rules/lib/{no_it_screenshot_only_or_repeat.js → no-it-screenshot-only-or-repeat.js} +3 -0
  2312. package/scripts/eslint_rules/lib/{ban_new_lit_element_components.js → no-new-lit-element-components.js} +4 -3
  2313. package/scripts/eslint_rules/lib/{no_only_eslint_tests.js → no-only-eslint-tests.js} +4 -1
  2314. package/scripts/eslint_rules/lib/{ban_screenshot_test_outside_perf_panel.js → no-screenshot-test-outside-perf-panel.js} +8 -3
  2315. package/scripts/eslint_rules/lib/{ban_self_closing_custom_element_tagnames.js → no-self-closing-custom-element-tagnames.js} +3 -0
  2316. package/scripts/eslint_rules/lib/{no_underscored_properties.js → no-underscored-properties.js} +3 -0
  2317. package/scripts/eslint_rules/lib/prefer-assert-instance-of.js +89 -0
  2318. package/scripts/eslint_rules/lib/prefer-assert-is-ok.js +71 -0
  2319. package/scripts/eslint_rules/lib/prefer-assert-length-of.js +79 -0
  2320. package/scripts/eslint_rules/lib/{use_private_class_members.js → prefer-private-class-members.js} +16 -8
  2321. package/scripts/eslint_rules/lib/prefer-readonly-keyword.js +57 -0
  2322. package/scripts/eslint_rules/lib/prefer-url-string.js +95 -0
  2323. package/scripts/eslint_rules/lib/{screenshot_assertion_in_it_screenshot.js → screenshot-assertion-in-it-screenshot.js} +3 -0
  2324. package/scripts/eslint_rules/lib/{set_data_type_reference.js → set-data-type-reference.js} +3 -0
  2325. package/scripts/eslint_rules/lib/{single_screenshot_assertion_per_test.js → single-screenshot-assertion-per-test.js} +3 -0
  2326. package/scripts/eslint_rules/lib/{static_custom_event_names.js → static-custom-event-names.js} +3 -0
  2327. package/scripts/eslint_rules/lib/{trace_engine_test_timeouts.js → trace-engine-test-timeouts.js} +3 -0
  2328. package/scripts/eslint_rules/lib/utils.js +8 -8
  2329. package/scripts/eslint_rules/tests/{canvas_context_tracking_test.js → canvas-context-tracking.test.js} +10 -8
  2330. package/scripts/eslint_rules/tests/{check_css_import_test.js → check-css-import.test.js} +14 -23
  2331. package/scripts/eslint_rules/tests/check-enumerated-histograms.test.js +34 -0
  2332. package/scripts/eslint_rules/tests/{check_license_header_test.js → check-license-header.test.js} +11 -13
  2333. package/scripts/eslint_rules/tests/{check_test_definitions_test.js → check-test-definitions.test.js} +13 -8
  2334. package/scripts/eslint_rules/tests/{check_was_shown_methods_test.js → check-was-shown-methods.test.js} +11 -13
  2335. package/scripts/eslint_rules/tests/{enforce_bound_render_for_schedule_render_test.js → enforce-bound-render-for-schedule-render.test.js} +10 -8
  2336. package/scripts/eslint_rules/tests/{enforce_custom_event_names_test.js → enforce-custom-event-names.test.js} +11 -13
  2337. package/scripts/eslint_rules/tests/{enforce_default_import_name_test.js → enforce-default-import-name.test.js} +24 -8
  2338. package/scripts/eslint_rules/tests/{enforce-optional-properties-last_test.js → enforce-optional-properties-last.test.js} +3 -7
  2339. package/scripts/eslint_rules/tests/{es_modules_import_test.js → es-modules-import.test.js} +109 -66
  2340. package/scripts/eslint_rules/tests/{html_tagged_template_test.js → html-tagged-template.test.js} +27 -28
  2341. package/scripts/eslint_rules/tests/{inject_checkbox_styles_test.js → inject-checkbox-styles.test.js} +26 -22
  2342. package/scripts/eslint_rules/tests/{inline_type_imports_test.js → inline-type-imports.test.js} +4 -7
  2343. package/scripts/eslint_rules/tests/{jslog_context_list_test.js → jslog-context-list.test.js} +47 -36
  2344. package/scripts/eslint_rules/tests/l10n-filename-matches.test.js +138 -0
  2345. package/scripts/eslint_rules/tests/{l10n_i18nString_call_only_with_uistrings_test.js → l10n-i18nString-call-only-with-uistrings.test.js} +7 -8
  2346. package/scripts/eslint_rules/tests/{l10n_no_i18nString_calls_module_instantiation_test.js → l10n-no-i18nString-calls-module-instantiation.test.js} +11 -9
  2347. package/scripts/eslint_rules/tests/{l10n_no_locked_or_placeholder_only_phrase_test.js → l10n-no-locked-or-placeholder-only-phrase.test.js} +13 -8
  2348. package/scripts/eslint_rules/tests/{l10n_no_uistrings_export_test.js → l10n-no-uistrings-export.test.js} +14 -9
  2349. package/scripts/eslint_rules/tests/{l10n_no_unused_message_test.js → l10n-no-unused-message.test.js} +8 -8
  2350. package/scripts/eslint_rules/tests/{lit_html_no_attribute_quotes_test.js → lit-no-attribute-quotes.test.js} +11 -12
  2351. package/scripts/eslint_rules/tests/{lit_template_result_or_nothing_test.js → lit-template-result-or-nothing.test.js} +33 -36
  2352. package/scripts/eslint_rules/tests/no-a-tags-in-lit.test.js +69 -0
  2353. package/scripts/eslint_rules/tests/no-assert-deep-strict-equal.test.js +52 -0
  2354. package/scripts/eslint_rules/tests/no-assert-equal-boolean-null-undefined.test.js +208 -0
  2355. package/scripts/eslint_rules/tests/{avoid_assert_equal_test.js → no-assert-equal.test.js} +4 -5
  2356. package/scripts/eslint_rules/tests/no-assert-strict-equal-for-arrays-and-objects.test.js +88 -0
  2357. package/scripts/eslint_rules/tests/{no_bound_component_methods_test.js → no-bound-component-methods.test.js} +25 -13
  2358. package/scripts/eslint_rules/tests/{commented_out_console_test.js → no-commented-out-console.test.js} +4 -7
  2359. package/scripts/eslint_rules/tests/{commented_out_import_test.js → no-commented-out-import.test.js} +4 -7
  2360. package/scripts/eslint_rules/tests/no-customized-builtin-elements.test.js +151 -0
  2361. package/scripts/eslint_rules/tests/{no_importing_images_from_src_test.js → no-importing-images-from-src.test.js} +13 -12
  2362. package/scripts/eslint_rules/tests/no-imports-in-directory.test.js +121 -0
  2363. package/scripts/eslint_rules/tests/{no_it_screenshot_only_or_repeat_test.js → no-it-screenshot-only-or-repeat.test.js} +4 -7
  2364. package/scripts/eslint_rules/tests/{ban_new_lit_element_components_test.js → no-new-lit-element-components.test.js} +4 -7
  2365. package/scripts/eslint_rules/tests/{no_only_eslint_tests_test.js → no-only-eslint-tests.test.js} +20 -15
  2366. package/scripts/eslint_rules/tests/{ban_screenshot_test_outside_perf_panel_test.js → no-screenshot-test-outside-perf-panel.test.js} +5 -6
  2367. package/scripts/eslint_rules/tests/no-self-closing-custom-element-tagnames.test.js +61 -0
  2368. package/scripts/eslint_rules/tests/{no_underscored_properties_test.js → no-underscored-properties.test.js} +20 -13
  2369. package/scripts/eslint_rules/tests/prefer-assert-instance-of.test.js +196 -0
  2370. package/scripts/eslint_rules/tests/prefer-assert-is-ok.test.js +80 -0
  2371. package/scripts/eslint_rules/tests/prefer-assert-length-of.test.js +144 -0
  2372. package/scripts/eslint_rules/tests/{use_private_class_members_test.js → prefer-private-class-members.test.js} +4 -7
  2373. package/scripts/eslint_rules/tests/prefer-readonly-keyword.test.js +67 -0
  2374. package/scripts/eslint_rules/tests/prefer-url-string.test.js +87 -0
  2375. package/scripts/eslint_rules/tests/{screenshot_assertion_in_it_screenshot_test.js → screenshot-assertion-in-it-screenshot.test.js} +4 -7
  2376. package/scripts/eslint_rules/tests/{set_data_type_reference_test.js → set-data-type-reference.test.js} +19 -11
  2377. package/scripts/eslint_rules/tests/{single_screenshot_assertion_per_test_test.js → single-screenshot-assertion-per-test.test.js} +4 -7
  2378. package/scripts/eslint_rules/tests/{static_custom_event_names_test.js → static-custom-event-names.test.js} +14 -14
  2379. package/scripts/eslint_rules/tests/{trace_engine_test_timeouts_test.js → trace-engine-test-timeouts.test.js} +5 -7
  2380. package/scripts/eslint_rules/tests/utils/utils.js +18 -0
  2381. package/scripts/eslint_rules/tests/{utils_test.js → utils.test.js} +9 -9
  2382. package/scripts/generate_metric_compare_strings.js +1 -1
  2383. package/scripts/javascript_natives/index.js +14 -6
  2384. package/scripts/migration/web-tests-esm/rename-legacy-global.mjs +4 -4
  2385. package/scripts/npm_test.js +1 -0
  2386. package/scripts/reformat-clang-js-ts.js +1 -2
  2387. package/scripts/run_on_target.mjs +1 -1
  2388. package/scripts/search-trace-files.js +1 -1
  2389. package/scripts/stylelint_rules/lib/{use_theme_colors.js → use_theme_colors.mjs} +131 -49
  2390. package/scripts/stylelint_rules/tests/{use_theme_colors_test.js → use_theme_colors.test.js} +116 -44
  2391. package/scripts/utils.js +23 -14
  2392. package/scripts/watch_build.js +19 -76
  2393. package/tsconfig.json +2 -1
  2394. package/.eslintignore +0 -41
  2395. package/.eslintrc.js +0 -315
  2396. package/front_end/.eslintrc.js +0 -96
  2397. package/front_end/Images/whatsnew.avif +0 -0
  2398. package/front_end/core/sdk/CPUProfileDataModel.ts +0 -17
  2399. package/front_end/core/sdk/ProfileTreeModel.ts +0 -17
  2400. package/front_end/legacy_test_runner/.eslintrc.js +0 -13
  2401. package/front_end/models/trace/extras/URLForEntry.ts +0 -56
  2402. package/front_end/models/trace/handlers/.eslintrc.js +0 -18
  2403. package/front_end/models/trace/lantern/.eslintrc.js +0 -16
  2404. package/front_end/panels/application/reportingApiReportsView.css +0 -18
  2405. package/front_end/panels/elements/components/AdornerSettingsPane.ts +0 -132
  2406. package/front_end/panels/elements/components/adornerSettingsPane.css +0 -40
  2407. package/front_end/panels/emulation/deviceModeToolbar.css +0 -14
  2408. package/front_end/panels/freestyler/AiAgent.test.ts +0 -554
  2409. package/front_end/panels/freestyler/AiAgent.ts +0 -639
  2410. package/front_end/panels/freestyler/AiHistoryStorage.ts +0 -73
  2411. package/front_end/panels/freestyler/ChangeManager.test.ts +0 -132
  2412. package/front_end/panels/freestyler/DrJonesNetworkAgent.test.ts +0 -381
  2413. package/front_end/panels/freestyler/DrJonesNetworkAgent.ts +0 -450
  2414. package/front_end/panels/freestyler/components/FreestylerChatUi.ts +0 -1366
  2415. package/front_end/panels/freestyler/components/UserActionRow.test.ts +0 -60
  2416. package/front_end/panels/freestyler/components/UserActionRow.ts +0 -383
  2417. package/front_end/panels/freestyler/components/userActionRow.css +0 -123
  2418. package/front_end/panels/freestyler/freestyler.ts +0 -16
  2419. package/front_end/panels/protocol_monitor/components/Toolbar.ts +0 -91
  2420. package/front_end/panels/protocol_monitor/components/components.ts +0 -11
  2421. package/front_end/panels/protocol_monitor/components/toolbar.css +0 -31
  2422. package/front_end/panels/recorder/components/StartView.ts +0 -133
  2423. package/front_end/panels/recorder/injected/.eslintrc.js +0 -14
  2424. package/front_end/panels/timeline/ExtensionDataGatherer.ts +0 -65
  2425. package/front_end/panels/timeline/TimelineLandingPage.ts +0 -108
  2426. package/front_end/panels/timeline/fixtures/traces/nested-initiators.json.gz +0 -0
  2427. package/front_end/panels/timeline/fixtures/traces/set-timeout-long-task.json.gz +0 -0
  2428. package/front_end/panels/timeline/historyToolbarButton.css +0 -81
  2429. package/front_end/panels/timeline/utils/NetworkRequest.ts +0 -40
  2430. package/front_end/panels/whats_new/resources/whatsnew.avif +0 -0
  2431. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts +0 -26
  2432. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts.map +0 -1
  2433. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js +0 -311
  2434. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js.map +0 -1
  2435. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.d.ts +0 -36
  2436. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.d.ts.map +0 -1
  2437. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.js +0 -154
  2438. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FirefoxTargetManager.js.map +0 -1
  2439. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts +0 -26
  2440. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts.map +0 -1
  2441. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js +0 -307
  2442. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js.map +0 -1
  2443. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.d.ts +0 -36
  2444. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.d.ts.map +0 -1
  2445. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.js +0 -150
  2446. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FirefoxTargetManager.js.map +0 -1
  2447. package/front_end/third_party/puppeteer/package/src/cdp/ChromeTargetManager.ts +0 -438
  2448. package/front_end/third_party/puppeteer/package/src/cdp/FirefoxTargetManager.ts +0 -214
  2449. package/front_end/third_party/third-party-web/package/.prettierrc +0 -10
  2450. package/front_end/ui/components/data_grid/DataGrid.test.ts +0 -1058
  2451. package/front_end/ui/components/data_grid/DataGrid.ts +0 -968
  2452. package/front_end/ui/components/data_grid/DataGridContextMenuUtils.ts +0 -67
  2453. package/front_end/ui/components/data_grid/DataGridController.test.ts +0 -433
  2454. package/front_end/ui/components/data_grid/DataGridController.ts +0 -302
  2455. package/front_end/ui/components/data_grid/DataGridControllerIntegrator.ts +0 -49
  2456. package/front_end/ui/components/data_grid/DataGridEvents.ts +0 -121
  2457. package/front_end/ui/components/data_grid/DataGridRenderers.ts +0 -27
  2458. package/front_end/ui/components/data_grid/DataGridUtils.ts +0 -259
  2459. package/front_end/ui/components/data_grid/README.md +0 -118
  2460. package/front_end/ui/components/data_grid/dataGrid.css +0 -188
  2461. package/front_end/ui/components/data_grid/dataGridController.css +0 -11
  2462. package/front_end/ui/components/data_grid/data_grid.ts +0 -18
  2463. package/front_end/ui/components/dialogs/IconDialog.ts +0 -160
  2464. package/front_end/ui/components/dialogs/iconDialog.css +0 -24
  2465. package/front_end/ui/components/docs/.eslintrc.js +0 -19
  2466. package/front_end/ui/components/docs/data_grid/adding-data.html +0 -35
  2467. package/front_end/ui/components/docs/data_grid/adding-data.ts +0 -61
  2468. package/front_end/ui/components/docs/data_grid/basic.ts +0 -27
  2469. package/front_end/ui/components/docs/data_grid/empty.html +0 -31
  2470. package/front_end/ui/components/docs/data_grid/empty.ts +0 -21
  2471. package/front_end/ui/components/docs/data_grid/hide-cols.html +0 -35
  2472. package/front_end/ui/components/docs/data_grid/hide-cols.ts +0 -59
  2473. package/front_end/ui/components/docs/data_grid/large-data.html +0 -30
  2474. package/front_end/ui/components/docs/data_grid/large-data.ts +0 -43
  2475. package/front_end/ui/components/docs/data_grid/sticky-headers.html +0 -30
  2476. package/front_end/ui/components/docs/data_grid/sticky-headers.ts +0 -44
  2477. package/front_end/ui/components/docs/data_grid/three_columns.html +0 -29
  2478. package/front_end/ui/components/docs/data_grid/three_columns.ts +0 -44
  2479. package/front_end/ui/components/docs/data_grid_controller/basic.ts +0 -45
  2480. package/front_end/ui/components/docs/data_grid_controller/custom-context-menu-items.html +0 -28
  2481. package/front_end/ui/components/docs/data_grid_controller/custom-context-menu-items.ts +0 -34
  2482. package/front_end/ui/components/docs/data_grid_controller/filter.html +0 -40
  2483. package/front_end/ui/components/docs/data_grid_controller/filter.ts +0 -298
  2484. package/front_end/ui/components/docs/icon_dialog/basic.ts +0 -46
  2485. package/front_end/ui/components/docs/recorder_start_view/basic.html +0 -20
  2486. package/front_end/ui/components/docs/recorder_start_view/basic.ts +0 -13
  2487. package/front_end/ui/components/docs/shortcut_dialog/basic.html +0 -28
  2488. package/front_end/ui/components/render_coordinator/RenderCoordinator.ts +0 -331
  2489. package/front_end/ui/legacy/HistoryInput.ts +0 -61
  2490. package/front_end/ui/legacy/applicationColorTokens.css +0 -61
  2491. package/front_end/ui/legacy/components/data_grid/DataGridWithPreview.ts +0 -297
  2492. package/front_end/ui/legacy/components/inline_editor/CSSLength.test.ts +0 -75
  2493. package/front_end/ui/legacy/components/inline_editor/CSSLength.ts +0 -156
  2494. package/front_end/ui/legacy/components/inline_editor/cssLength.css +0 -27
  2495. package/front_end/ui/legacy/components/perf_ui/.eslintrc.js +0 -18
  2496. package/front_end/ui/legacy/designTokens.css +0 -115
  2497. package/front_end/ui/legacy/inspectorSyntaxHighlight.css +0 -131
  2498. package/front_end/ui/legacy/radioButton.css +0 -32
  2499. package/front_end/ui/legacy/slider.css +0 -51
  2500. package/front_end/ui/legacy/themeColors.css +0 -774
  2501. package/front_end/ui/legacy/tokens.css +0 -202
  2502. package/front_end/ui/lit-html/static.test.ts +0 -153
  2503. package/front_end/ui/lit-html/static.ts +0 -127
  2504. package/scripts/.eslintrc.js +0 -9
  2505. package/scripts/check_enumerated_histograms.js +0 -101
  2506. package/scripts/eslint_rules/lib/ban_style_tags_in_lit_html.js +0 -40
  2507. package/scripts/eslint_rules/lib/compare_arrays_with_assert_deepequal.js +0 -60
  2508. package/scripts/eslint_rules/lib/lit_html_host_this.js +0 -86
  2509. package/scripts/eslint_rules/lib/lit_no_style_interpolation.js +0 -80
  2510. package/scripts/eslint_rules/lib/migrate_create_shadow_root_with_styles.js +0 -110
  2511. package/scripts/eslint_rules/lib/migrate_register_required_css.js +0 -240
  2512. package/scripts/eslint_rules/lib/no_repeated_tests.js +0 -30
  2513. package/scripts/eslint_rules/lib/prefer_readonly_keyword.js +0 -27
  2514. package/scripts/eslint_rules/lib/static_tag_must_be_static_property.js +0 -71
  2515. package/scripts/eslint_rules/tests/.eslintrc.js +0 -18
  2516. package/scripts/eslint_rules/tests/ban_a_tags_in_lit_html_test.js +0 -64
  2517. package/scripts/eslint_rules/tests/ban_imports_in_directory_test.js +0 -59
  2518. package/scripts/eslint_rules/tests/ban_self_closing_custom_element_tagnames_test.js +0 -64
  2519. package/scripts/eslint_rules/tests/ban_style_tags_in_lit_html_test.js +0 -61
  2520. package/scripts/eslint_rules/tests/check_enumerated_histograms_test.js +0 -32
  2521. package/scripts/eslint_rules/tests/compare_arrays_with_assert_deepequal_test.js +0 -110
  2522. package/scripts/eslint_rules/tests/l10n_filename_matches_test.js +0 -64
  2523. package/scripts/eslint_rules/tests/lit_html_host_this_test.js +0 -48
  2524. package/scripts/eslint_rules/tests/lit_no_style_interpolation_test.js +0 -60
  2525. package/scripts/eslint_rules/tests/migrate_create_shadow_root_with_styles_test.js +0 -265
  2526. package/scripts/eslint_rules/tests/migrate_register_required_css_test.js +0 -473
  2527. package/scripts/eslint_rules/tests/no_repeated_tests_test.js +0 -49
  2528. package/scripts/eslint_rules/tests/prefer_readonly_keyword_test.js +0 -54
  2529. package/scripts/eslint_rules/tests/static_tag_must_be_static_property_test.js +0 -93
  2530. package/scripts/freestyler/README.md +0 -45
  2531. package/scripts/freestyler/auto_freestyler.js +0 -429
  2532. /package/front_end/ui/components/docs/{freestyler → ai_assistance}/basic.html +0 -0
  2533. /package/front_end/ui/components/docs/{freestyler → ai_assistance}/empty_state.html +0 -0
  2534. /package/front_end/ui/{lit-html → lit}/visibility.gni +0 -0
  2535. /package/scripts/{freestyler → ai_assistance}/eval/index.html +0 -0
@@ -104,6 +104,9 @@
104
104
  "core/common/Revealer.ts | networkPanel": {
105
105
  "message": "«Ցանց» վահանակ"
106
106
  },
107
+ "core/common/Revealer.ts | securityPanel": {
108
+ "message": "Security panel"
109
+ },
107
110
  "core/common/Revealer.ts | sourcesPanel": {
108
111
  "message": "«Աղբյուրներ» վահանակ"
109
112
  },
@@ -152,6 +155,9 @@
152
155
  "core/common/SettingRegistration.ts | persistence": {
153
156
  "message": "Կայունություն"
154
157
  },
158
+ "core/common/SettingRegistration.ts | privacy": {
159
+ "message": "Գաղտնիություն"
160
+ },
155
161
  "core/common/SettingRegistration.ts | rendering": {
156
162
  "message": "Արտապատկերում"
157
163
  },
@@ -206,6 +212,21 @@
206
212
  "core/sdk/CPUProfilerModel.ts | profileD": {
207
213
  "message": "Պրոֆիլ {PH1}"
208
214
  },
215
+ "core/sdk/CPUThrottlingManager.ts | calibratedLowTierMobile": {
216
+ "message": "Ստորին սեգմենտի բջջային սարք"
217
+ },
218
+ "core/sdk/CPUThrottlingManager.ts | calibratedMidTierMobile": {
219
+ "message": "Միջին սեգմենտի շարժական սարք"
220
+ },
221
+ "core/sdk/CPUThrottlingManager.ts | calibrationErrorDeviceTooWeak": {
222
+ "message": "Սարքի հզորությունը բավարար չէ"
223
+ },
224
+ "core/sdk/CPUThrottlingManager.ts | dSlowdown": {
225
+ "message": "{PH1}× դանդաղեցում"
226
+ },
227
+ "core/sdk/CPUThrottlingManager.ts | noThrottling": {
228
+ "message": "Սահմանափակում չկա"
229
+ },
209
230
  "core/sdk/CSSStyleSheetHeader.ts | couldNotFindTheOriginalStyle": {
210
231
  "message": "Չհաջողվեց գտել ոճերի բնօրինակ աղյուսակը։"
211
232
  },
@@ -218,6 +239,9 @@
218
239
  "core/sdk/CompilerSourceMappingContentProvider.ts | couldNotLoadContentForSS": {
219
240
  "message": "Չհաջողվեց բեռնել բովանդակություն {PH1} էջի համար ({PH2})"
220
241
  },
242
+ "core/sdk/Connections.ts | websocketDisconnected": {
243
+ "message": "WebSocket-ն անջատված է"
244
+ },
221
245
  "core/sdk/ConsoleModel.ts | bfcacheNavigation": {
222
246
  "message": "Անցումը {PH1} էջ վերականգնվել է ամբողջ էջի քեշից (մանրամասն՝ https://web.dev/bfcache/)"
223
247
  },
@@ -437,6 +461,12 @@
437
461
  "core/sdk/PageResourceLoader.ts | loadCanceledDueToReloadOf": {
438
462
  "message": "Բեռնումը չեղարկվել է ստուգվող էջի վերաբեռնման պատճառով"
439
463
  },
464
+ "core/sdk/RehydratingConnection.ts | errorLoadingLog": {
465
+ "message": "Մատյանի բեռնման սխալ"
466
+ },
467
+ "core/sdk/RehydratingConnection.ts | noHostWindow": {
468
+ "message": "Հնարավոր չէ գտնել խնամորդի պատուհանը"
469
+ },
440
470
  "core/sdk/RehydratingConnection.ts | noSourceText": {
441
471
  "message": "Բնօրինակներ չկան"
442
472
  },
@@ -1121,6 +1151,9 @@
1121
1151
  "entrypoints/node_app/NodeConnectionsPanel.ts | specifyNetworkEndpointAnd": {
1122
1152
  "message": "Նշեք ցանցի վերջնակետը, և մշակողի գործիքները ավտոմատ կերպով կմիանան դրան։ Ավելին իմանալու համար կարդացեք՝ {PH1}։"
1123
1153
  },
1154
+ "entrypoints/node_app/NodeMain.ts | NodejsTitleS": {
1155
+ "message": "Ծրագրավորողի գործիքներ – Node.js՝ {PH1}"
1156
+ },
1124
1157
  "entrypoints/node_app/NodeMain.ts | main": {
1125
1158
  "message": "Գլխավոր"
1126
1159
  },
@@ -1148,9 +1181,6 @@
1148
1181
  "generated/Deprecation.ts | AuthorizationCoveredByWildcard": {
1149
1182
  "message": "Լիազորումը չի կատարվի, եթե CORS Access-Control-Allow-Headers վերնագրում նշված լինի դերանշան (*)։"
1150
1183
  },
1151
- "generated/Deprecation.ts | CSSCustomStateDeprecatedSyntax": {
1152
- "message": ":--customstatename-ն այլևս չի աջակցվում։ Դրա փոխարեն օգտագործեք :state(customstatename) շարահյուսությունը։"
1153
- },
1154
1184
  "generated/Deprecation.ts | CSSSelectorInternalMediaControlsOverlayCastButton": {
1155
1185
  "message": "Google Cast-ի կանխադրված ամբողջացումն անջատելու համար -internal-media-controls-overlay-cast-button ընտրիչի փոխարեն օգտագործեք disableRemotePlayback հատկանիշը։"
1156
1186
  },
@@ -1301,12 +1331,12 @@
1301
1331
  "generated/Deprecation.ts | UnloadHandler": {
1302
1332
  "message": "Ապաբեռնման իրադարձության ունկնդիրներն այլևս չեն աջակցվում և կհեռացվեն։"
1303
1333
  },
1304
- "generated/Deprecation.ts | V8GPUAdapter_RequestAdapterInfo_Method": {
1305
- "message": "GPUAdapter requestAdapterInfo() մեթոդը հնացած է։ Փոխարենը օգտագործեք GPUAdapter info հատկանիշը։"
1306
- },
1307
1334
  "generated/Deprecation.ts | V8SharedArrayBufferConstructedInExtensionWithoutIsolation": {
1308
1335
  "message": "Ընդլայնումներում անհրաժեշտ է միացնել տարբեր աղբյուրների մեկուսացումը, որպեսզի շարունակեք օգտագործել SharedArrayBuffer օբյեկտը։ Մանրամասների համար անցեք https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/ էջ։"
1309
1336
  },
1337
+ "generated/Deprecation.ts | WebGPULimitMaxInterStageShaderComponents": {
1338
+ "message": "WebGPU-ի maxInterStageShaderComponents սահմանափակման աջակցումը հնացել է, փոխարենը օգտագործեք WebGPU-ի maxInterStageShaderVariables սահմանափակումը։"
1339
+ },
1310
1340
  "generated/Deprecation.ts | WebSQL": {
1311
1341
  "message": "Web SQL-ն այլևս չի աջակցվում։ Օգտագործեք SQLite WebAssembly-ն կամ ինդեքսավորված շտեմարան։"
1312
1342
  },
@@ -1370,6 +1400,9 @@
1370
1400
  "models/bindings/ResourceScriptMapping.ts | liveEditFailed": {
1371
1401
  "message": "LiveEdit-ը ձախողվեց՝ {PH1}"
1372
1402
  },
1403
+ "models/crux-manager/CrUXManager.ts | fieldOverrideWarning": {
1404
+ "message": "Դաշտի տվյալները կազմաձևված են այլ URL-ի, այլ ոչ թե ընթացիկ էջի համար։"
1405
+ },
1373
1406
  "models/emulation/DeviceModeModel.ts | devicePixelRatioMustBeANumberOr": {
1374
1407
  "message": "Սարքի բարձրության և լայնության պիքսելների հարաբերությունը պետք է թիվ լինի, կամ դաշտը թողեք դատարկ"
1375
1408
  },
@@ -1547,6 +1580,9 @@
1547
1580
  "models/issues_manager/SharedDictionaryIssue.ts | compressionDictionaryTransport": {
1548
1581
  "message": "Սեղմման գրացուցակի տեղափոխում"
1549
1582
  },
1583
+ "models/live-metrics/LiveMetrics.ts | lcpEmulationWarning": {
1584
+ "message": "Նոր սարքի նմանակումը էջի բեռնումից հետո կարող է ազդել LCP-ի արժեքի վրա։ Վերաբեռնեք էջը նոր սարք նմանակելուց հետո՝ LCP-ի արժեքի ավելի ճշգրիտ տվյալներ ստանալու համար։"
1585
+ },
1550
1586
  "models/logs/NetworkLog.ts | anonymous": {
1551
1587
  "message": "<անանուն>"
1552
1588
  },
@@ -1694,6 +1730,12 @@
1694
1730
  "models/trace/insights/CLSCulprits.ts | title": {
1695
1731
  "message": "Դասավորության շեղումների պատճառները"
1696
1732
  },
1733
+ "models/trace/insights/DOMSize.ts | description": {
1734
+ "message": "DOM-ի մեծ չափսի պատճառով ոճերի հաշվարկը կարող է դանդաղել, իսկ փաթեթի վերադասավորման ծախսերը՝ ավելանալ, ինչը կազդի էջի արձագանքման վրա։ DOM-ի մեծ չափսի պատճառով նաև ավելի շատ հիշողություն է օգտագործվում։ [Իմանալ, թե ինչպես խուսափել DOM-ի մեծ չափսից](https://developer.chrome.com/docs/lighthouse/performance/dom-size/)։"
1735
+ },
1736
+ "models/trace/insights/DOMSize.ts | title": {
1737
+ "message": "Օպտիմալացնել DOM-ի չափսը"
1738
+ },
1697
1739
  "models/trace/insights/DocumentLatency.ts | description": {
1698
1740
  "message": "Ձեր առաջին ցանցային հարցումը ամենակարևորն է։ Կրճատեք հապաղումը՝ խուսափելով վերաուղղորդումներից, արագացնելով սերվերի պատասխանը և օգտագործելով տեքստի սեղմումը։"
1699
1741
  },
@@ -1706,6 +1748,30 @@
1706
1748
  "models/trace/insights/FontDisplay.ts | title": {
1707
1749
  "message": "Օգտագործվող տառատեսակներ"
1708
1750
  },
1751
+ "models/trace/insights/ForcedReflow.ts | description": {
1752
+ "message": "Շատ API-ներ, որոնք սովորաբար կարդում են դասավորության երկրաչափությունը, հարկադրում են արտապատկերման շարժիչին դադարեցնել սկրիպտների կատարումը՝ ոճը և դասավորությունը հաշվարկելու համար։ Իմացեք ավելին [հարկադրված վերադասավորման](https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing#avoid-forced-synchronous-layouts) և դրանց նվազեցման եղանակների մասին։"
1753
+ },
1754
+ "models/trace/insights/ForcedReflow.ts | title": {
1755
+ "message": "Հարկադրված վերադասավորում"
1756
+ },
1757
+ "models/trace/insights/ImageDelivery.ts | description": {
1758
+ "message": "Պատկերների ներբեռնման ժամանակի կրճատումը կարող է բարելավել էջի բեռնման ժամանակը և LCP-ի արժեքը։ [Իմանալ ավելին պատկերի չափսի օպտիմալացման մասին](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)"
1759
+ },
1760
+ "models/trace/insights/ImageDelivery.ts | title": {
1761
+ "message": "Բարելավեք պատկերների բեռնումը"
1762
+ },
1763
+ "models/trace/insights/ImageDelivery.ts | useCompression": {
1764
+ "message": "Եթե ավելացնեք պատկերի սեղմման գործակիցը, ֆայլի ներբեռնման չափսը կարող է փոքրանալ (մոտ {PH1})։"
1765
+ },
1766
+ "models/trace/insights/ImageDelivery.ts | useModernFormat": {
1767
+ "message": "Պատկերների ժամանակակից ձևաչափի (WebP, AVIF) օգտագործումը կամ պատկերների սեղմման ավելացումը կարող է բարելավել այս պատկերի ներբեռնման չափսը (մոտ {PH1})։"
1768
+ },
1769
+ "models/trace/insights/ImageDelivery.ts | useResponsiveSize": {
1770
+ "message": "Պատկերի այս ֆայլը գերազանցում է ({PH2}) ցուցադրված չափսերը ({PH3})։ Օգտագործեք ադապտիվ պատկերներ՝ պատկերի ներբեռնման չափսը փոքրացնելու համար (մոտ {PH1})։"
1771
+ },
1772
+ "models/trace/insights/ImageDelivery.ts | useVideoFormat": {
1773
+ "message": "GIF-երի փոխարեն վիդեո ձևաչափերի օգտագործումը կարող է բարելավել շարժանկարային բովանդակության ներբեռնման չափսը (մոտ {PH1})։"
1774
+ },
1709
1775
  "models/trace/insights/InteractionToNextPaint.ts | description": {
1710
1776
  "message": "Սկսեք վերլուծությունն ամենաերկար փուլից։ [Հետաձգումները կարելի է կրճատել](https://web.dev/articles/optimize-inp#optimize_interactions)։ Մշակման տևողությունը կրճատելու համար [օպտիմալացրեք հիմնական հոսքի ծախսերը](https://web.dev/articles/optimize-long-tasks)։ Դրանք սովորաբար վերաբերում են JS-ին։"
1711
1777
  },
@@ -1724,6 +1790,12 @@
1724
1790
  "models/trace/insights/LCPPhases.ts | title": {
1725
1791
  "message": "LCP-ն ըստ փուլի"
1726
1792
  },
1793
+ "models/trace/insights/LongCriticalNetworkTree.ts | description": {
1794
+ "message": "[Խուսափեք կրիտիկական հարցումների շղթաներից](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains)՝ կրճատելով շղթաների երկարությունը, նվազեցնելով ռեսուրսների ներբեռնման չափսը կամ հետաձգելով ոչ անհրաժեշտ ռեսուրսների ներբեռնումը, որպեսզի էջի բեռնումը բարելավվի։"
1795
+ },
1796
+ "models/trace/insights/LongCriticalNetworkTree.ts | title": {
1797
+ "message": "Կրիտիկական ցանցի հարցումների խոշոր ծառ"
1798
+ },
1727
1799
  "models/trace/insights/RenderBlocking.ts | description": {
1728
1800
  "message": "Հարցումներն արգելափակում են էջի նախնական արտապատկերումը, ինչը կարող է առաջացնել LCP-ի հապաղում։ [Հետաձգումը կամ տեղադրումը](https://web.dev/learn/performance/understanding-the-critical-path#render-blocking_resources/) կարող է ազատել այս ցանցային հարցումների բացասական ազդեցությունից։"
1729
1801
  },
@@ -1743,10 +1815,10 @@
1743
1815
  "message": "Երրորդ կողմեր"
1744
1816
  },
1745
1817
  "models/trace/insights/Viewport.ts | description": {
1746
- "message": "Էջի դիտման շրջանը օպտիմալացված չէ բջջային սարքերի համար, այնպես որ էկրանին հպելիս կարող է [առաջանալ մինչև 300 մվ հետաձգում](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/)։"
1818
+ "message": "Եթե բջջային սարքերի համար դիտման շրջանն օպտիմալացված չէ, էկրանին հպելիս հնարավոր է [մինչև 300 մվ տևողությամբ հապաղում](https://developer.chrome.com/blog/300ms-tap-delay-gone-away/)։"
1747
1819
  },
1748
1820
  "models/trace/insights/Viewport.ts | title": {
1749
- "message": "Դիտման շրջանը օպտիմալացված չէ բջջային սարքերի համար"
1821
+ "message": "Օպտիմալացնել դիտման շրջանը բջջային սարքերի համար"
1750
1822
  },
1751
1823
  "models/workspace/UISourceCode.ts | index": {
1752
1824
  "message": "(ինդեքս)"
@@ -1869,7 +1941,7 @@
1869
1941
  "message": "Բովանդակություն"
1870
1942
  },
1871
1943
  "panels/accessibility/AccessibilityStrings.ts | controls": {
1872
- "message": "Կառավարման տարրեր"
1944
+ "message": "Կարգավորումներ"
1873
1945
  },
1874
1946
  "panels/accessibility/AccessibilityStrings.ts | describedBy": {
1875
1947
  "message": "Բնութագրի հեղինակը"
@@ -2171,6 +2243,87 @@
2171
2243
  "panels/accessibility/accessibility-meta.ts | shoAccessibility": {
2172
2244
  "message": "Ցույց տալ «Հատուկ գործառույթները»"
2173
2245
  },
2246
+ "panels/ai_assistance/AiAssistancePanel.ts | chatDeleted": {
2247
+ "message": "Զրույցը ջնջվեց"
2248
+ },
2249
+ "panels/ai_assistance/AiAssistancePanel.ts | clearChatHistory": {
2250
+ "message": "Ջնջել զրույցների պատմությունը սարքում"
2251
+ },
2252
+ "panels/ai_assistance/AiAssistancePanel.ts | deleteChat": {
2253
+ "message": "Ջնջել զրույցը սարքում"
2254
+ },
2255
+ "panels/ai_assistance/AiAssistancePanel.ts | help": {
2256
+ "message": "Օգնություն"
2257
+ },
2258
+ "panels/ai_assistance/AiAssistancePanel.ts | history": {
2259
+ "message": "Պատմություն"
2260
+ },
2261
+ "panels/ai_assistance/AiAssistancePanel.ts | newChat": {
2262
+ "message": "Նոր զրույց"
2263
+ },
2264
+ "panels/ai_assistance/AiAssistancePanel.ts | newChatCreated": {
2265
+ "message": "Ստեղծվեց նոր զրույց"
2266
+ },
2267
+ "panels/ai_assistance/AiAssistancePanel.ts | noPastConversations": {
2268
+ "message": "Անցած զրույցներ չկան"
2269
+ },
2270
+ "panels/ai_assistance/AiAssistancePanel.ts | sendFeedback": {
2271
+ "message": "Կարծիք հայտնել"
2272
+ },
2273
+ "panels/ai_assistance/AiAssistancePanel.ts | settings": {
2274
+ "message": "Կարգավորումներ"
2275
+ },
2276
+ "panels/ai_assistance/ai_assistance-meta.ts | aiAssistance": {
2277
+ "message": "ԱԲ օգնություն"
2278
+ },
2279
+ "panels/ai_assistance/ai_assistance-meta.ts | askAi": {
2280
+ "message": "Հարցնել ԱԲ-ին"
2281
+ },
2282
+ "panels/ai_assistance/ai_assistance-meta.ts | enableAiAssistance": {
2283
+ "message": "Միացնել ԱԲ օգնությունը"
2284
+ },
2285
+ "panels/ai_assistance/ai_assistance-meta.ts | geoRestricted": {
2286
+ "message": "Այս գործառույթն անհասանելի է ձեր տարածաշրջանում։"
2287
+ },
2288
+ "panels/ai_assistance/ai_assistance-meta.ts | policyRestricted": {
2289
+ "message": "Այս կարգավորումը կառավարվում է ձեր ադմինիստրատորի կողմից։"
2290
+ },
2291
+ "panels/ai_assistance/ai_assistance-meta.ts | showAiAssistance": {
2292
+ "message": "Ցույց տալ ԱԲ օգնությունը"
2293
+ },
2294
+ "panels/ai_assistance/ai_assistance-meta.ts | wrongLocale": {
2295
+ "message": "Այս գործառույթից օգտվելու համար ծրագրավորողի գործիքների կարգավորումներում ընտրեք անգլերենը"
2296
+ },
2297
+ "panels/ai_assistance/components/ChatView.ts | followTheSteps": {
2298
+ "message": "Կատարեք վերևում նշված քայլերը՝ հարց տալու համար"
2299
+ },
2300
+ "panels/ai_assistance/components/ChatView.ts | inputDisclaimerForEmptyState": {
2301
+ "message": "Սա փորձնական ԱԲ գործառույթ է և երբեմն կարող է սխալներով աշխատել։"
2302
+ },
2303
+ "panels/ai_assistance/components/ChatView.ts | learnAbout": {
2304
+ "message": "Իմանալ ավելին ԱԲ-ի մասին ծրագրավորողի գործիքներում"
2305
+ },
2306
+ "panels/ai_assistance/components/ChatView.ts | notLoggedIn": {
2307
+ "message": "Այս գործառույթը հասանելի է միայն այն դեպքում, երբ մուտք եք գործել Chrome ձեր Google հաշվով։"
2308
+ },
2309
+ "panels/ai_assistance/components/ChatView.ts | offline": {
2310
+ "message": "Ստուգեք ձեր ինտերնետ կապը և նորից փորձեք"
2311
+ },
2312
+ "panels/ai_assistance/components/ChatView.ts | settingsLink": {
2313
+ "message": "ԱԲ օգնությունը Կարգավորումներում"
2314
+ },
2315
+ "panels/ai_assistance/components/ChatView.ts | turnOnForStyles": {
2316
+ "message": "Միացրեք {PH1}ը, որպեսզի օգնություն ստանաք CSS-ի ոճերի մասին պատկերացում կազմելու հետ կապված"
2317
+ },
2318
+ "panels/ai_assistance/components/ChatView.ts | turnOnForStylesAndRequests": {
2319
+ "message": "Միացրեք {PH1}՝ ոճերի և ցանցի հարցումների հետ կապված օգնություն ստանալու համար"
2320
+ },
2321
+ "panels/ai_assistance/components/ChatView.ts | turnOnForStylesRequestsAndFiles": {
2322
+ "message": "Միացրեք {PH1}՝ ոճերի, ցանցի հարցումների և ֆայլերի հետ կապված օգնություն ստանալու համար"
2323
+ },
2324
+ "panels/ai_assistance/components/ChatView.ts | turnOnForStylesRequestsPerformanceAndFiles": {
2325
+ "message": "Միացրեք {PH1}՝ ոճերի, ցանցի հարցումների, արտադրողականության և ֆայլերի հետ կապված օգնություն ստանալու համար"
2326
+ },
2174
2327
  "panels/animation/AnimationTimeline.ts | animationPreviewS": {
2175
2328
  "message": "Անիմացիայի նախադիտում {PH1}"
2176
2329
  },
@@ -2507,11 +2660,14 @@
2507
2660
  "panels/application/ApplicationPanelSidebar.ts | cookies": {
2508
2661
  "message": "Քուքիներ"
2509
2662
  },
2663
+ "panels/application/ApplicationPanelSidebar.ts | cookiesDescription": {
2664
+ "message": "Այս էջում կարող եք դիտել, ավելացնել, փոփոխել և ջնջել քուքիները։"
2665
+ },
2510
2666
  "panels/application/ApplicationPanelSidebar.ts | cookiesUsedByFramesFromS": {
2511
2667
  "message": "Քուքի ֆայլեր, որոնք {PH1} կայքում օգտագործվում են շրջանակների կողմից"
2512
2668
  },
2513
2669
  "panels/application/ApplicationPanelSidebar.ts | documentNotAvailable": {
2514
- "message": "Փաստաթուղթը հասանելի չէ"
2670
+ "message": "Փաստաթուղթ չի հայտնաբերվել"
2515
2671
  },
2516
2672
  "panels/application/ApplicationPanelSidebar.ts | extensionLocalStorage": {
2517
2673
  "message": "Լոկալ"
@@ -2525,6 +2681,9 @@
2525
2681
  "panels/application/ApplicationPanelSidebar.ts | extensionStorage": {
2526
2682
  "message": "Ընդլայնման պահոց"
2527
2683
  },
2684
+ "panels/application/ApplicationPanelSidebar.ts | extensionStorageDescription": {
2685
+ "message": "Այս էջում դուք կարող եք դիտել, ավելացնել, փոփոխել և ջնջել ընդլայնման պահոցի «բանալի-արժեք» զույգերը։"
2686
+ },
2528
2687
  "panels/application/ApplicationPanelSidebar.ts | extensionSyncStorage": {
2529
2688
  "message": "Համաժամացում"
2530
2689
  },
@@ -2534,6 +2693,9 @@
2534
2693
  "panels/application/ApplicationPanelSidebar.ts | indexeddb": {
2535
2694
  "message": "IndexedDB"
2536
2695
  },
2696
+ "panels/application/ApplicationPanelSidebar.ts | indexeddbDescription": {
2697
+ "message": "Այս էջում դուք կարող եք դիտել և ջնջել indexedDB «բանալի-արժեք» զույգերը և տվյալների շտեմարանները։"
2698
+ },
2537
2699
  "panels/application/ApplicationPanelSidebar.ts | keyPathS": {
2538
2700
  "message": "Բանալու ուղին՝ {PH1}"
2539
2701
  },
@@ -2543,12 +2705,33 @@
2543
2705
  "panels/application/ApplicationPanelSidebar.ts | localStorage": {
2544
2706
  "message": "Սարքի հիշողություն"
2545
2707
  },
2708
+ "panels/application/ApplicationPanelSidebar.ts | localStorageDescription": {
2709
+ "message": "Այս էջում դուք կարող եք դիտել, ավելացնել, փոփոխել և ջնջել սարքի պահոցի «բանալի-արժեք» զույգերը։"
2710
+ },
2546
2711
  "panels/application/ApplicationPanelSidebar.ts | manifest": {
2547
2712
  "message": "Մանիֆեստ"
2548
2713
  },
2714
+ "panels/application/ApplicationPanelSidebar.ts | manifestDescription": {
2715
+ "message": "Մանիֆեստը որոշում է, թե ինչպես ձեր հավելվածը ցուցադրվի հեռախոսի հիմնական էկրանին, և թե ինչ տեսք ունենա հավելվածը գործարկման ժամանակ։"
2716
+ },
2717
+ "panels/application/ApplicationPanelSidebar.ts | noCookies": {
2718
+ "message": "Քուքիները սահմանված չեն"
2719
+ },
2720
+ "panels/application/ApplicationPanelSidebar.ts | noExtensionStorage": {
2721
+ "message": "Ընդլայնման պահոց չի գտնվել"
2722
+ },
2723
+ "panels/application/ApplicationPanelSidebar.ts | noIndexeddb": {
2724
+ "message": "indexedDB չի հայտնաբերվել"
2725
+ },
2726
+ "panels/application/ApplicationPanelSidebar.ts | noLocalStorage": {
2727
+ "message": "Սարքի պահոց չի հայտնաբերվել"
2728
+ },
2549
2729
  "panels/application/ApplicationPanelSidebar.ts | noManifestDetected": {
2550
2730
  "message": "Մանիֆեստ չի գտնվել"
2551
2731
  },
2732
+ "panels/application/ApplicationPanelSidebar.ts | noSessionStorage": {
2733
+ "message": "Աշխատաշրջանի պահոց չի հայտնաբերվել"
2734
+ },
2552
2735
  "panels/application/ApplicationPanelSidebar.ts | onInvokeAlert": {
2553
2736
  "message": "Անցում է կատարվել {PH1} ենթաբաժին"
2554
2737
  },
@@ -2558,12 +2741,21 @@
2558
2741
  "panels/application/ApplicationPanelSidebar.ts | openedWindows": {
2559
2742
  "message": "Բացված պատուհաններ"
2560
2743
  },
2744
+ "panels/application/ApplicationPanelSidebar.ts | openedWindowsDescription": {
2745
+ "message": "Այս էջում կարող եք դիտել window.open()-ի միջոցով բացված պատուհանները։"
2746
+ },
2561
2747
  "panels/application/ApplicationPanelSidebar.ts | refreshIndexeddb": {
2562
2748
  "message": "Թարմացնել IndexedDB պարամետրը"
2563
2749
  },
2750
+ "panels/application/ApplicationPanelSidebar.ts | resourceDescription": {
2751
+ "message": "Այս էջում չեք կարող դիտել շրջանակի ռեսուրսները։"
2752
+ },
2564
2753
  "panels/application/ApplicationPanelSidebar.ts | sessionStorage": {
2565
2754
  "message": "Աշխատաշրջանի հիշողություն"
2566
2755
  },
2756
+ "panels/application/ApplicationPanelSidebar.ts | sessionStorageDescription": {
2757
+ "message": "Այս էջում կարող եք դիտել, ավելացնել, փոփոխել և ջնջել աշխատաշրջանի պահոցի «բանալի-արժեք» զույգերը։"
2758
+ },
2567
2759
  "panels/application/ApplicationPanelSidebar.ts | storage": {
2568
2760
  "message": "Հիշողություն"
2569
2761
  },
@@ -2588,6 +2780,9 @@
2588
2780
  "panels/application/ApplicationPanelSidebar.ts | worker": {
2589
2781
  "message": "մշակող"
2590
2782
  },
2783
+ "panels/application/ApplicationPanelSidebar.ts | workerDescription": {
2784
+ "message": "Այս էջում կարող եք դիտել Dedicated Worker օբյեկտները, որոնք ստեղծված են գլխավոր տարրի շրջանակի կողմից։"
2785
+ },
2591
2786
  "panels/application/BackForwardCacheTreeElement.ts | backForwardCache": {
2592
2787
  "message": "Ամբողջ էջի քեշավորում"
2593
2788
  },
@@ -2681,6 +2876,9 @@
2681
2876
  "panels/application/CookieItemsView.ts | cookies": {
2682
2877
  "message": "Քուքիներ"
2683
2878
  },
2879
+ "panels/application/CookieItemsView.ts | noCookieSelected": {
2880
+ "message": "Քուքիներ ընտրված չեն"
2881
+ },
2684
2882
  "panels/application/CookieItemsView.ts | numberOfCookiesShownInTableS": {
2685
2883
  "message": "Աղյուսակում ցուցադրվող քուքիների թիվը՝ {PH1}"
2686
2884
  },
@@ -2696,9 +2894,6 @@
2696
2894
  "panels/application/CookieItemsView.ts | showUrlDecoded": {
2697
2895
  "message": "Ցույց տալ ապակոդավորված URL-ը"
2698
2896
  },
2699
- "panels/application/DOMStorageItemsView.ts | domStorage": {
2700
- "message": "DOM-ի հիշողություն"
2701
- },
2702
2897
  "panels/application/DOMStorageItemsView.ts | domStorageItemDeleted": {
2703
2898
  "message": "Հիշողության տարրը հեռացվեց։"
2704
2899
  },
@@ -2708,30 +2903,12 @@
2708
2903
  "panels/application/DOMStorageItemsView.ts | domStorageItemsCleared": {
2709
2904
  "message": "«DOM-ի հիշողության տարրեր» աղյուսակի տվյալները ջնջվել են"
2710
2905
  },
2711
- "panels/application/DOMStorageItemsView.ts | key": {
2712
- "message": "Բանալի"
2713
- },
2714
- "panels/application/DOMStorageItemsView.ts | value": {
2715
- "message": "Արժեքը"
2716
- },
2717
- "panels/application/ExtensionStorageItemsView.ts | extensionStorage": {
2718
- "message": "Ընդլայնման պահոց"
2719
- },
2720
- "panels/application/ExtensionStorageItemsView.ts | extensionStorageItemDeleted": {
2721
- "message": "Պահոցի տարրը ջնջվեց։"
2722
- },
2723
2906
  "panels/application/ExtensionStorageItemsView.ts | extensionStorageItems": {
2724
2907
  "message": "Ընդլայնման պահոցի տարրեր"
2725
2908
  },
2726
2909
  "panels/application/ExtensionStorageItemsView.ts | extensionStorageItemsCleared": {
2727
2910
  "message": "Ընդլայնման պահոցի տարրերը մաքրվեցին"
2728
2911
  },
2729
- "panels/application/ExtensionStorageItemsView.ts | key": {
2730
- "message": "Բանալի"
2731
- },
2732
- "panels/application/ExtensionStorageItemsView.ts | value": {
2733
- "message": "Արժեքը"
2734
- },
2735
2912
  "panels/application/IndexedDBViews.ts | clearObjectStore": {
2736
2913
  "message": "Մաքրել օբյեկտների պահոցը"
2737
2914
  },
@@ -2882,9 +3059,15 @@
2882
3059
  "panels/application/ServiceWorkerCacheTreeElement.ts | cacheStorage": {
2883
3060
  "message": "Քեշի պահոց"
2884
3061
  },
3062
+ "panels/application/ServiceWorkerCacheTreeElement.ts | cacheStorageDescription": {
3063
+ "message": "Այս էջում կարող եք դիտել և ջնջել քեշի տվյալները։"
3064
+ },
2885
3065
  "panels/application/ServiceWorkerCacheTreeElement.ts | delete": {
2886
3066
  "message": "Ջնջել"
2887
3067
  },
3068
+ "panels/application/ServiceWorkerCacheTreeElement.ts | noCacheStorage": {
3069
+ "message": "Քեշի պահոց չի հայտնաբերվել"
3070
+ },
2888
3071
  "panels/application/ServiceWorkerCacheTreeElement.ts | refreshCaches": {
2889
3072
  "message": "Թարմացնել քեշերը"
2890
3073
  },
@@ -2906,6 +3089,9 @@
2906
3089
  "panels/application/ServiceWorkerCacheViews.ts | name": {
2907
3090
  "message": "Անուն"
2908
3091
  },
3092
+ "panels/application/ServiceWorkerCacheViews.ts | noCacheEntrySelected": {
3093
+ "message": "Քեշի պարամետրը ընտրված չէ"
3094
+ },
2909
3095
  "panels/application/ServiceWorkerCacheViews.ts | preview": {
2910
3096
  "message": "Նախադիտել"
2911
3097
  },
@@ -3086,9 +3272,15 @@
3086
3272
  "panels/application/SharedStorageListTreeElement.ts | sharedStorage": {
3087
3273
  "message": "Shared Storage"
3088
3274
  },
3275
+ "panels/application/StorageBucketsTreeElement.ts | noStorageBuckets": {
3276
+ "message": "Պահոցի սեգմենտներ չեն հայտնաբերվել"
3277
+ },
3089
3278
  "panels/application/StorageBucketsTreeElement.ts | storageBuckets": {
3090
3279
  "message": "Հիշողության սեգմենտներ"
3091
3280
  },
3281
+ "panels/application/StorageBucketsTreeElement.ts | storageBucketsDescription": {
3282
+ "message": "Այս սարքում կարող եք դիտել և ջնջել պահոցի սեգմենտները և դրանց հետ կապված API-ները։"
3283
+ },
3092
3284
  "panels/application/StorageItemsView.ts | clearAll": {
3093
3285
  "message": "Ջնջել բոլորը"
3094
3286
  },
@@ -3953,9 +4145,6 @@
3953
4145
  "panels/application/components/SharedStorageAccessGrid.ts | eventType": {
3954
4146
  "message": "Թույլտվության տեսակը"
3955
4147
  },
3956
- "panels/application/components/SharedStorageAccessGrid.ts | mainFrameId": {
3957
- "message": "Հիմնական շրջանակի ID"
3958
- },
3959
4148
  "panels/application/components/SharedStorageAccessGrid.ts | noEvents": {
3960
4149
  "message": "Ընդհանուր պահոցի իրադարձություններ չեն գրանցվել։"
3961
4150
  },
@@ -4148,6 +4337,9 @@
4148
4337
  "panels/application/preloading/components/MismatchedPreloadingGrid.ts | url": {
4149
4338
  "message": "URL"
4150
4339
  },
4340
+ "panels/application/preloading/components/PreloadingDetailsReportView.ts | automaticallyFellBackToPrefetch": {
4341
+ "message": "(ավտոմատ անցում նախաբեռնմանը)"
4342
+ },
4151
4343
  "panels/application/preloading/components/PreloadingDetailsReportView.ts | buttonClickToInspect": {
4152
4344
  "message": "Սեղմեք՝ նախաարտապատկերված էջը ստուգելու համար"
4153
4345
  },
@@ -4160,6 +4352,9 @@
4160
4352
  "panels/application/preloading/components/PreloadingDetailsReportView.ts | detailedStatusFailure": {
4161
4353
  "message": "Չհաջողվեց կատարել սպեկուլյատիվ բեռնումը։"
4162
4354
  },
4355
+ "panels/application/preloading/components/PreloadingDetailsReportView.ts | detailedStatusFallbackToPrefetch": {
4356
+ "message": "Սպեկուլյատիվ բեռնումը ձախողվեց, սակայն նախաբեռնումը հաջողվեց։"
4357
+ },
4163
4358
  "panels/application/preloading/components/PreloadingDetailsReportView.ts | detailedStatusNotTriggered": {
4164
4359
  "message": "Սպեկուլյատիվ բեռնման փորձը դեռ չի գործարկվել։"
4165
4360
  },
@@ -4244,6 +4439,9 @@
4244
4439
  "panels/application/preloading/components/PreloadingGrid.ts | action": {
4245
4440
  "message": "Գործողություն"
4246
4441
  },
4442
+ "panels/application/preloading/components/PreloadingGrid.ts | prefetchFallbackReady": {
4443
+ "message": "Նախաբեռնումը կատարված է"
4444
+ },
4247
4445
  "panels/application/preloading/components/PreloadingGrid.ts | ruleSet": {
4248
4446
  "message": "Կանոնների կազմ"
4249
4447
  },
@@ -4745,11 +4943,14 @@
4745
4943
  "panels/browser_debugger/DOMBreakpointsSidebarPane.ts | checked": {
4746
4944
  "message": "նշված է"
4747
4945
  },
4946
+ "panels/browser_debugger/DOMBreakpointsSidebarPane.ts | domBreakpointsDescription": {
4947
+ "message": "DOM-ի կանգի կետերը դադարում են կոդի այն տողի վրա, որը փոխում է DOM-ի հանգույցը կամ դրա ենթատարրերը։"
4948
+ },
4748
4949
  "panels/browser_debugger/DOMBreakpointsSidebarPane.ts | domBreakpointsList": {
4749
4950
  "message": "DOM-ի կանգի կետերի ցանկ"
4750
4951
  },
4751
4952
  "panels/browser_debugger/DOMBreakpointsSidebarPane.ts | noBreakpoints": {
4752
- "message": "Կանգի կետեր չկան"
4953
+ "message": "No DOM breakpoints set"
4753
4954
  },
4754
4955
  "panels/browser_debugger/DOMBreakpointsSidebarPane.ts | nodeRemoved": {
4755
4956
  "message": "Հանգույցը հեռացվել է"
@@ -4865,14 +5066,20 @@
4865
5066
  "panels/changes/ChangesSidebar.ts | sFromSourceMap": {
4866
5067
  "message": "{PH1} (աղբյուրի քարտեզից)"
4867
5068
  },
4868
- "panels/changes/ChangesView.ts | binaryData": {
4869
- "message": "Բինարային տվյալներ"
5069
+ "panels/changes/ChangesView.ts | binaryDataDescription": {
5070
+ "message": "The changes tab doesn't show binary data changes"
5071
+ },
5072
+ "panels/changes/ChangesView.ts | changesViewDescription": {
5073
+ "message": "On this page you can track code changes made within DevTools."
4870
5074
  },
4871
5075
  "panels/changes/ChangesView.ts | copy": {
4872
5076
  "message": "Պատճենել"
4873
5077
  },
4874
5078
  "panels/changes/ChangesView.ts | noChanges": {
4875
- "message": "Փոփոխություններ չկան"
5079
+ "message": "No changes yet"
5080
+ },
5081
+ "panels/changes/ChangesView.ts | noTextualDiff": {
5082
+ "message": "No textual diff available"
4876
5083
  },
4877
5084
  "panels/changes/ChangesView.ts | sDeletions": {
4878
5085
  "message": "{n,plural, =1{# ջնջում (-)}one{# ջնջում (-)}other{# ջնջում (-)}}"
@@ -4973,6 +5180,9 @@
4973
5180
  "panels/console/ConsoleView.ts | consoleSidebarShown": {
4974
5181
  "message": "Վահանակի կողագոտին ցուցադրված է"
4975
5182
  },
5183
+ "panels/console/ConsoleView.ts | copyConsole": {
5184
+ "message": "Պատճենել վահանակի մատյանը"
5185
+ },
4976
5186
  "panels/console/ConsoleView.ts | copyVisibleStyledSelection": {
4977
5187
  "message": "Պատճենել տեսանելի ոճավորված հավաքածուն"
4978
5188
  },
@@ -5087,6 +5297,9 @@
5087
5297
  "panels/console/ConsoleViewMessage.ts | Mxx": {
5088
5298
  "message": " M<XX>"
5089
5299
  },
5300
+ "panels/console/ConsoleViewMessage.ts | SeeIssueInCookieReport": {
5301
+ "message": "Click to open privacy and security panel and show third-party cookie report"
5302
+ },
5090
5303
  "panels/console/ConsoleViewMessage.ts | assertionFailed": {
5091
5304
  "message": "Չհաջողվեց հաստատել՝ "
5092
5305
  },
@@ -5621,6 +5834,12 @@
5621
5834
  "panels/developer_resources/DeveloperResourcesView.ts | loadHttpsDeveloperResources": {
5622
5835
  "message": "Բեռնել մշակողի HTTP(S) ռեսուրսները ձեր կողմից ստուգվող կայքի, այլ ոչ թե ծրագրավորողի գործիքների միջոցով"
5623
5836
  },
5837
+ "panels/developer_resources/DeveloperResourcesView.ts | noResourceMatches": {
5838
+ "message": "Համընկնող աղբյուրներ չկան"
5839
+ },
5840
+ "panels/developer_resources/DeveloperResourcesView.ts | numberOfResourceMatch": {
5841
+ "message": "{n,plural, =1{Համընկնում է # աղբյուր}one{Համընկնում է # աղբյուր}other{Համընկնում է # աղբյուր}}"
5842
+ },
5624
5843
  "panels/developer_resources/DeveloperResourcesView.ts | resources": {
5625
5844
  "message": "{n,plural, =1{# ռեսուրս}one{# ռեսուրս}other{# ռեսուրս}}"
5626
5845
  },
@@ -5714,6 +5933,9 @@
5714
5933
  "panels/elements/ElementStatePaneWidget.ts | toggleElementState": {
5715
5934
  "message": "Ցուցադրել/թաքցնել տարրի վիճակը"
5716
5935
  },
5936
+ "panels/elements/ElementsPanel.ts | adornerSettings": {
5937
+ "message": "Նշանակի կարգավորումներ"
5938
+ },
5717
5939
  "panels/elements/ElementsPanel.ts | computed": {
5718
5940
  "message": "Հաշվարկված է"
5719
5941
  },
@@ -5876,9 +6098,6 @@
5876
6098
  "panels/elements/ElementsTreeElement.ts | valueIsTooLargeToEdit": {
5877
6099
  "message": "<արժեքը չափազանց մեծ է փոփոխելու համար>"
5878
6100
  },
5879
- "panels/elements/ElementsTreeOutline.ts | adornerSettings": {
5880
- "message": "Նշանակի կարգավորումներ…"
5881
- },
5882
6101
  "panels/elements/ElementsTreeOutline.ts | pageDom": {
5883
6102
  "message": "Էջ DOM"
5884
6103
  },
@@ -6110,12 +6329,6 @@
6110
6329
  "panels/elements/components/AccessibilityTreeNode.ts | ignored": {
6111
6330
  "message": "Անտեսված"
6112
6331
  },
6113
- "panels/elements/components/AdornerSettingsPane.ts | closeButton": {
6114
- "message": "Փակել"
6115
- },
6116
- "panels/elements/components/AdornerSettingsPane.ts | settingsTitle": {
6117
- "message": "Ցուցադրել նշանակները"
6118
- },
6119
6332
  "panels/elements/components/AnchorFunctionLinkSwatch.ts | jumpToAnchorNode": {
6120
6333
  "message": "Անցնել խարիսխի հանգույց"
6121
6334
  },
@@ -6503,9 +6716,15 @@
6503
6716
  "panels/explain/components/ConsoleInsight.ts | opensInNewTab": {
6504
6717
  "message": "(բացվում է նոր ներդիրում)"
6505
6718
  },
6719
+ "panels/explain/components/ConsoleInsight.ts | references": {
6720
+ "message": "Աղբյուրներ և առնչվող բովանդակություն"
6721
+ },
6506
6722
  "panels/explain/components/ConsoleInsight.ts | relatedCode": {
6507
6723
  "message": "Կապված կոդ"
6508
6724
  },
6725
+ "panels/explain/components/ConsoleInsight.ts | relatedContent": {
6726
+ "message": "Նման բովանդակություն"
6727
+ },
6509
6728
  "panels/explain/components/ConsoleInsight.ts | reloadRecommendation": {
6510
6729
  "message": "Ցանցային հարցման տվյալները ստանալու համար վերաբեռնեք էջը։"
6511
6730
  },
@@ -6527,6 +6746,9 @@
6527
6746
  "panels/explain/components/ConsoleInsight.ts | stackTrace": {
6528
6747
  "message": "Սթեքի ժամանակագրություն"
6529
6748
  },
6749
+ "panels/explain/components/ConsoleInsight.ts | timedOut": {
6750
+ "message": "Generating a response took too long. Please try again."
6751
+ },
6530
6752
  "panels/explain/components/ConsoleInsight.ts | turnOnInSettings": {
6531
6753
  "message": "Միացրեք {PH1}, որպեսզի ԱԲ օգնություն ստանաք վահանակի զգուշացումների և սխալների վերլուծության և լուծման ժամանակ։"
6532
6754
  },
@@ -6543,95 +6765,14 @@
6543
6765
  "message": "Հասկացեք այս զգուշացումը"
6544
6766
  },
6545
6767
  "panels/explain/explain-meta.ts | geoRestricted": {
6546
- "message": "Այս գործառույթն անհասանելի է ձեր տարածաշրջանում"
6768
+ "message": "Այս գործառույթն անհասանելի է ձեր տարածաշրջանում։"
6547
6769
  },
6548
6770
  "panels/explain/explain-meta.ts | policyRestricted": {
6549
- "message": "Այս կարգավորումը կառավարվում է ձեր ադմինիստրատորի կողմից"
6771
+ "message": "Այս կարգավորումը կառավարվում է ձեր ադմինիստրատորի կողմից։"
6550
6772
  },
6551
6773
  "panels/explain/explain-meta.ts | wrongLocale": {
6552
6774
  "message": "Այս գործառույթից օգտվելու համար ծրագրավորողի գործիքների կարգավորումներում ընտրեք անգլերենը"
6553
6775
  },
6554
- "panels/freestyler/FreestylerPanel.ts | chatDeleted": {
6555
- "message": "Զրույցը ջնջվեց"
6556
- },
6557
- "panels/freestyler/FreestylerPanel.ts | clearChatHistory": {
6558
- "message": "Մաքրել զրույցի պատմությունը"
6559
- },
6560
- "panels/freestyler/FreestylerPanel.ts | deleteChat": {
6561
- "message": "Ջնջել զրույցը"
6562
- },
6563
- "panels/freestyler/FreestylerPanel.ts | help": {
6564
- "message": "Օգնություն"
6565
- },
6566
- "panels/freestyler/FreestylerPanel.ts | history": {
6567
- "message": "Պատմություն"
6568
- },
6569
- "panels/freestyler/FreestylerPanel.ts | newChat": {
6570
- "message": "Նոր զրույց"
6571
- },
6572
- "panels/freestyler/FreestylerPanel.ts | newChatCreated": {
6573
- "message": "Ստեղծվեց նոր զրույց"
6574
- },
6575
- "panels/freestyler/FreestylerPanel.ts | noPastConversations": {
6576
- "message": "Անցած զրույցներ չկան"
6577
- },
6578
- "panels/freestyler/FreestylerPanel.ts | sendFeedback": {
6579
- "message": "Կարծիք հայտնել"
6580
- },
6581
- "panels/freestyler/FreestylerPanel.ts | settings": {
6582
- "message": "Կարգավորումներ"
6583
- },
6584
- "panels/freestyler/components/FreestylerChatUi.ts | followTheSteps": {
6585
- "message": "Կատարեք վերևում նշված քայլերը՝ հարց տալու համար"
6586
- },
6587
- "panels/freestyler/components/FreestylerChatUi.ts | inputDisclaimerForEmptyState": {
6588
- "message": "Սա փորձնական ԱԲ գործառույթ է և երբեմն կարող է սխալներով աշխատել։"
6589
- },
6590
- "panels/freestyler/components/FreestylerChatUi.ts | learnAbout": {
6591
- "message": "Իմանալ ավելին ԱԲ-ի մասին ծրագրավորողի գործիքներում"
6592
- },
6593
- "panels/freestyler/components/FreestylerChatUi.ts | notLoggedIn": {
6594
- "message": "Այս գործառույթը հասանելի է միայն այն դեպքում, երբ մուտք եք գործել Chrome ձեր Google հաշվով։"
6595
- },
6596
- "panels/freestyler/components/FreestylerChatUi.ts | offline": {
6597
- "message": "Ստուգեք ձեր ինտերնետ կապը և նորից փորձեք"
6598
- },
6599
- "panels/freestyler/components/FreestylerChatUi.ts | settingsLink": {
6600
- "message": "ԱԲ օգնությունը Կարգավորումներում"
6601
- },
6602
- "panels/freestyler/components/FreestylerChatUi.ts | turnOnForStyles": {
6603
- "message": "Միացրեք {PH1}ը, որպեսզի օգնություն ստանաք CSS-ի ոճերի մասին պատկերացում կազմելու հետ կապված"
6604
- },
6605
- "panels/freestyler/components/FreestylerChatUi.ts | turnOnForStylesAndRequests": {
6606
- "message": "Միացրեք {PH1}՝ ոճերի և ցանցի հարցումների հետ կապված օգնություն ստանալու համար"
6607
- },
6608
- "panels/freestyler/components/FreestylerChatUi.ts | turnOnForStylesRequestsAndFiles": {
6609
- "message": "Միացրեք {PH1}՝ ոճերի, ցանցի հարցումների և ֆայլերի հետ կապված օգնություն ստանալու համար"
6610
- },
6611
- "panels/freestyler/components/FreestylerChatUi.ts | turnOnForStylesRequestsPerformanceAndFiles": {
6612
- "message": "Միացրեք {PH1}՝ ոճերի, ցանցի հարցումների, արտադրողականության և ֆայլերի հետ կապված օգնություն ստանալու համար"
6613
- },
6614
- "panels/freestyler/freestyler-meta.ts | aiAssistance": {
6615
- "message": "ԱԲ օգնություն"
6616
- },
6617
- "panels/freestyler/freestyler-meta.ts | askAi": {
6618
- "message": "Հարցնել ԱԲ-ին"
6619
- },
6620
- "panels/freestyler/freestyler-meta.ts | enableAiAssistance": {
6621
- "message": "Միացնել ԱԲ օգնությունը"
6622
- },
6623
- "panels/freestyler/freestyler-meta.ts | geoRestricted": {
6624
- "message": "Այս գործառույթն անհասանելի է ձեր տարածաշրջանում"
6625
- },
6626
- "panels/freestyler/freestyler-meta.ts | policyRestricted": {
6627
- "message": "Այս կարգավորումը կառավարվում է ձեր ադմինիստրատորի կողմից"
6628
- },
6629
- "panels/freestyler/freestyler-meta.ts | showAiAssistance": {
6630
- "message": "Ցույց տալ ԱԲ օգնությունը"
6631
- },
6632
- "panels/freestyler/freestyler-meta.ts | wrongLocale": {
6633
- "message": "Այս գործառույթից օգտվելու համար ծրագրավորողի գործիքների կարգավորումներում ընտրեք անգլերենը"
6634
- },
6635
6776
  "panels/issues/AffectedBlockedByResponseView.ts | blockedResource": {
6636
6777
  "message": "Արգելափակված ռեսուրս"
6637
6778
  },
@@ -7052,6 +7193,9 @@
7052
7193
  "panels/layer_viewer/LayerDetailsView.ts | nearestLayerShiftingStickyBox": {
7053
7194
  "message": "Փոփոխվող շերտով մոտակա կպչուն դաշտը"
7054
7195
  },
7196
+ "panels/layer_viewer/LayerDetailsView.ts | noLayerSelected": {
7197
+ "message": "Շերտ չի ընտրվել"
7198
+ },
7055
7199
  "panels/layer_viewer/LayerDetailsView.ts | nonFastScrollable": {
7056
7200
  "message": "Ոչ արագ ոլորվող"
7057
7201
  },
@@ -7727,6 +7871,9 @@
7727
7871
  "panels/media/media-meta.ts | video": {
7728
7872
  "message": "տեսանյութ"
7729
7873
  },
7874
+ "panels/mobile_throttling/CalibrationController.ts | runningCalibration": {
7875
+ "message": "Պրոցեսորի չափաբերումը գործարկված է, դուրս մի եկեք ներդիրից և մի փակեք ծրագրավորողի գործիքները։"
7876
+ },
7730
7877
  "panels/mobile_throttling/MobileThrottlingSelector.ts | advanced": {
7731
7878
  "message": "Ընդլայնված"
7732
7879
  },
@@ -7763,15 +7910,15 @@
7763
7910
  "panels/mobile_throttling/ThrottlingManager.ts | addS": {
7764
7911
  "message": "Ավելացնել {PH1}"
7765
7912
  },
7913
+ "panels/mobile_throttling/ThrottlingManager.ts | calibrate": {
7914
+ "message": "Calibrate…"
7915
+ },
7766
7916
  "panels/mobile_throttling/ThrottlingManager.ts | cpuThrottling": {
7767
7917
  "message": "CPU-ի սահմանափակում"
7768
7918
  },
7769
7919
  "panels/mobile_throttling/ThrottlingManager.ts | cpuThrottlingIsEnabled": {
7770
7920
  "message": "CPU-ի սահմանափակումը միացված է"
7771
7921
  },
7772
- "panels/mobile_throttling/ThrottlingManager.ts | dSlowdown": {
7773
- "message": "{PH1}× դանդաղեցում"
7774
- },
7775
7922
  "panels/mobile_throttling/ThrottlingManager.ts | excessConcurrency": {
7776
7923
  "message": "Կանխադրված արժեքի գերազանցումը կարող է վատթարացնել համակարգի աշխատանքը։"
7777
7924
  },
@@ -7784,12 +7931,15 @@
7784
7931
  "panels/mobile_throttling/ThrottlingManager.ts | hardwareConcurrencySettingLabel": {
7785
7932
  "message": "Փոխարինեք navigator.hardwareConcurrency-ից ստացված արժեքը"
7786
7933
  },
7787
- "panels/mobile_throttling/ThrottlingManager.ts | noThrottling": {
7788
- "message": "Սահմանափակում չկա"
7789
- },
7790
7934
  "panels/mobile_throttling/ThrottlingManager.ts | offline": {
7791
7935
  "message": "Կապ չկա"
7792
7936
  },
7937
+ "panels/mobile_throttling/ThrottlingManager.ts | recalibrate": {
7938
+ "message": "Recalibrate…"
7939
+ },
7940
+ "panels/mobile_throttling/ThrottlingManager.ts | recommendedThrottling": {
7941
+ "message": "{PH1} – Խորհուրդ է տրվում"
7942
+ },
7793
7943
  "panels/mobile_throttling/ThrottlingManager.ts | resetConcurrency": {
7794
7944
  "message": "Վերականգնել կանխադրված արժեքը"
7795
7945
  },
@@ -7808,8 +7958,11 @@
7808
7958
  "panels/mobile_throttling/ThrottlingPresets.ts | fastGXCpuSlowdown": {
7809
7959
  "message": "Արագ 3G ցանց և CPU-ի քառապատիկ դանդաղեցում"
7810
7960
  },
7811
- "panels/mobile_throttling/ThrottlingPresets.ts | lowendMobile": {
7812
- "message": "Թույլ գործառույթներով բջջային հեռախոս"
7961
+ "panels/mobile_throttling/ThrottlingPresets.ts | fastGXCpuSlowdownCalibrated": {
7962
+ "message": "Արագ 3G ցանց և պրոցեսորի {PH1}x դանդաղեցում"
7963
+ },
7964
+ "panels/mobile_throttling/ThrottlingPresets.ts | lowTierMobile": {
7965
+ "message": "Ստորին սեգմենտի բջջային սարք"
7813
7966
  },
7814
7967
  "panels/mobile_throttling/ThrottlingPresets.ts | midtierMobile": {
7815
7968
  "message": "Միջին սեգմենտի շարժական սարք"
@@ -7818,14 +7971,50 @@
7818
7971
  "message": "Ինտերնետ կապ չկա"
7819
7972
  },
7820
7973
  "panels/mobile_throttling/ThrottlingPresets.ts | noThrottling": {
7821
- "message": "Սահմանափակում չկա"
7974
+ "message": "CPU-ի արտադրողականությունը և ցանցի թողունակությունը սահմանափակված չեն"
7822
7975
  },
7823
7976
  "panels/mobile_throttling/ThrottlingPresets.ts | slowGXCpuSlowdown": {
7824
7977
  "message": "Դանդաղ 3G ցանց և CPU-ի վեցապատիկ դանդաղեցում"
7825
7978
  },
7979
+ "panels/mobile_throttling/ThrottlingPresets.ts | slowGXCpuSlowdownCalibrated": {
7980
+ "message": "Դանդաղ 3G ցանց և պրոցեսորի {PH1}x դանդաղեցում"
7981
+ },
7826
7982
  "panels/mobile_throttling/ThrottlingSettingsTab.ts | addCustomProfile": {
7827
7983
  "message": "Ավելացնել պրոֆիլ"
7828
7984
  },
7985
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrate": {
7986
+ "message": "Չափաբերել"
7987
+ },
7988
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrationCTA": {
7989
+ "message": "Պրոցեսորի սահմանափակման կարգավորումների հավաքածուն օգտագործելու համար գործարկեք չափաբերման գործընթաց՝ որոշելու սահմանափակման հարմար մակարդակը ձեր սարքի համար։"
7990
+ },
7991
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrationConfirmationPrompt": {
7992
+ "message": "Չափաբերումը կտևի մոտ 5 վայրկյան, և դուք ժամանակավորապես դուրս կգաք ընթացիկ էջից։ Շարունակե՞լ։"
7993
+ },
7994
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrationWarningHighCPU": {
7995
+ "message": "Պրոցեսորը գերբեռնված է"
7996
+ },
7997
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrationWarningLowBattery": {
7998
+ "message": "Սարքի մարտկոցի լիցքը ցածր է (<20%), պրոցեսորի սահմանափակումը կարող է ազդել արդյունքների վրա"
7999
+ },
8000
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | calibrationWarningRunningOnBattery": {
8001
+ "message": "Սարքը մարտկոցից է ստուցվում։ Միացրեք լիցքավորիչը՝ ավելի լավ արդյունքների համար"
8002
+ },
8003
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | cancel": {
8004
+ "message": "Չեղարկել"
8005
+ },
8006
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | continue": {
8007
+ "message": "Շարունակել"
8008
+ },
8009
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | cpuCalibrationDescription": {
8010
+ "message": "Կարգավորումների այս հավաքածուն սահմանափակում է ձեր պրոցեսորը՝ մոտավորապես նմանակելու ստորին կամ միջին սեգմենտների բջջային սարքերը։"
8011
+ },
8012
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | cpuThrottlingPresets": {
8013
+ "message": "Պրոցեսորի աշխատանքի սահմանափակման կարգավորումների հավաքածու"
8014
+ },
8015
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | dSlowdown": {
8016
+ "message": "{PH1}× դանդաղեցում"
8017
+ },
7829
8018
  "panels/mobile_throttling/ThrottlingSettingsTab.ts | dms": {
7830
8019
  "message": "{PH1} ms"
7831
8020
  },
@@ -7844,6 +8033,9 @@
7844
8033
  "panels/mobile_throttling/ThrottlingSettingsTab.ts | latencyMustBeAnIntegerBetweenSms": {
7845
8034
  "message": "Հապաղման արժեքը պետք է լինի ամբողջ թիվ {PH1} ms-ից {PH2} ms ներառյալ"
7846
8035
  },
8036
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | needsCalibration": {
8037
+ "message": "Պահանջվում է չափաբերում"
8038
+ },
7847
8039
  "panels/mobile_throttling/ThrottlingSettingsTab.ts | networkThrottlingProfiles": {
7848
8040
  "message": "Ցանցի սահմանափակման պրոֆիլներ"
7849
8041
  },
@@ -7883,6 +8075,9 @@
7883
8075
  "panels/mobile_throttling/ThrottlingSettingsTab.ts | profileNameCharactersLengthMust": {
7884
8076
  "message": "Պրոֆիլի անվանման մեջ նիշերի երկարությունը պետք է լինի 1-ից {PH1} (ներառյալ)"
7885
8077
  },
8078
+ "panels/mobile_throttling/ThrottlingSettingsTab.ts | recalibrate": {
8079
+ "message": "Վերաչափաբերում"
8080
+ },
7886
8081
  "panels/mobile_throttling/ThrottlingSettingsTab.ts | sMustBeANumberBetweenSkbsToSkbs": {
7887
8082
  "message": "{PH1} դաշտը պետք է լինի թիվ {PH2}kbit/s-ից {PH3}kbit/s ներառյալ"
7888
8083
  },
@@ -8588,6 +8783,9 @@
8588
8783
  "panels/network/NetworkPanel.ts | doNotClearLogOnPageReload": {
8589
8784
  "message": "Չմաքրել մատյանը՝ էջը բեռնելիս և նավարկելիս"
8590
8785
  },
8786
+ "panels/network/NetworkPanel.ts | exportHar": {
8787
+ "message": "Արտահանել HAR-ը (զգայուն տվյալներով կամ առանց դրանց)"
8788
+ },
8591
8789
  "panels/network/NetworkPanel.ts | exportHarSanitized": {
8592
8790
  "message": "Արտահանել HAR (մաքրված է)..."
8593
8791
  },
@@ -8696,14 +8894,17 @@
8696
8894
  "panels/network/RequestCookiesView.ts | thisRequestHasNoCookies": {
8697
8895
  "message": "Այս հարցումը քուքիներ չունի։"
8698
8896
  },
8897
+ "panels/network/RequestInitiatorView.ts | noInitiator": {
8898
+ "message": "No initiator data"
8899
+ },
8699
8900
  "panels/network/RequestInitiatorView.ts | requestCallStack": {
8700
8901
  "message": "Ուղարկել կանչերի ցուցակի հարցում"
8701
8902
  },
8702
8903
  "panels/network/RequestInitiatorView.ts | requestInitiatorChain": {
8703
8904
  "message": "Հարցման մեկնարկիչների շղթա"
8704
8905
  },
8705
- "panels/network/RequestInitiatorView.ts | thisRequestHasNoInitiatorData": {
8706
- "message": "Այս հարցումը չունի մեկնարկիչի մասին տվյալներ։"
8906
+ "panels/network/RequestPayloadView.ts | copyPayload": {
8907
+ "message": "Պատճենել"
8707
8908
  },
8708
8909
  "panels/network/RequestPayloadView.ts | copyValue": {
8709
8910
  "message": "Պատճենել արժեքը"
@@ -8759,8 +8960,11 @@
8759
8960
  "panels/network/RequestResponseView.ts | failedToLoadResponseData": {
8760
8961
  "message": "Չհաջողվեց բեռնել պատասխանի տվյալները"
8761
8962
  },
8963
+ "panels/network/RequestResponseView.ts | noPreview": {
8964
+ "message": "Nothing to preview"
8965
+ },
8762
8966
  "panels/network/RequestResponseView.ts | thisRequestHasNoResponseData": {
8763
- "message": "Այս հարցումը չունի պատասխանի մասին տվյալներ։"
8967
+ "message": "This request has no response data available"
8764
8968
  },
8765
8969
  "panels/network/RequestTimingView.ts | cacheStorageCacheNameS": {
8766
8970
  "message": "Քեշի պահոցի անվանումը՝ {PH1}"
@@ -8939,6 +9143,9 @@
8939
9143
  "panels/network/ResourceWebSocketFrameView.ts | na": {
8940
9144
  "message": "Կիրառելի չէ"
8941
9145
  },
9146
+ "panels/network/ResourceWebSocketFrameView.ts | noMessageSelected": {
9147
+ "message": "Հաղորդագրություն չի ընտրվել"
9148
+ },
8942
9149
  "panels/network/ResourceWebSocketFrameView.ts | pingMessage": {
8943
9150
  "message": "Ping հաղորդագրություն"
8944
9151
  },
@@ -9149,6 +9356,9 @@
9149
9356
  "panels/network/components/RequestTrustTokensView.ts | parameters": {
9150
9357
  "message": "Պարամետրեր"
9151
9358
  },
9359
+ "panels/network/components/RequestTrustTokensView.ts | perSiteLimit": {
9360
+ "message": "Մեկ կայքի համար թողարկողների թվի սահմանաչափը լրացել է։"
9361
+ },
9152
9362
  "panels/network/components/RequestTrustTokensView.ts | refreshPolicy": {
9153
9363
  "message": "Թարմացնել քաղաքականությունը"
9154
9364
  },
@@ -9402,10 +9612,10 @@
9402
9612
  "message": "Ընտրված չափը՝ {PH1}"
9403
9613
  },
9404
9614
  "panels/profiler/HeapProfileView.ts | selfSize": {
9405
- "message": "Սեփական չափս"
9615
+ "message": "Սեփական չափսը"
9406
9616
  },
9407
9617
  "panels/profiler/HeapProfileView.ts | selfSizeBytes": {
9408
- "message": "Սեփական չափը (բայթեր)"
9618
+ "message": "Սեփական չափսը"
9409
9619
  },
9410
9620
  "panels/profiler/HeapProfileView.ts | skb": {
9411
9621
  "message": "{PH1} կԲ"
@@ -9420,10 +9630,10 @@
9420
9630
  "message": "Ընդհատում…"
9421
9631
  },
9422
9632
  "panels/profiler/HeapProfileView.ts | totalSize": {
9423
- "message": "Ընդհանուր չափը"
9633
+ "message": "Ընդհանուր չափսը"
9424
9634
  },
9425
9635
  "panels/profiler/HeapProfileView.ts | totalSizeBytes": {
9426
- "message": "Ընդհանուր չափը (բայթեր)"
9636
+ "message": "Ընդհանուր չափսը"
9427
9637
  },
9428
9638
  "panels/profiler/HeapProfileView.ts | url": {
9429
9639
  "message": "URL"
@@ -9650,6 +9860,12 @@
9650
9860
  "panels/profiler/HeapSnapshotView.ts | objectsRetainedByDetachedDomNodes": {
9651
9861
  "message": "Օբյեկտներ, որոնք պահվել են առանձնացող DOM հանգույցների կողմից"
9652
9862
  },
9863
+ "panels/profiler/HeapSnapshotView.ts | otherJSObjects": {
9864
+ "message": "JS-ին վերաբերող այլ օբյեկտներ"
9865
+ },
9866
+ "panels/profiler/HeapSnapshotView.ts | otherNonJSObjects": {
9867
+ "message": "JS-ին չվերաբերող այլ օբյեկտներ (օր․՝ HTML կամ CSS)"
9868
+ },
9653
9869
  "panels/profiler/HeapSnapshotView.ts | percentagePlaceholder": {
9654
9870
  "message": "{PH1}%"
9655
9871
  },
@@ -9968,6 +10184,27 @@
9968
10184
  "panels/profiler/profiler-meta.ts | stopRecordingHeapAllocations": {
9969
10185
  "message": "Դադարեցնել դինամիկ հիշողության բաշխումների գրանցումը"
9970
10186
  },
10187
+ "panels/protocol_monitor/JSONEditor.ts | addCustomProperty": {
10188
+ "message": "Ավելացնել հատուկ հատկություն"
10189
+ },
10190
+ "panels/protocol_monitor/JSONEditor.ts | addParameter": {
10191
+ "message": "Ավելացնել պարամետր"
10192
+ },
10193
+ "panels/protocol_monitor/JSONEditor.ts | copyCommand": {
10194
+ "message": "Պատճենել հրամանը"
10195
+ },
10196
+ "panels/protocol_monitor/JSONEditor.ts | deleteParameter": {
10197
+ "message": "Ջնջել պարամետրը"
10198
+ },
10199
+ "panels/protocol_monitor/JSONEditor.ts | resetDefaultValue": {
10200
+ "message": "Վերականգնել կանխադրված արժեքը"
10201
+ },
10202
+ "panels/protocol_monitor/JSONEditor.ts | sendCommandCmdEnter": {
10203
+ "message": "Ուղարկել հրաման (⌘ + Enter)"
10204
+ },
10205
+ "panels/protocol_monitor/JSONEditor.ts | sendCommandCtrlEnter": {
10206
+ "message": "Ուղարկել հրաման – Ctrl + Enter"
10207
+ },
9971
10208
  "panels/protocol_monitor/ProtocolMonitor.ts | CDPCommandEditorHidden": {
9972
10209
  "message": "CDP հրամանների խմբագրիչը թաքցված է"
9973
10210
  },
@@ -9996,7 +10233,7 @@
9996
10233
  "message": "Մեթոդ"
9997
10234
  },
9998
10235
  "panels/protocol_monitor/ProtocolMonitor.ts | noMessageSelected": {
9999
- "message": "Հաղորդագրություն ընտրված չէ"
10236
+ "message": "Հաղորդագրություն չի ընտրվել"
10000
10237
  },
10001
10238
  "panels/protocol_monitor/ProtocolMonitor.ts | record": {
10002
10239
  "message": "Գրացնել տվյալներ"
@@ -10013,6 +10250,9 @@
10013
10250
  "panels/protocol_monitor/ProtocolMonitor.ts | save": {
10014
10251
  "message": "Պահել"
10015
10252
  },
10253
+ "panels/protocol_monitor/ProtocolMonitor.ts | selectAMessageToView": {
10254
+ "message": "Select a message to see its details"
10255
+ },
10016
10256
  "panels/protocol_monitor/ProtocolMonitor.ts | selectTarget": {
10017
10257
  "message": "Ընտրեք թիրախ"
10018
10258
  },
@@ -10037,27 +10277,6 @@
10037
10277
  "panels/protocol_monitor/ProtocolMonitor.ts | type": {
10038
10278
  "message": "Տեսակ"
10039
10279
  },
10040
- "panels/protocol_monitor/components/JSONEditor.ts | addCustomProperty": {
10041
- "message": "Ավելացնել հատուկ հատկություն"
10042
- },
10043
- "panels/protocol_monitor/components/JSONEditor.ts | addParameter": {
10044
- "message": "Ավելացնել պարամետր"
10045
- },
10046
- "panels/protocol_monitor/components/JSONEditor.ts | deleteParameter": {
10047
- "message": "Ջնջել պարամետրը"
10048
- },
10049
- "panels/protocol_monitor/components/JSONEditor.ts | resetDefaultValue": {
10050
- "message": "Վերականգնել կանխադրված արժեքը"
10051
- },
10052
- "panels/protocol_monitor/components/Toolbar.ts | copyCommand": {
10053
- "message": "Պատճենել հրամանը"
10054
- },
10055
- "panels/protocol_monitor/components/Toolbar.ts | sendCommandCmdEnter": {
10056
- "message": "Ուղարկել հրաման (⌘ + Enter)"
10057
- },
10058
- "panels/protocol_monitor/components/Toolbar.ts | sendCommandCtrlEnter": {
10059
- "message": "Ուղարկել հրաման – Ctrl + Enter"
10060
- },
10061
10280
  "panels/protocol_monitor/protocol_monitor-meta.ts | protocolMonitor": {
10062
10281
  "message": "Հաղորդակարգի էկրան"
10063
10282
  },
@@ -10071,7 +10290,7 @@
10071
10290
  "message": "Պատճենել ձայնագրությունը կամ ընտրված քայլը"
10072
10291
  },
10073
10292
  "panels/recorder/RecorderController.ts | createRecording": {
10074
- "message": "Ստեղծել նոր ձայնագրություն"
10293
+ "message": "Create recording"
10075
10294
  },
10076
10295
  "panels/recorder/RecorderController.ts | deleteRecording": {
10077
10296
  "message": "Ջնջել գրառումը"
@@ -10088,15 +10307,24 @@
10088
10307
  "panels/recorder/RecorderController.ts | getExtensions": {
10089
10308
  "message": "Տեղադրել ընդլայնումներ…"
10090
10309
  },
10310
+ "panels/recorder/RecorderController.ts | header": {
10311
+ "message": "Nothing recorded yet"
10312
+ },
10091
10313
  "panels/recorder/RecorderController.ts | importRecording": {
10092
10314
  "message": "Ներմուծել գրառում"
10093
10315
  },
10316
+ "panels/recorder/RecorderController.ts | learnMore": {
10317
+ "message": "Learn more"
10318
+ },
10094
10319
  "panels/recorder/RecorderController.ts | noRecordings": {
10095
10320
  "message": "Գրանցումներ չկան"
10096
10321
  },
10097
10322
  "panels/recorder/RecorderController.ts | numberOfRecordings": {
10098
10323
  "message": "գրանցում"
10099
10324
  },
10325
+ "panels/recorder/RecorderController.ts | recordingDescription": {
10326
+ "message": "Use recordings to create automated end-to-end tests or performance traces."
10327
+ },
10100
10328
  "panels/recorder/RecorderController.ts | replayRecording": {
10101
10329
  "message": "Նորից լսել ձայնագրությունը"
10102
10330
  },
@@ -10152,7 +10380,7 @@
10152
10380
  "message": "Ընտրիչների տեսակները գրառման համար"
10153
10381
  },
10154
10382
  "panels/recorder/components/CreateRecordingView.ts | startRecording": {
10155
- "message": "Սկսել ձայնագրումը"
10383
+ "message": "Սկսել գրանցումը"
10156
10384
  },
10157
10385
  "panels/recorder/components/ExtensionView.ts | closeView": {
10158
10386
  "message": "Փակել"
@@ -10280,24 +10508,6 @@
10280
10508
  "panels/recorder/components/ReplaySection.ts | speedGroup": {
10281
10509
  "message": "Արագություն"
10282
10510
  },
10283
- "panels/recorder/components/StartView.ts | createRecording": {
10284
- "message": "Ստեղծել նոր ձայնագրություն"
10285
- },
10286
- "panels/recorder/components/StartView.ts | header": {
10287
- "message": "Չափեք արդյունավետությունը օգտատիրոջ փորձառության յուրաքանչյուր քայլում"
10288
- },
10289
- "panels/recorder/components/StartView.ts | quickStart": {
10290
- "message": "Արագ մեկնարկ․ ծանոթացեք նոր «Ձայնագրիչ» վահանակի հնարավորություններին ծրագրավորողի գործիքներում"
10291
- },
10292
- "panels/recorder/components/StartView.ts | step1": {
10293
- "message": "Գրառեք օգտատիրոջ տիպիկ փորձառությունը ձեր կայքում կամ հավելվածում"
10294
- },
10295
- "panels/recorder/components/StartView.ts | step2": {
10296
- "message": "Նվագարկեք գրառումը և ստուգեք՝ արդյոք հոսքը աշխատում է"
10297
- },
10298
- "panels/recorder/components/StartView.ts | step3": {
10299
- "message": "Ստեղծեք արդյունավետության մանրամասն հետագծում կամ արտահանեք գրառումը որպես Puppeteer հրահանգաշար փորձարկման համար"
10300
- },
10301
10511
  "panels/recorder/components/StepEditor.ts | addAttribute": {
10302
10512
  "message": "Ավելացնել {attributeName}"
10303
10513
  },
@@ -10520,24 +10730,186 @@
10520
10730
  "panels/search/SearchView.ts | searching": {
10521
10731
  "message": "Որոնում…"
10522
10732
  },
10733
+ "panels/security/CookieControlsView.ts | cardDisclaimer": {
10734
+ "message": "Միայն երբ ծրագրավորողի գործիքները բացված են"
10735
+ },
10736
+ "panels/security/CookieControlsView.ts | cardTitle": {
10737
+ "message": "Ժամանակավորապես սահմանափակել երրորդ կողմի քուքիները"
10738
+ },
10739
+ "panels/security/CookieControlsView.ts | enableFlag": {
10740
+ "message": "Սա օգտագործելու համար նշեք {PH1} պարամետրը որպես կանխադրված"
10741
+ },
10742
+ "panels/security/CookieControlsView.ts | enrollGracePeriod": {
10743
+ "message": "Նախ, այս զետեղված կայքի կամ կայքերի համար ուղարկեք {PH1} տրամադրելու հարցում"
10744
+ },
10745
+ "panels/security/CookieControlsView.ts | enterpriseDisclaimer": {
10746
+ "message": "Ձեր կազմակերպությունը կառավարում է երրորդ կողմի քուքիների հասանելիությունը այս կայքի համար"
10747
+ },
10748
+ "panels/security/CookieControlsView.ts | enterpriseTooltip": {
10749
+ "message": "Այս կարգավորումը կառավարվում է ձեր կազմակերպության կողմից"
10750
+ },
10751
+ "panels/security/CookieControlsView.ts | exceptions": {
10752
+ "message": "Բացառություններ"
10753
+ },
10754
+ "panels/security/CookieControlsView.ts | exceptionsExplanation": {
10755
+ "message": "Սցենարներ, որոնք հասանելի են դարձնում երրորդ կողմի քուքիները"
10756
+ },
10757
+ "panels/security/CookieControlsView.ts | gracePeriod": {
10758
+ "message": "արտոնյալ ժամանակահատված"
10759
+ },
10760
+ "panels/security/CookieControlsView.ts | gracePeriodExplanation": {
10761
+ "message": "Եթե կայքը կամ դրանում զետեղված կայքը գրանցված է {PH1}ում, կայքին կարող են հասանելի լինել երրորդ կողմի քուքիները"
10762
+ },
10763
+ "panels/security/CookieControlsView.ts | gracePeriodTitle": {
10764
+ "message": "Երրորդ կողմի քուքիների արտոնյալ ժամանակահատված"
10765
+ },
10766
+ "panels/security/CookieControlsView.ts | heuristicExplanation": {
10767
+ "message": "Որոշ {PH1}, ինչպիսիք են ելնող պատուհանները կամ վերաուղղորդումները, երրորդ կողմի քուքիները հասանելի կլինեն այս կայքում զետեղված կայքին"
10768
+ },
10769
+ "panels/security/CookieControlsView.ts | heuristicTitle": {
10770
+ "message": "Էվրիստիկայի հիման վրա բացառում"
10771
+ },
10772
+ "panels/security/CookieControlsView.ts | scenarios": {
10773
+ "message": "ստանդարտ սցենարներում"
10774
+ },
10775
+ "panels/security/CookieControlsView.ts | siteReloadMessage": {
10776
+ "message": "Վերաբեռնեք էջը՝ ձեր վերբեռնված կարգավորումները կիրառելու համար"
10777
+ },
10778
+ "panels/security/CookieControlsView.ts | tpcdHeuristicsGrants": {
10779
+ "message": "#tpcd-heuristics-grants"
10780
+ },
10781
+ "panels/security/CookieControlsView.ts | tpcdMetadataGrants": {
10782
+ "message": "#tpcd-metadata-grants"
10783
+ },
10784
+ "panels/security/CookieControlsView.ts | viewDetails": {
10785
+ "message": "Դիտել մանրամասները"
10786
+ },
10787
+ "panels/security/CookieControlsView.ts | viewExplanation": {
10788
+ "message": "Փորձարկեք, թե ինչպես կաշխատի կայքը, եթե երրորդ կողմի քուքիները սահմանափակված լինեն Chrome-ում"
10789
+ },
10790
+ "panels/security/CookieControlsView.ts | viewTitle": {
10791
+ "message": "Կարգավորումներ"
10792
+ },
10793
+ "panels/security/CookieReportView.ts | adCookieTypeString": {
10794
+ "message": "Գովազդ"
10795
+ },
10523
10796
  "panels/security/CookieReportView.ts | allowed": {
10524
10797
  "message": "Թույլատրված"
10525
10798
  },
10526
10799
  "panels/security/CookieReportView.ts | allowedByException": {
10527
10800
  "message": "Թույլատրված է բացառությամբ"
10528
10801
  },
10802
+ "panels/security/CookieReportView.ts | analyticsCookieTypeString": {
10803
+ "message": "Analytics"
10804
+ },
10529
10805
  "panels/security/CookieReportView.ts | blocked": {
10530
10806
  "message": "Արգելափակված"
10531
10807
  },
10532
10808
  "panels/security/CookieReportView.ts | body": {
10533
- "message": "Երրորդ կողմի քուքիներ, որոնք կարող են սահմանափակվել օգտատերերի կողմից՝ կախված նրանց կարգավորումներից։ Եթե որևէ օգտատեր որոշի սահմանափակել քուքիները, ապա այս կայքը կարող է չաշխատել նրա մոտ։"
10809
+ "message": "Այս կայքը կարող է չաշխատել, եթե երրորդ կողմի քուքիները և այլ քուքիներ սահմանափակված լինեն Chrome-ում։"
10810
+ },
10811
+ "panels/security/CookieReportView.ts | cdnCookieTypeString": {
10812
+ "message": "CDN"
10813
+ },
10814
+ "panels/security/CookieReportView.ts | consentProviderCookieTypeString": {
10815
+ "message": "Consent Provider"
10816
+ },
10817
+ "panels/security/CookieReportView.ts | contentCookieTypeString": {
10818
+ "message": "Բովանդակություն"
10819
+ },
10820
+ "panels/security/CookieReportView.ts | customerSuccessCookieTypeString": {
10821
+ "message": "Հաճախորդների հաջողություններ"
10822
+ },
10823
+ "panels/security/CookieReportView.ts | domain": {
10824
+ "message": "Տիրույթ"
10825
+ },
10826
+ "panels/security/CookieReportView.ts | emptyReport": {
10827
+ "message": "Ամեն ինչ կարգին է"
10828
+ },
10829
+ "panels/security/CookieReportView.ts | emptyReportExplanation": {
10830
+ "message": "Երրորդ կողմի քուքիների հետ կապված խնդիրներ չեն գտնվել"
10831
+ },
10832
+ "panels/security/CookieReportView.ts | gitHubResource": {
10833
+ "message": "Ծանոթացեք {PH1}ին երրորդ կողմի կայքում"
10834
+ },
10835
+ "panels/security/CookieReportView.ts | gitHubResourceInsightTypeString": {
10836
+ "message": "GitHub"
10837
+ },
10838
+ "panels/security/CookieReportView.ts | gracePeriod": {
10839
+ "message": "Ստուգեք {PH1}ը։ Արտոնյալ ժամանակահատվածի բացառությունն ակտիվ է։"
10840
+ },
10841
+ "panels/security/CookieReportView.ts | gracePeriodInsightTypeString": {
10842
+ "message": "Արտոնյալ ժամանակահատված"
10843
+ },
10844
+ "panels/security/CookieReportView.ts | guidance": {
10845
+ "message": "հուշումներ"
10846
+ },
10847
+ "panels/security/CookieReportView.ts | heuristics": {
10848
+ "message": "Ավելի ուշ կպահանջվի գործողություն ձեռնարկել։ Էվրիստիկայի հիման վրա բացառությունն ակտիվ է։"
10849
+ },
10850
+ "panels/security/CookieReportView.ts | heuristicsInisightTypeString": {
10851
+ "message": "Էվրիստիկա"
10852
+ },
10853
+ "panels/security/CookieReportView.ts | hostingCookieTypeString": {
10854
+ "message": "Հոսթինգ"
10534
10855
  },
10535
10856
  "panels/security/CookieReportView.ts | learnMoreLink": {
10536
10857
  "message": "Իմանալ ավելին երրորդ կողմի քուքիների օգտագործման մասին"
10537
10858
  },
10859
+ "panels/security/CookieReportView.ts | marketingCookieTypeString": {
10860
+ "message": "Մարքեթինգ"
10861
+ },
10862
+ "panels/security/CookieReportView.ts | name": {
10863
+ "message": "Անվանում"
10864
+ },
10865
+ "panels/security/CookieReportView.ts | other": {
10866
+ "message": "Լրացուցիչ տեղեկությունների համար դիմեք երրորդ կողմի կայքին"
10867
+ },
10868
+ "panels/security/CookieReportView.ts | otherCookieTypeString": {
10869
+ "message": "Այլ"
10870
+ },
10871
+ "panels/security/CookieReportView.ts | otherInsightTypeString": {
10872
+ "message": "Այլ"
10873
+ },
10874
+ "panels/security/CookieReportView.ts | platform": {
10875
+ "message": "Հարթակ"
10876
+ },
10877
+ "panels/security/CookieReportView.ts | recommendation": {
10878
+ "message": "Առաջարկ"
10879
+ },
10880
+ "panels/security/CookieReportView.ts | report": {
10881
+ "message": "Երրորդ կողմի քուքիների մասին հաշվետվություն"
10882
+ },
10883
+ "panels/security/CookieReportView.ts | reportedIssues": {
10884
+ "message": "հայտնաբերված խնդիրներ"
10885
+ },
10886
+ "panels/security/CookieReportView.ts | showRequestsWithThisCookie": {
10887
+ "message": "Ցուցադրել այս քուքիով հարցումները"
10888
+ },
10889
+ "panels/security/CookieReportView.ts | socialCookieTypeString": {
10890
+ "message": "Սոցցանցեր"
10891
+ },
10892
+ "panels/security/CookieReportView.ts | status": {
10893
+ "message": "Կարգավիճակ"
10894
+ },
10895
+ "panels/security/CookieReportView.ts | tagManagerCookieTypeString": {
10896
+ "message": "Tag Manager"
10897
+ },
10538
10898
  "panels/security/CookieReportView.ts | title": {
10539
10899
  "message": "Երրորդ կողմի քուքիներ"
10540
10900
  },
10901
+ "panels/security/CookieReportView.ts | type": {
10902
+ "message": "Տեսակը"
10903
+ },
10904
+ "panels/security/CookieReportView.ts | unknown": {
10905
+ "message": "Անհայտ"
10906
+ },
10907
+ "panels/security/CookieReportView.ts | utilityCookieTypeString": {
10908
+ "message": "Օժանդակ ծրագիր"
10909
+ },
10910
+ "panels/security/CookieReportView.ts | videoCookieTypeString": {
10911
+ "message": "Տեսանյութ"
10912
+ },
10541
10913
  "panels/security/SecurityModel.ts | cipherWithMAC": {
10542
10914
  "message": "{PH1}՝ {PH2}-ի հետ"
10543
10915
  },
@@ -10841,15 +11213,12 @@
10841
11213
  "panels/security/SecurityPanelSidebar.ts | cookieReport": {
10842
11214
  "message": "Երրորդ կողմի քուքիներ"
10843
11215
  },
11216
+ "panels/security/SecurityPanelSidebar.ts | flagControls": {
11217
+ "message": "Կարգավորումներ"
11218
+ },
10844
11219
  "panels/security/SecurityPanelSidebar.ts | mainOrigin": {
10845
11220
  "message": "Հիմնական աղբյուր"
10846
11221
  },
10847
- "panels/security/SecurityPanelSidebar.ts | mainOriginNonsecure": {
10848
- "message": "Հիմնական աղբյուրը (վտանգավոր)"
10849
- },
10850
- "panels/security/SecurityPanelSidebar.ts | mainOriginSecure": {
10851
- "message": "Հիմնական աղբյուր (անվտանգ)"
10852
- },
10853
11222
  "panels/security/SecurityPanelSidebar.ts | nonsecureOrigins": {
10854
11223
  "message": "Վտանգավոր աղբյուրներ"
10855
11224
  },
@@ -10871,18 +11240,18 @@
10871
11240
  "panels/security/SecurityPanelSidebar.ts | unknownCanceled": {
10872
11241
  "message": "Անհայտ/չեղարկված է"
10873
11242
  },
11243
+ "panels/security/security-meta.ts | PrivacyAndSecurity": {
11244
+ "message": "Գաղտնիություն և անվտանգություն"
11245
+ },
10874
11246
  "panels/security/security-meta.ts | security": {
10875
11247
  "message": "Անվտանգություն"
10876
11248
  },
10877
- "panels/security/security-meta.ts | securityAndPrivacy": {
10878
- "message": "Անվտանգություն և գաղտնիություն"
11249
+ "panels/security/security-meta.ts | showPrivacyAndSecurity": {
11250
+ "message": "Ցույց տալ «Գաղտնիություն և անվտանգություն» վահանակը"
10879
11251
  },
10880
11252
  "panels/security/security-meta.ts | showSecurity": {
10881
11253
  "message": "Ցուցադրել անվտանգության վահանակը"
10882
11254
  },
10883
- "panels/security/security-meta.ts | showSecurityAndPrivacy": {
10884
- "message": "Բացել «Անվտանգություն և գաղտնիություն» վահանակը"
10885
- },
10886
11255
  "panels/sensors/LocationsSettingsTab.ts | addLocation": {
10887
11256
  "message": "Ավելացնել վայր"
10888
11257
  },
@@ -11117,11 +11486,8 @@
11117
11486
  "panels/sensors/sensors-meta.ts | userIdleScreenUnlocked": {
11118
11487
  "message": "Օգտատերն ակտիվ չէ, էկրանն ապակողպված է"
11119
11488
  },
11120
- "panels/settings/AISettingsTab.ts | adminSettings": {
11121
- "message": "Ձեր Google հաշվի կառավարումից և/կամ տարածաշրջանից կախված՝ Google-ը կարող է ձեռնպահ մնալ տվյալների հավաքումից։ Կառավարվող օգտատերերի համար հասանելի գործառույթները կարող են տարբերվել՝ կախված ձեր կազմակերպության կարգավորումներից։"
11122
- },
11123
11489
  "panels/settings/AISettingsTab.ts | ageRestricted": {
11124
- "message": "Այս գործառույթը հասանելի է միայն 18 տարեկան և ավելի բարձր տարիքի օգտատերերին"
11490
+ "message": "Այս գործառույթը հասանելի է միայն 18 տարեկան և ավելի բարձր տարիքի օգտատերերին։"
11125
11491
  },
11126
11492
  "panels/settings/AISettingsTab.ts | boostYourProductivity": {
11127
11493
  "message": "Բարձրացրեք ձեր արտադրողականությունը ԱԲ-ի միջոցով"
@@ -11129,6 +11495,15 @@
11129
11495
  "panels/settings/AISettingsTab.ts | consoleInsightsSendsData": {
11130
11496
  "message": "Վահանակի հաղորդագրությունը, կապված սթեքի ժամանակագրությունը, համապատասխան սկզբնական կոդը և կապված ցանցի վերնագրերը ուղարկվում են Google-ին՝ բացատրություններ գեներացնելու համար։ Այս տվյալները կարող են դիտվել մասնագետների կողմից՝ գործառույթը բարելավելու համար։"
11131
11497
  },
11498
+ "panels/settings/AISettingsTab.ts | consoleInsightsSendsDataNoLogging": {
11499
+ "message": "The console message, associated stack trace, related source code, and the associated network headers are sent to Google to generate explanations. This data will not be used to improve Google’s AI models."
11500
+ },
11501
+ "panels/settings/AISettingsTab.ts | dataCollection": {
11502
+ "message": "Կախված ձեր տարածաշրջանից՝ Google-ը կարող է ձեռնպահ մնալ տվյալների հավաքումից"
11503
+ },
11504
+ "panels/settings/AISettingsTab.ts | dataCollectionNoLogging": {
11505
+ "message": "Ձեր Google հաշվի կառավարումից և/կամ տարածաշրջանից կախված՝ Google-ը կարող է ձեռնպահ մնալ տվյալների հավաքումից"
11506
+ },
11132
11507
  "panels/settings/AISettingsTab.ts | enableAiAssistance": {
11133
11508
  "message": "Միացնել ԱԲ օգնությունը"
11134
11509
  },
@@ -11136,7 +11511,7 @@
11136
11511
  "message": "Միացնել «Console insights» գործառույթը"
11137
11512
  },
11138
11513
  "panels/settings/AISettingsTab.ts | experimentalFeatures": {
11139
- "message": "Այս գործառույթները փորձնական են։ Դրանք օգտագործում են գեներատիվ արհեստական բանականություն և կարող են տրամադրել ոչ ճշգրիտ կամ վիրավորական տեղեկություններ, որոնք չեն ներկայացնում Google-ի տեսակետները։"
11514
+ "message": "Այս գործառույթները օգտագործում են գեներատիվ արհեստական բանականություն և կարող են տրամադրել ոչ ճշգրիտ կամ վիրավորական տեղեկություններ, որոնք չեն ներկայացնում Google-ի տեսակետները"
11140
11515
  },
11141
11516
  "panels/settings/AISettingsTab.ts | explainConsole": {
11142
11517
  "message": "Ստացեք բացատրություններ վահանակի նախազգուշացումների ու սխալների համար"
@@ -11156,6 +11531,9 @@
11156
11531
  "panels/settings/AISettingsTab.ts | freestylerSendsData": {
11157
11532
  "message": "Տվյալները, որոնք ստուգվող էջը կարող է բացել վեբ API-ների, ցանցի հարցումների, ֆայլերի և արտադրողականության հետագծումների միջոցով, ուղարկվում են Google-ին՝ բացատրություններ ստեղծելու համար։ Այս տվյալները կարող են դիտվել մասնագետների կողմից՝ գործառույթը բարելավելու համար։ Մի օգտագործեք անձնական կամ զգայուն տեղեկություններով էջերում։"
11158
11533
  },
11534
+ "panels/settings/AISettingsTab.ts | freestylerSendsDataNoLogging": {
11535
+ "message": "Any data the inspected page can access via Web APIs, network requests, files, and performance traces are sent to Google to generate explanations. This data will not be used to improve Google’s AI models."
11536
+ },
11159
11537
  "panels/settings/AISettingsTab.ts | helpUnderstandConsole": {
11160
11538
  "message": "Օգնում է հասկանալ և շտկել վահանակի նախազգուշացումներն ու սխալները"
11161
11539
  },
@@ -11189,12 +11567,12 @@
11189
11567
  "panels/settings/AISettingsTab.ts | receiveSuggestions": {
11190
11568
  "message": "Ստացեք առաջարկներ և կոդերի նմուշներ՝ այս խնդիրները լուծելու համար"
11191
11569
  },
11192
- "panels/settings/AISettingsTab.ts | retainData": {
11193
- "message": "Օգտագործման տվյալները կպահվեն մինչև 18 ամիս և այնպես, որ Google-ը չկարողանա ասել, թե ով է դրանք տրամադրել։"
11194
- },
11195
11570
  "panels/settings/AISettingsTab.ts | sendsDataToGoogle": {
11196
11571
  "message": "Այս գործառույթները որոշակի տվյալներ են ուղարկում Google-ին։ Google-ը հավաքում է այդ տվյալներն ու արձագանքները՝ մասնագետների օգնությամբ իր պրոդուկտներն ու ծառայությունները բարելավելու համար։ Խուսափեք զգայուն կամ անձնական տեղեկություններ տրամադրելուց։"
11197
11572
  },
11573
+ "panels/settings/AISettingsTab.ts | sendsDataToGoogleNoLogging": {
11574
+ "message": "Մեր մասնագետները չեն օգտագործի ձեր բովանդակությունը՝ ԱԲ-ն բարելավելու նպատակով։ Ձեր կազմակերպությունը ցանկացած ժամանակ կարող է փոխել այս կարգավորումները։"
11575
+ },
11198
11576
  "panels/settings/AISettingsTab.ts | showLess": {
11199
11577
  "message": "Ցույց տալ ավելի քիչ"
11200
11578
  },
@@ -11217,7 +11595,7 @@
11217
11595
  "message": "Կանոնավոր արտահայտության կանոն ավելացնել սկրիպտի URL-ի համար"
11218
11596
  },
11219
11597
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | addPattern": {
11220
- "message": "Ավելացնել կանոնավոր արտահայտության կանոն..."
11598
+ "message": "Ավելացնել կանոնավոր արտահայտության կանոն"
11221
11599
  },
11222
11600
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | automaticallyIgnoreListKnownThirdPartyScripts": {
11223
11601
  "message": "Ծանոթ կողմնակի հրահանգաշարեր աղբյուրի քարտեզներից"
@@ -11247,7 +11625,7 @@
11247
11625
  "message": "Երբ միացված է, վրիպազերծիչը բաց կթողնի անտեսվածների ցանկում նշված սկրիպտները և կանտեսի բացառությունները, որոնք ազդում են միայն դրանց վրա, և flamechart գծապատկերի համընկնող տարրերը կծալվեն «Արտադրողականություն» վահանակում։"
11248
11626
  },
11249
11627
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | ignoreScriptsWhoseNamesMatchS": {
11250
- "message": "Անտեսել սկրիպտները, որոնց անունները համապատասխանում են հետևյալին՝ «{PH1}»"
11628
+ "message": "Անտեսել սկրիպտները, որոնց անվանումները համապատասխանում են հետևյալին՝ «{PH1}»"
11251
11629
  },
11252
11630
  "panels/settings/FrameworkIgnoreListSettingsTab.ts | learnMore": {
11253
11631
  "message": "Իմանալ ավելին"
@@ -11331,7 +11709,7 @@
11331
11709
  "message": "Իմանալ ավելին"
11332
11710
  },
11333
11711
  "panels/settings/SettingsScreen.ts | noResults": {
11334
- "message": "Նախազգուշացում. ոչ մի փորձարկում չի համապատասխանում զտիչին։"
11712
+ "message": "Զտիչին համապատասխանող փորձարկումներ չկան։"
11335
11713
  },
11336
11714
  "panels/settings/SettingsScreen.ts | oneOrMoreSettingsHaveChanged": {
11337
11715
  "message": "Մեկ կամ մի քանի կարգավորումներ փոխվել են, և դրանց կիրառման համար անհրաժեշտ է վերաբեռնել մշակողի գործիքները։"
@@ -11370,7 +11748,7 @@
11370
11748
  "message": "Այս կարգավորումը միացնելու համար անհրաժեշտ է միացնել Chrome-ի համաժամացումը։"
11371
11749
  },
11372
11750
  "panels/settings/emulation/DevicesSettingsTab.ts | addCustomDevice": {
11373
- "message": "Ավելացնել հատուկ սարք…"
11751
+ "message": "Ավելացնել հատուկ սարք"
11374
11752
  },
11375
11753
  "panels/settings/emulation/DevicesSettingsTab.ts | customDevices": {
11376
11754
  "message": "Հատուկ սարքեր"
@@ -11549,6 +11927,9 @@
11549
11927
  "panels/snippets/SnippetsQuickOpen.ts | run": {
11550
11928
  "message": "Գործարկել"
11551
11929
  },
11930
+ "panels/snippets/SnippetsQuickOpen.ts | runSnippet": {
11931
+ "message": "Գործարկել հատվածը"
11932
+ },
11552
11933
  "panels/snippets/SnippetsQuickOpen.ts | snippet": {
11553
11934
  "message": "Հատված"
11554
11935
  },
@@ -11847,28 +12228,28 @@
11847
12228
  "message": "{PH1} (անտեսվածների ցանկում)"
11848
12229
  },
11849
12230
  "panels/sources/GoToLineQuickOpen.ts | currentLineSTypeALineNumber": {
11850
- "message": "Ընթացիկ տող՝ {PH1}։ Այլ տող անցնելու համար մուտքագրեք 1-ի և {PH2}-ի միջև թիվ։"
12231
+ "message": "Այլ տող անցնելու համար մուտքագրեք 1-ի և {PH1}-ի միջև թիվ"
11851
12232
  },
11852
12233
  "panels/sources/GoToLineQuickOpen.ts | currentPositionXsTypeAnOffset": {
11853
- "message": "Ընթացիկ դիքավորում՝ 0x{PH1}։ Անցնելու համար մուտքագրեք 0x{PH2} և 0x{PH3} միջև շեղումը։"
12234
+ "message": "Անցնելու համար մուտքագրեք 0x{PH1} և 0x{PH2} միջև շեղում"
11854
12235
  },
11855
12236
  "panels/sources/GoToLineQuickOpen.ts | goToLineS": {
11856
- "message": "Անցնել տող {PH1}։"
12237
+ "message": "Անցնել տող {PH1}-ին"
11857
12238
  },
11858
12239
  "panels/sources/GoToLineQuickOpen.ts | goToLineSAndColumnS": {
11859
- "message": "Անցնել տող {PH1} և սյունակ {PH2}։"
12240
+ "message": "Անցնել տող {PH1} և սյունակ {PH2}"
11860
12241
  },
11861
12242
  "panels/sources/GoToLineQuickOpen.ts | goToOffsetXs": {
11862
12243
  "message": "Անցնել 0x{PH1} շեղմանը"
11863
12244
  },
11864
12245
  "panels/sources/GoToLineQuickOpen.ts | noFileSelected": {
11865
- "message": "Ֆայլ չի ընտրվել։"
12246
+ "message": "Ֆայլ չի ընտրվել"
11866
12247
  },
11867
12248
  "panels/sources/GoToLineQuickOpen.ts | noResultsFound": {
11868
12249
  "message": "Ոչինչ չի գտնվել"
11869
12250
  },
11870
12251
  "panels/sources/GoToLineQuickOpen.ts | typeANumberToGoToThatLine": {
11871
- "message": "Համապատասխան տող անցնելու համար մուտքագրեք տողի համարը։"
12252
+ "message": "Համապատասխան տող անցնելու համար մուտքագրեք տողի համարը"
11872
12253
  },
11873
12254
  "panels/sources/InplaceFormatterEditorAction.ts | format": {
11874
12255
  "message": "Ձևաչափ"
@@ -11997,23 +12378,32 @@
11997
12378
  "message": "Ստեղծել նոր հատված"
11998
12379
  },
11999
12380
  "panels/sources/SourcesNavigator.ts | explainContentScripts": {
12000
- "message": "Դիտել ընդլայնումների կողմից սպասարկվող բովանդակության հրահանգաշարերը"
12381
+ "message": "Դիտել ընդլայնումների կողմից սպասարկվող բովանդակության սկրիպտները։"
12001
12382
  },
12002
12383
  "panels/sources/SourcesNavigator.ts | explainLocalOverrides": {
12003
- "message": "Փոխարինեք ցանցային հարցումները և վեբ բովանդակությունը սարքում՝ հեռավոր ռեսուրսները նմանակելու համար"
12384
+ "message": "Փոխարինեք ցանցային հարցումները և վեբ բովանդակությունը սարքում՝ հեռավոր ռեսուրսները նմանակելու համար:"
12004
12385
  },
12005
12386
  "panels/sources/SourcesNavigator.ts | explainSnippets": {
12006
- "message": "Պահեք JavaScript-ի կոդը, որը հաճախ աշխատեցնում եք, որպեսզի այն ցանկացած ժամանակ նորից աշխատեցնեք"
12387
+ "message": "Պահեք JavaScript-ի կոդը, որը հաճախ աշխատեցնում եք հատվածում, որպեսզի այն ցանկացած ժամանակ նորից աշխատեցնեք"
12007
12388
  },
12008
12389
  "panels/sources/SourcesNavigator.ts | explainWorkspace": {
12009
- "message": "Կարգավորեք աշխատանքային տարածք՝ խմբագրումներն անմիջապես ձեր մշակած աղբյուրների հետ համաժամացնելու համար"
12010
- },
12011
- "panels/sources/SourcesNavigator.ts | learnMore": {
12012
- "message": "Իմանալ ավելին"
12390
+ "message": "Կարգավորեք աշխատանքային տարածքներ՝ խմբագրումներն անմիջապես ձեր մշակած աղբյուրների հետ համաժամացնելու համար։"
12013
12391
  },
12014
12392
  "panels/sources/SourcesNavigator.ts | newSnippet": {
12015
12393
  "message": "Նոր հատված"
12016
12394
  },
12395
+ "panels/sources/SourcesNavigator.ts | noContentScripts": {
12396
+ "message": "Բովանդակության սկրիպտներ չեն գտնվել"
12397
+ },
12398
+ "panels/sources/SourcesNavigator.ts | noLocalOverrides": {
12399
+ "message": "Լոկալ փոխարինումները կարգավորված չեն"
12400
+ },
12401
+ "panels/sources/SourcesNavigator.ts | noSnippets": {
12402
+ "message": "Հատվածներ չեն պահվել"
12403
+ },
12404
+ "panels/sources/SourcesNavigator.ts | noWorkspace": {
12405
+ "message": "Աշխատանքային տարածքներ կարգավորված չեն"
12406
+ },
12017
12407
  "panels/sources/SourcesNavigator.ts | remove": {
12018
12408
  "message": "Հեռացնել"
12019
12409
  },
@@ -12386,6 +12776,9 @@
12386
12776
  "panels/sources/sources-meta.ts | goToLine": {
12387
12777
  "message": "Անցնել տողին"
12388
12778
  },
12779
+ "panels/sources/sources-meta.ts | goToSymbol": {
12780
+ "message": "Անցնել նշանին"
12781
+ },
12389
12782
  "panels/sources/sources-meta.ts | incrementCssUnitBy": {
12390
12783
  "message": "CSS-ի չափման միավորի մեծացում {PH1}-ով"
12391
12784
  },
@@ -12413,6 +12806,9 @@
12413
12806
  "panels/sources/sources-meta.ts | open": {
12414
12807
  "message": "Բացել"
12415
12808
  },
12809
+ "panels/sources/sources-meta.ts | openFile": {
12810
+ "message": "Բացել ֆայլը"
12811
+ },
12416
12812
  "panels/sources/sources-meta.ts | pauseScriptExecution": {
12417
12813
  "message": "Դադարեցնել սկրիպտի կատարումը"
12418
12814
  },
@@ -12599,9 +12995,6 @@
12599
12995
  "panels/timeline/CountersGraph.ts | ss": {
12600
12996
  "message": "[{PH1} – {PH2}]"
12601
12997
  },
12602
- "panels/timeline/EventsTimelineTreeView.ts | Dms": {
12603
- "message": "{PH1} մվ"
12604
- },
12605
12998
  "panels/timeline/EventsTimelineTreeView.ts | all": {
12606
12999
  "message": "Բոլորը"
12607
13000
  },
@@ -12647,6 +13040,18 @@
12647
13040
  "panels/timeline/ServerTimingsTrackAppender.ts | serverTimingTrack": {
12648
13041
  "message": "Տարբերակի այս տեսակը պարունակում է ժամանակային տվյալներ, որոնք վերցված են Սերվերի ժամանակային տվյալների ցանցի արձագանքման վերնագրերից։ Դրա մեկնարկի համապատասխան ժամանակները մոտավոր են և կարող են ճշգրիտ չլինել։"
12649
13042
  },
13043
+ "panels/timeline/ThirdPartyTreeView.ts | firstOrThirdPartyName": {
13044
+ "message": "1st / 3rd party"
13045
+ },
13046
+ "panels/timeline/ThirdPartyTreeView.ts | selfTime": {
13047
+ "message": "Մեկ գործողության ժամանակը"
13048
+ },
13049
+ "panels/timeline/ThirdPartyTreeView.ts | transferSize": {
13050
+ "message": "Տեղափոխված տվյալների ծավալը"
13051
+ },
13052
+ "panels/timeline/ThirdPartyTreeView.ts | unattributed": {
13053
+ "message": "[առանց հատկանշման]"
13054
+ },
12650
13055
  "panels/timeline/ThreadAppender.ts | bidderWorklet": {
12651
13056
  "message": "Գնորդի աշխատախումբ"
12652
13057
  },
@@ -12666,7 +13071,7 @@
12666
13071
  "message": "Հիմնական — {PH1}"
12667
13072
  },
12668
13073
  "panels/timeline/ThreadAppender.ts | onIgnoreList": {
12669
- "message": "Անտեսվածների ցանկում"
13074
+ "message": "Անտեսվածների ցանկում ({rule})"
12670
13075
  },
12671
13076
  "panels/timeline/ThreadAppender.ts | raster": {
12672
13077
  "message": "Պատկերացանց"
@@ -12725,9 +13130,6 @@
12725
13130
  "panels/timeline/TimelineDetailsView.ts | paintProfiler": {
12726
13131
  "message": "Գունավորման պրոֆայլեր"
12727
13132
  },
12728
- "panels/timeline/TimelineDetailsView.ts | rangeSS": {
12729
- "message": "Միջակայք՝ {PH1} – {PH2}"
12730
- },
12731
13133
  "panels/timeline/TimelineDetailsView.ts | selectorStats": {
12732
13134
  "message": "Ընտրիչի վիճակագրություն"
12733
13135
  },
@@ -12788,11 +13190,14 @@
12788
13190
  "panels/timeline/TimelineHistoryManager.ts | currentSessionSS": {
12789
13191
  "message": "Ընթացիկ աշխատաշրջան՝ {PH1}։ {PH2}"
12790
13192
  },
13193
+ "panels/timeline/TimelineHistoryManager.ts | dSlowdown": {
13194
+ "message": "{PH1}× դանդաղեցում"
13195
+ },
12791
13196
  "panels/timeline/TimelineHistoryManager.ts | landingPageTitle": {
12792
13197
  "message": "Ուղիղ եթերների ցուցանիշներ"
12793
13198
  },
12794
- "panels/timeline/TimelineHistoryManager.ts | noRecordings": {
12795
- "message": "(գրանցումներ չկան)"
13199
+ "panels/timeline/TimelineHistoryManager.ts | nodeLandingPageTitle": {
13200
+ "message": "Նոր գրառում"
12796
13201
  },
12797
13202
  "panels/timeline/TimelineHistoryManager.ts | sD": {
12798
13203
  "message": "{PH1} #{PH2}"
@@ -12800,21 +13205,6 @@
12800
13205
  "panels/timeline/TimelineHistoryManager.ts | selectTimelineSession": {
12801
13206
  "message": "Ընտրել ժամանակագրության աշխատաշրջանը"
12802
13207
  },
12803
- "panels/timeline/TimelineLandingPage.ts | afterRecordingSelectAnAreaOf": {
12804
- "message": "Գրանցումից հետո քաշեք հետաքրքրող տարածքը համատեսքից։ Ապա մասշտաբավորեք և տեղաշարժեք ժամանակագրությունը մկնիկի անիվի կամ {PH1} ստեղների միջոցով։ {PH2}"
12805
- },
12806
- "panels/timeline/TimelineLandingPage.ts | clickTheRecordButtonSOrHitSTo": {
12807
- "message": "Սեղմեք գրանցման կոճակը {PH1} կամ հպեք {PH2}՝ նոր գրանցում սկսելու համար։"
12808
- },
12809
- "panels/timeline/TimelineLandingPage.ts | clickTheReloadButtonSOrHitSTo": {
12810
- "message": "Սեղմեք վերաբեռնման կոճակը {PH1} կամ հպեք {PH2}՝ էջի բեռնումը գրանցելու համար։"
12811
- },
12812
- "panels/timeline/TimelineLandingPage.ts | learnmore": {
12813
- "message": "Իմանալ ավելին"
12814
- },
12815
- "panels/timeline/TimelineLandingPage.ts | wasd": {
12816
- "message": "WASD"
12817
- },
12818
13208
  "panels/timeline/TimelineLoader.ts | malformedTimelineDataS": {
12819
13209
  "message": "Ժամանակագրության սխալ տվյալներ՝ {PH1}"
12820
13210
  },
@@ -12863,6 +13253,9 @@
12863
13253
  "panels/timeline/TimelinePanel.ts | description": {
12864
13254
  "message": "Նկարագրություն"
12865
13255
  },
13256
+ "panels/timeline/TimelinePanel.ts | dimThirdParties": {
13257
+ "message": "Dim 3rd parties"
13258
+ },
12866
13259
  "panels/timeline/TimelinePanel.ts | disableJavascriptSamples": {
12867
13260
  "message": "Անջատել JavaScript-ի նմուշները"
12868
13261
  },
@@ -12870,7 +13263,7 @@
12870
13263
  "message": "Անջատում է JavaScript-ի նմուշառումը, նվազեցնում է ռեսուրսների օգտագործումը շարժական սարքերում կատարման ժամանակ։"
12871
13264
  },
12872
13265
  "panels/timeline/TimelinePanel.ts | downloadAfterError": {
12873
- "message": "Ներբեռնել հետագծման չմշակված իրադարձությունները"
13266
+ "message": "Ներբեռնել ժամանակագրությունը"
12874
13267
  },
12875
13268
  "panels/timeline/TimelinePanel.ts | dropTimelineFileOrUrlHere": {
12876
13269
  "message": "Ժամանակագրության ֆայլը կամ URL-ը թողեք այստեղ"
@@ -12923,9 +13316,6 @@
12923
13316
  "panels/timeline/TimelinePanel.ts | networkConditions": {
12924
13317
  "message": "Ցանցի աշխատանքի պայմաններ"
12925
13318
  },
12926
- "panels/timeline/TimelinePanel.ts | performanceExtension": {
12927
- "message": "Ընդլայնման տվյալներ"
12928
- },
12929
13319
  "panels/timeline/TimelinePanel.ts | processed": {
12930
13320
  "message": "Մշակված"
12931
13321
  },
@@ -12956,6 +13346,9 @@
12956
13346
  "panels/timeline/TimelinePanel.ts | selectionCleared": {
12957
13347
  "message": "Ընտրությունը մաքրվեց"
12958
13348
  },
13349
+ "panels/timeline/TimelinePanel.ts | showCustomtracks": {
13350
+ "message": "Ցույց տալ տարբերակի հատուկ տեսակները"
13351
+ },
12959
13352
  "panels/timeline/TimelinePanel.ts | showDataAddedByExtensions": {
12960
13353
  "message": "Ցույց տալ «Արդյունավետություն» վահանակի ընդլայնումների կողմից ավելացված տվյալները"
12961
13354
  },
@@ -12971,9 +13364,6 @@
12971
13364
  "panels/timeline/TimelinePanel.ts | sidebarShown": {
12972
13365
  "message": "Արդյունավետության կողագոտին ցուցադրված է"
12973
13366
  },
12974
- "panels/timeline/TimelinePanel.ts | ssec": {
12975
- "message": "{PH1} վ"
12976
- },
12977
13367
  "panels/timeline/TimelinePanel.ts | status": {
12978
13368
  "message": "Կարգավիճակ"
12979
13369
  },
@@ -12983,9 +13373,24 @@
12983
13373
  "panels/timeline/TimelinePanel.ts | stoppingTimeline": {
12984
13374
  "message": "Ժամանակագրությունը դադարեցվում է…"
12985
13375
  },
13376
+ "panels/timeline/TimelinePanel.ts | thirdPartiesByThirdPartyWeb": {
13377
+ "message": "3rd parties classified by third-party-web"
13378
+ },
12986
13379
  "panels/timeline/TimelinePanel.ts | time": {
12987
13380
  "message": "Ժամանակ"
12988
13381
  },
13382
+ "panels/timeline/TimelinePanel.ts | timelineFastZoomInOut": {
13383
+ "message": "Արագ մեծացնել/փոքրացնել"
13384
+ },
13385
+ "panels/timeline/TimelinePanel.ts | timelinePanLeftRight": {
13386
+ "message": "Տեղափոխվել ձախ/աջ"
13387
+ },
13388
+ "panels/timeline/TimelinePanel.ts | timelineScrollUpDown": {
13389
+ "message": "Տեղափոխել վերև/ներքև"
13390
+ },
13391
+ "panels/timeline/TimelinePanel.ts | timelineZoomInOut": {
13392
+ "message": "Փոխել մասշտաբը"
13393
+ },
12989
13394
  "panels/timeline/TimelineSelectorStatsView.ts | copyTable": {
12990
13395
  "message": "Պատճենել աղյուսակը"
12991
13396
  },
@@ -13031,11 +13436,17 @@
13031
13436
  "panels/timeline/TimelineTreeView.ts | activity": {
13032
13437
  "message": "Գործողություններ"
13033
13438
  },
13439
+ "panels/timeline/TimelineTreeView.ts | bottomUp": {
13440
+ "message": "Ներքևից վերև"
13441
+ },
13034
13442
  "panels/timeline/TimelineTreeView.ts | chromeExtensionsOverhead": {
13035
13443
  "message": "[Chrome ընդլայնումների ծախսատարություն]"
13036
13444
  },
13037
- "panels/timeline/TimelineTreeView.ts | fms": {
13038
- "message": "{PH1} մվ"
13445
+ "panels/timeline/TimelineTreeView.ts | extension": {
13446
+ "message": "Ընդլայնում"
13447
+ },
13448
+ "panels/timeline/TimelineTreeView.ts | firstParty": {
13449
+ "message": "Սեփական օբյեկտ"
13039
13450
  },
13040
13451
  "panels/timeline/TimelineTreeView.ts | groupBy": {
13041
13452
  "message": "Խմբավորել"
@@ -13115,6 +13526,9 @@
13115
13526
  "panels/timeline/TimelineTreeView.ts | vRuntime": {
13116
13527
  "message": "[V8 աշխատաժամանակ]"
13117
13528
  },
13529
+ "panels/timeline/TimelineTreeView.ts | viewBottomUp": {
13530
+ "message": "Դիտել ներքևից վերև"
13531
+ },
13118
13532
  "panels/timeline/TimelineUIUtils.ts | UnknownNode": {
13119
13533
  "message": "[ անհայտ հանգույց ]"
13120
13534
  },
@@ -13214,18 +13628,6 @@
13214
13628
  "panels/timeline/TimelineUIUtils.ts | consumedCacheSize": {
13215
13629
  "message": "Մշակված քեշի չափը"
13216
13630
  },
13217
- "panels/timeline/TimelineUIUtils.ts | cumulativeLayoutShifts": {
13218
- "message": "Ընդհանուր դասավորության տեղաշարժումներ"
13219
- },
13220
- "panels/timeline/TimelineUIUtils.ts | cumulativeScore": {
13221
- "message": "Ընդհանուր գնահատականը"
13222
- },
13223
- "panels/timeline/TimelineUIUtils.ts | currentClusterId": {
13224
- "message": "Ընթացիկ կլաստերի ID"
13225
- },
13226
- "panels/timeline/TimelineUIUtils.ts | currentClusterScore": {
13227
- "message": "Ընթացիկ խմբի վարկանիշը"
13228
- },
13229
13631
  "panels/timeline/TimelineUIUtils.ts | delay": {
13230
13632
  "message": "Հապաղում"
13231
13633
  },
@@ -13250,12 +13652,12 @@
13250
13652
  "panels/timeline/TimelineUIUtils.ts | emptyPlaceholder": {
13251
13653
  "message": "{PH1}"
13252
13654
  },
13655
+ "panels/timeline/TimelineUIUtils.ts | entity": {
13656
+ "message": "Third party"
13657
+ },
13253
13658
  "panels/timeline/TimelineUIUtils.ts | entryIsHidden": {
13254
13659
  "message": "(գրառումը թաքցված է)"
13255
13660
  },
13256
- "panels/timeline/TimelineUIUtils.ts | evolvedClsLink": {
13257
- "message": "ծավալվել է"
13258
- },
13259
13661
  "panels/timeline/TimelineUIUtils.ts | failedToLoadScriptFromCache": {
13260
13662
  "message": "չհաջողվեց բեռնել սկրիպտը քեշից"
13261
13663
  },
@@ -13271,9 +13673,6 @@
13271
13673
  "panels/timeline/TimelineUIUtils.ts | function": {
13272
13674
  "message": "Գործառույթ"
13273
13675
  },
13274
- "panels/timeline/TimelineUIUtils.ts | hadRecentInput": {
13275
- "message": "Մուտքագրվել է վերջերս"
13276
- },
13277
13676
  "panels/timeline/TimelineUIUtils.ts | idleCallbackRequested": {
13278
13677
  "message": "Հետզանգի հարցում է արվել գործառույթի ոչ ակտիվ լինելու ընթացքում"
13279
13678
  },
@@ -13325,15 +13724,6 @@
13325
13724
  "panels/timeline/TimelineUIUtils.ts | module": {
13326
13725
  "message": "Մոդուլ"
13327
13726
  },
13328
- "panels/timeline/TimelineUIUtils.ts | movedFrom": {
13329
- "message": "Որտեղից է տեղափոխվել՝"
13330
- },
13331
- "panels/timeline/TimelineUIUtils.ts | movedTo": {
13332
- "message": "Տեղափոխվել է"
13333
- },
13334
- "panels/timeline/TimelineUIUtils.ts | no": {
13335
- "message": "Ոչ"
13336
- },
13337
13727
  "panels/timeline/TimelineUIUtils.ts | nodesThatNeedLayout": {
13338
13728
  "message": "Հանգույցներ, որոնց համար պահանջվում է դասավորություն"
13339
13729
  },
@@ -13385,9 +13775,6 @@
13385
13775
  "panels/timeline/TimelineUIUtils.ts | sAtSParentheses": {
13386
13776
  "message": "{PH1} ({PH2})"
13387
13777
  },
13388
- "panels/timeline/TimelineUIUtils.ts | sCLSInformation": {
13389
- "message": "{PH1}՝ կարող է նվազեցնել հարմարավետությունն օգտատերերի համար։ Այն վերջերս {PH2}։"
13390
- },
13391
13778
  "panels/timeline/TimelineUIUtils.ts | sChildren": {
13392
13779
  "message": "{PH1} (ենթատարրեր)"
13393
13780
  },
@@ -13418,9 +13805,6 @@
13418
13805
  "panels/timeline/TimelineUIUtils.ts | sSs": {
13419
13806
  "message": "{PH1} [{PH2}…{PH3}]"
13420
13807
  },
13421
- "panels/timeline/TimelineUIUtils.ts | score": {
13422
- "message": "Գնահատական"
13423
- },
13424
13808
  "panels/timeline/TimelineUIUtils.ts | script": {
13425
13809
  "message": "Սկրիպտ"
13426
13810
  },
@@ -13448,6 +13832,9 @@
13448
13832
  "panels/timeline/TimelineUIUtils.ts | stylesheetUrl": {
13449
13833
  "message": "Ոճերի աղյուսակի URL"
13450
13834
  },
13835
+ "panels/timeline/TimelineUIUtils.ts | thirdPartyTable": {
13836
+ "message": "1st / 3rd party table"
13837
+ },
13451
13838
  "panels/timeline/TimelineUIUtils.ts | timeSpentInRendering": {
13452
13839
  "message": "Արտապատկերման վրա ծախսած ժամանակը"
13453
13840
  },
@@ -13478,9 +13865,6 @@
13478
13865
  "panels/timeline/TimelineUIUtils.ts | warning": {
13479
13866
  "message": "Նախազգուշացում"
13480
13867
  },
13481
- "panels/timeline/TimelineUIUtils.ts | yes": {
13482
- "message": "Այո"
13483
- },
13484
13868
  "panels/timeline/TimingsTrackAppender.ts | timings": {
13485
13869
  "message": "Ժամանակային տվյալներ"
13486
13870
  },
@@ -13535,17 +13919,26 @@
13535
13919
  "panels/timeline/components/BreadcrumbsUI.ts | removeChildBreadcrumbs": {
13536
13920
  "message": "Հեռացնել նավիգացիայի ենթատարրերի տողերը"
13537
13921
  },
13922
+ "panels/timeline/components/CPUThrottlingSelector.ts | calibrate": {
13923
+ "message": "Calibrate…"
13924
+ },
13538
13925
  "panels/timeline/components/CPUThrottlingSelector.ts | cpu": {
13539
13926
  "message": "Պրոցեսոր՝ {PH1}"
13540
13927
  },
13541
13928
  "panels/timeline/components/CPUThrottlingSelector.ts | cpuThrottling": {
13542
13929
  "message": "Պրոցեսորի սահմանափակում՝ {PH1}"
13543
13930
  },
13544
- "panels/timeline/components/CPUThrottlingSelector.ts | dSlowdown": {
13545
- "message": "{PH1}× դանդաղեցում"
13931
+ "panels/timeline/components/CPUThrottlingSelector.ts | labelCalibratedPresets": {
13932
+ "message": "Կարգավորումների չափաբերված հավաքածուներ"
13546
13933
  },
13547
- "panels/timeline/components/CPUThrottlingSelector.ts | noThrottling": {
13548
- "message": "Սահմանափակում չկա"
13934
+ "panels/timeline/components/CPUThrottlingSelector.ts | recalibrate": {
13935
+ "message": "Recalibrate…"
13936
+ },
13937
+ "panels/timeline/components/CPUThrottlingSelector.ts | recommendedThrottling": {
13938
+ "message": "{PH1} – Խորհուրդ է տրվում"
13939
+ },
13940
+ "panels/timeline/components/CPUThrottlingSelector.ts | recommendedThrottlingReason": {
13941
+ "message": "Խորհուրդ ենք տալիս փոխել կարգավորումը՝ իրական օգտատերերի միջավայրեր նմանակելու համար"
13549
13942
  },
13550
13943
  "panels/timeline/components/DetailsView.ts | forcedReflow": {
13551
13944
  "message": "Հարկադրված վերադասավորում"
@@ -13577,15 +13970,9 @@
13577
13970
  "panels/timeline/components/DetailsView.ts | websocketProtocol": {
13578
13971
  "message": "WebSocket հաղորդակարգ"
13579
13972
  },
13580
- "panels/timeline/components/FieldSettingsDialog.ts | add": {
13581
- "message": "Ավելացնել"
13582
- },
13583
13973
  "panels/timeline/components/FieldSettingsDialog.ts | advanced": {
13584
13974
  "message": "Ընդլայնված"
13585
13975
  },
13586
- "panels/timeline/components/FieldSettingsDialog.ts | alreadyMapped": {
13587
- "message": "«{PH1}»-ն արդեն համեմատվել է արտադրության աղբյուրի հետ։"
13588
- },
13589
13976
  "panels/timeline/components/FieldSettingsDialog.ts | cancel": {
13590
13977
  "message": "Չեղարկել"
13591
13978
  },
@@ -13595,15 +13982,6 @@
13595
13982
  "panels/timeline/components/FieldSettingsDialog.ts | configureFieldData": {
13596
13983
  "message": "Կարգավորել դաշտերի տվյալների բեռնումը"
13597
13984
  },
13598
- "panels/timeline/components/FieldSettingsDialog.ts | delete": {
13599
- "message": "Ջնջել"
13600
- },
13601
- "panels/timeline/components/FieldSettingsDialog.ts | developmentOrigin": {
13602
- "message": "Մշակման աղբյուրը"
13603
- },
13604
- "panels/timeline/components/FieldSettingsDialog.ts | developmentOriginValue": {
13605
- "message": "Մշակման աղբյուրը՝ {PH1}"
13606
- },
13607
13985
  "panels/timeline/components/FieldSettingsDialog.ts | doesNotHaveSufficientData": {
13608
13986
  "message": "Chrome-ի օգտագործման հարմարավետության մասին հաշվետվությունը չունի այս էջերի բեռնման իրական արագության վերաբերյալ բավականաչափ տվյալներ։"
13609
13987
  },
@@ -13611,7 +13989,7 @@
13611
13989
  "message": "Բեռնեք ագրեգացված տվյալները {PH1}-ից՝ տեսնելու, թե ինչպես են տեղական չափումներն ու ձեր կայքի իրական օգտատերերի ընկալումը համադրվում։"
13612
13990
  },
13613
13991
  "panels/timeline/components/FieldSettingsDialog.ts | invalidOrigin": {
13614
- "message": "«{PH1}»-ը վավեր աղբյուր կամ URL չէ։"
13992
+ "message": "«{PH1}» տիրույթը վավեր աղբյուր կամ URL չէ։"
13615
13993
  },
13616
13994
  "panels/timeline/components/FieldSettingsDialog.ts | mapDevelopmentOrigins": {
13617
13995
  "message": "Կարգավորեք մշակման աղբյուր՝ ավտոմատ կերպով ստանալու համապատասխան դաշտային տվյալներ դրա արտադրության աղբյուրի համար։"
@@ -13631,12 +14009,6 @@
13631
14009
  "panels/timeline/components/FieldSettingsDialog.ts | privacyDisclosure": {
13632
14010
  "message": "Անվտանգության հայտարարագիր"
13633
14011
  },
13634
- "panels/timeline/components/FieldSettingsDialog.ts | productionOrigin": {
13635
- "message": "Արտադրության աղբյուրը"
13636
- },
13637
- "panels/timeline/components/FieldSettingsDialog.ts | productionOriginValue": {
13638
- "message": "Արտադրության աղբյուրը՝ {PH1}"
13639
- },
13640
14012
  "panels/timeline/components/FieldSettingsDialog.ts | setUp": {
13641
14013
  "message": "Կարգավորել"
13642
14014
  },
@@ -13646,6 +14018,39 @@
13646
14018
  "panels/timeline/components/FieldSettingsDialog.ts | whenPerformanceIsShown": {
13647
14019
  "message": "Երբ ծրագրավորողի գործիքները բացված են, ձեր այցելած էջերի URL-ները կուղարկվեն Google-ին՝ դաշտերի տվյալների հարցման համար։ Այս հարցումները կապված չեն ձեր Google հաշվի հետ։"
13648
14020
  },
14021
+ "panels/timeline/components/IgnoreListSetting.ts | addNewRegex": {
14022
+ "message": "Կանոնավոր արտահայտության կանոն ավելացնել սկրիպտի URL-ի համար"
14023
+ },
14024
+ "panels/timeline/components/IgnoreListSetting.ts | ignoreList": {
14025
+ "message": "Անտեսվածների ցանկ"
14026
+ },
14027
+ "panels/timeline/components/IgnoreListSetting.ts | ignoreListDescription": {
14028
+ "message": "Ավելացրեք կանոնավոր արտահայտությունների կանոններ՝ համընկնող սկրիպտները Flame Chart գծապատկերից հեռացնելու համար։"
14029
+ },
14030
+ "panels/timeline/components/IgnoreListSetting.ts | ignoreScriptsWhoseNamesMatchNewRegex": {
14031
+ "message": "Անտեսել սկրիպտները, որոնց անունները համապատասխանում են նոր կանոնավոր արտահայտությանը"
14032
+ },
14033
+ "panels/timeline/components/IgnoreListSetting.ts | ignoreScriptsWhoseNamesMatchS": {
14034
+ "message": "Անտեսել սկրիպտները, որոնց անվանումները համապատասխանում են հետևյալին՝ «{regex}»"
14035
+ },
14036
+ "panels/timeline/components/IgnoreListSetting.ts | patternAlreadyExists": {
14037
+ "message": "Կանոնն արդեն գոյություն ունի"
14038
+ },
14039
+ "panels/timeline/components/IgnoreListSetting.ts | patternAlreadyExistsWillBeEnables": {
14040
+ "message": "Այս կանոնն արդեն գոյություն ունի, սակայն անջատված է։ Եթե պահեք այս արժեքը, կանոնը նորից կմիանա"
14041
+ },
14042
+ "panels/timeline/components/IgnoreListSetting.ts | patternCannotBeEmpty": {
14043
+ "message": "Կանոնը չի կարող դատարկ լինել"
14044
+ },
14045
+ "panels/timeline/components/IgnoreListSetting.ts | patternMustBeAValidRegular": {
14046
+ "message": "Կանոնը պետք է լինի վավեր կանոնավոր արտահայտություն"
14047
+ },
14048
+ "panels/timeline/components/IgnoreListSetting.ts | removeRegex": {
14049
+ "message": "Հեռացնել կանոնավոր արտահայտությունը՝ «{regex}»"
14050
+ },
14051
+ "panels/timeline/components/IgnoreListSetting.ts | showIgnoreListSettingDialog": {
14052
+ "message": "Ցույց տալ անտեսվածների ցանկի կարգավորման պատուհանը"
14053
+ },
13649
14054
  "panels/timeline/components/InteractionBreakdown.ts | inputDelay": {
13650
14055
  "message": "Ներածման հետաձգում"
13651
14056
  },
@@ -13784,6 +14189,12 @@
13784
14189
  "panels/timeline/components/LiveMetricsView.ts | nextSteps": {
13785
14190
  "message": "Հաջորդ քայլերը"
13786
14191
  },
14192
+ "panels/timeline/components/LiveMetricsView.ts | nodeClickToRecord": {
14193
+ "message": "Գրանցել կապված Node գործընթացի արդյունավետության ժամանակագրությունը"
14194
+ },
14195
+ "panels/timeline/components/LiveMetricsView.ts | nodePerformanceTimeline": {
14196
+ "message": "Node-ի արտադրողականություն"
14197
+ },
13787
14198
  "panels/timeline/components/LiveMetricsView.ts | notEnoughData": {
13788
14199
  "message": "Բավարար տվյալներ չկան"
13789
14200
  },
@@ -13808,9 +14219,6 @@
13808
14219
  "panels/timeline/components/LiveMetricsView.ts | processingDuration": {
13809
14220
  "message": "Մշակման տևողությունը"
13810
14221
  },
13811
- "panels/timeline/components/LiveMetricsView.ts | realUserEnvironments": {
13812
- "message": "Իրական օգտատերերի միջավայրեր"
13813
- },
13814
14222
  "panels/timeline/components/LiveMetricsView.ts | resourceLoadDelay": {
13815
14223
  "message": "Ռեսուրսի բեռնման հետաձգում"
13816
14224
  },
@@ -13832,9 +14240,6 @@
13832
14240
  "panels/timeline/components/LiveMetricsView.ts | showInpInteraction": {
13833
14241
  "message": "Անցնել INP փոխազդեցությանը։"
13834
14242
  },
13835
- "panels/timeline/components/LiveMetricsView.ts | simulateDifferentDevices": {
13836
- "message": "տարբեր սարքեր նմանակելու"
13837
- },
13838
14243
  "panels/timeline/components/LiveMetricsView.ts | tablet": {
13839
14244
  "message": "Պլանշետ"
13840
14245
  },
@@ -13854,7 +14259,7 @@
13854
14259
  "message": "URL՝ {PH1}"
13855
14260
  },
13856
14261
  "panels/timeline/components/LiveMetricsView.ts | useDeviceToolbar": {
13857
- "message": "Օգտագործեք սարքի գործիքագոտին՝ {PH1} համար։"
14262
+ "message": "Օգտագործեք [սարքի գործիքագոտին](https://developer.chrome.com/docs/devtools/device-mode) և կազմաձևեք սահմանափակումներ՝ իրական օգտատերերի միջավայրեր նմանակելու և արտադրողականության ավելի շատ խնդիրներ հայտնաբերելու համար։"
13858
14263
  },
13859
14264
  "panels/timeline/components/LiveMetricsView.ts | worstCluster": {
13860
14265
  "message": "Ամենավատ կլաստերը"
@@ -14018,6 +14423,9 @@
14018
14423
  "panels/timeline/components/NetworkRequestDetails.ts | encodedData": {
14019
14424
  "message": "Կոդավորված տվյալներ"
14020
14425
  },
14426
+ "panels/timeline/components/NetworkRequestDetails.ts | entity": {
14427
+ "message": "Third party"
14428
+ },
14021
14429
  "panels/timeline/components/NetworkRequestDetails.ts | fromCache": {
14022
14430
  "message": "Քեշից"
14023
14431
  },
@@ -14036,9 +14444,6 @@
14036
14444
  "panels/timeline/components/NetworkRequestDetails.ts | no": {
14037
14445
  "message": "Ոչ"
14038
14446
  },
14039
- "panels/timeline/components/NetworkRequestDetails.ts | preview": {
14040
- "message": "Նախադիտել"
14041
- },
14042
14447
  "panels/timeline/components/NetworkRequestDetails.ts | priority": {
14043
14448
  "message": "Առաջնահերթություն"
14044
14449
  },
@@ -14090,9 +14495,33 @@
14090
14495
  "panels/timeline/components/NetworkThrottlingSelector.ts | presets": {
14091
14496
  "message": "Կարգավորումների հավաքածուներ"
14092
14497
  },
14498
+ "panels/timeline/components/NetworkThrottlingSelector.ts | recommendedThrottling": {
14499
+ "message": "{PH1} – Խորհուրդ է տրվում"
14500
+ },
14501
+ "panels/timeline/components/NetworkThrottlingSelector.ts | recommendedThrottlingReason": {
14502
+ "message": "Խորհուրդ ենք տալիս փոխել կարգավորումը՝ իրական օգտատերերի միջավայրեր նմանակելու համար"
14503
+ },
14504
+ "panels/timeline/components/OriginMap.ts | alreadyMapped": {
14505
+ "message": "«{PH1}»-ն արդեն համեմատվել է արտադրության աղբյուրի հետ։"
14506
+ },
14507
+ "panels/timeline/components/OriginMap.ts | developmentOrigin": {
14508
+ "message": "Մշակման աղբյուրը"
14509
+ },
14510
+ "panels/timeline/components/OriginMap.ts | invalidOrigin": {
14511
+ "message": "«{PH1}» տիրույթը վավեր աղբյուր կամ URL չէ։"
14512
+ },
14513
+ "panels/timeline/components/OriginMap.ts | pageHasNoData": {
14514
+ "message": "Chrome-ի օգտագործման հարմարավետության մասին հաշվետվությունը չունի իրական օգտատերերի մասին բավականաչափ տվյալներ այս էջի համար։"
14515
+ },
14516
+ "panels/timeline/components/OriginMap.ts | productionOrigin": {
14517
+ "message": "Արտադրության աղբյուրը"
14518
+ },
14093
14519
  "panels/timeline/components/RelatedInsightChips.ts | insightKeyword": {
14094
14520
  "message": "Վիճակագրություն"
14095
14521
  },
14522
+ "panels/timeline/components/RelatedInsightChips.ts | insightWithName": {
14523
+ "message": "Վիճակագրություն՝ {PH1}"
14524
+ },
14096
14525
  "panels/timeline/components/SidebarAnnotationsTab.ts | annotationGetStarted": {
14097
14526
  "message": "Ծանոթագրել հետագծումը ձեզ և այլ օգտատերերի համար"
14098
14527
  },
@@ -14138,158 +14567,65 @@
14138
14567
  "panels/timeline/components/SidebarInsightsTab.ts | feedbackTooltip": {
14139
14568
  "message": "Insights-ը փորձնական գործառույթ է։ Ձեր կարծիքը կօգնի մեզ բարելավել գործառույթը։"
14140
14569
  },
14141
- "panels/timeline/components/SidebarSingleInsightSet.ts | metricScore": {
14142
- "message": "{PH1}․ {PH2}, գնահատական՝ {PH3}"
14143
- },
14144
- "panels/timeline/components/Utils.ts | fms": {
14145
- "message": "{PH1}[մվ]()"
14146
- },
14147
- "panels/timeline/components/Utils.ts | fs": {
14148
- "message": "{PH1}[վ]()"
14149
- },
14150
- "panels/timeline/components/insights/CLSCulprits.ts | animation": {
14151
- "message": "Շարժապատկեր"
14152
- },
14153
- "panels/timeline/components/insights/CLSCulprits.ts | fontRequest": {
14154
- "message": "Տառատեսակի հարցում"
14155
- },
14156
- "panels/timeline/components/insights/CLSCulprits.ts | injectedIframe": {
14157
- "message": "iframe-ի զետեղում"
14158
- },
14159
- "panels/timeline/components/insights/CLSCulprits.ts | layoutShiftCluster": {
14160
- "message": "Դասավորության շեղումների կլաստեր @ {PH1}"
14161
- },
14162
- "panels/timeline/components/insights/CLSCulprits.ts | topCulprits": {
14163
- "message": "Դասավորության շեղումների գլխավոր պատճառները"
14164
- },
14165
- "panels/timeline/components/insights/CLSCulprits.ts | unsizedImages": {
14166
- "message": "Չնշված չափսերով պատկերներ"
14167
- },
14168
- "panels/timeline/components/insights/CLSCulprits.ts | worstCluster": {
14169
- "message": "Ամենավատ կլաստերը"
14170
- },
14171
- "panels/timeline/components/insights/CLSCulprits.ts | worstLayoutShiftCluster": {
14172
- "message": "Դասավորության շեղումների վատագույն կլաստերը"
14173
- },
14174
- "panels/timeline/components/insights/DocumentLatency.ts | failedAriaLabel": {
14175
- "message": "Չհաջողվեց ստուգել վիճակագրությունը․ {PH1}"
14176
- },
14177
- "panels/timeline/components/insights/DocumentLatency.ts | failedRedirects": {
14178
- "message": "Եղել են վերաուղղորդումներ"
14179
- },
14180
- "panels/timeline/components/insights/DocumentLatency.ts | failedServerResponseTime": {
14181
- "message": "Սերվերը դանդաղ է արձագանքում"
14182
- },
14183
- "panels/timeline/components/insights/DocumentLatency.ts | failedTextCompression": {
14184
- "message": "Սեղմում չի կիրառվել"
14185
- },
14186
- "panels/timeline/components/insights/DocumentLatency.ts | passingRedirects": {
14187
- "message": "Խուսափում է վերաուղղորդումներից"
14188
- },
14189
- "panels/timeline/components/insights/DocumentLatency.ts | passingServerResponseTime": {
14190
- "message": "Սերվերն արագ է արձագանքում"
14191
- },
14192
- "panels/timeline/components/insights/DocumentLatency.ts | passingTextCompression": {
14193
- "message": "Կիրառում է տեքստի սեղմում"
14194
- },
14195
- "panels/timeline/components/insights/DocumentLatency.ts | redirectsLabel": {
14196
- "message": "Վերաուղղորդումներ"
14197
- },
14198
- "panels/timeline/components/insights/DocumentLatency.ts | serverResponseTimeLabel": {
14199
- "message": "Սերվերի արձագանքման ժամանակը"
14200
- },
14201
- "panels/timeline/components/insights/DocumentLatency.ts | successAriaLabel": {
14202
- "message": "Վիճակագրության ստուգումն անցած է․ {PH1}"
14203
- },
14204
- "panels/timeline/components/insights/DocumentLatency.ts | uncompressedDownload": {
14205
- "message": "Չսեղմված ֆայլի ներբեռնում"
14206
- },
14207
- "panels/timeline/components/insights/FontDisplay.ts | fontColumn": {
14208
- "message": "Տառատեսակ"
14209
- },
14210
- "panels/timeline/components/insights/FontDisplay.ts | wastedTimeColumn": {
14211
- "message": "Վատնված ժամանակը"
14212
- },
14213
- "panels/timeline/components/insights/InteractionToNextPaint.ts | duration": {
14214
- "message": "Տևողություն"
14215
- },
14216
- "panels/timeline/components/insights/InteractionToNextPaint.ts | inputDelay": {
14217
- "message": "Ներածման հետաձգում"
14218
- },
14219
- "panels/timeline/components/insights/InteractionToNextPaint.ts | phase": {
14220
- "message": "Փուլ"
14221
- },
14222
- "panels/timeline/components/insights/InteractionToNextPaint.ts | presentationDelay": {
14223
- "message": "Ներկայացման հետաձգում"
14224
- },
14225
- "panels/timeline/components/insights/InteractionToNextPaint.ts | processingDuration": {
14226
- "message": "Մշակման տևողությունը"
14227
- },
14228
- "panels/timeline/components/insights/LCPDiscovery.ts | failedAriaLabel": {
14229
- "message": "Չհաջողվեց ստուգել վիճակագրությունը․ {PH1}"
14230
- },
14231
- "panels/timeline/components/insights/LCPDiscovery.ts | fetchPriorityApplied": {
14232
- "message": "Կիրառվեց fetchpriority=high հատկությունը"
14570
+ "panels/timeline/components/SidebarSingleInsightSet.ts | dismissTitle": {
14571
+ "message": "Dismiss"
14233
14572
  },
14234
- "panels/timeline/components/insights/LCPDiscovery.ts | lazyLoadNotApplied": {
14235
- "message": "հետաձգված բեռնումը չի կիրառվել"
14573
+ "panels/timeline/components/SidebarSingleInsightSet.ts | fieldMismatchNotice": {
14574
+ "message": "There are many reasons why local and field metrics [may not match](https://web.dev/articles/lab-and-field-data-differences). Adjust [throttling settings and device emulation](https://developer.chrome.com/docs/devtools/device-mode) to analyze traces more similar to the average user's environment."
14236
14575
  },
14237
- "panels/timeline/components/insights/LCPDiscovery.ts | lcpLoadDelay": {
14238
- "message": "LCP պատկերը բեռնվել է մեկնարկի ամենավաղ կետից {PH1} հետո։"
14576
+ "panels/timeline/components/SidebarSingleInsightSet.ts | fieldMismatchTitle": {
14577
+ "message": "Field & local metrics mismatch"
14239
14578
  },
14240
- "panels/timeline/components/insights/LCPDiscovery.ts | requestDiscoverable": {
14241
- "message": "Հարցումը հայտնաբերելի է սկզբնական փաստաթղթում"
14579
+ "panels/timeline/components/SidebarSingleInsightSet.ts | fieldScoreLabel": {
14580
+ "message": "Field ({PH1})"
14242
14581
  },
14243
- "panels/timeline/components/insights/LCPDiscovery.ts | successAriaLabel": {
14244
- "message": "Վիճակագրության ստուգումն անցած է․ {PH1}"
14245
- },
14246
- "panels/timeline/components/insights/LCPPhases.ts | elementRenderDelay": {
14247
- "message": "Տարրի արտապատկերման հետաձգում"
14582
+ "panels/timeline/components/SidebarSingleInsightSet.ts | metricScore": {
14583
+ "message": "{PH1}․ {PH2}, գնահատական՝ {PH3}"
14248
14584
  },
14249
- "panels/timeline/components/insights/LCPPhases.ts | percentLCP": {
14250
- "message": "LCP-ի %-ը"
14585
+ "panels/timeline/components/SidebarSingleInsightSet.ts | metricScoreUnavailable": {
14586
+ "message": "{PH1}․ հասանելի չէ"
14251
14587
  },
14252
- "panels/timeline/components/insights/LCPPhases.ts | phase": {
14253
- "message": "Փուլ"
14588
+ "panels/timeline/components/SidebarSingleInsightSet.ts | originOption": {
14589
+ "message": "Աղբյուր"
14254
14590
  },
14255
- "panels/timeline/components/insights/LCPPhases.ts | resourceLoadDelay": {
14256
- "message": "Ռեսուրսի բեռնման հետաձգում"
14591
+ "panels/timeline/components/SidebarSingleInsightSet.ts | passedInsights": {
14592
+ "message": "Ստուգված տվյալներ ({PH1})"
14257
14593
  },
14258
- "panels/timeline/components/insights/LCPPhases.ts | resourceLoadDuration": {
14259
- "message": "Ռեսուրսների բեռնման տևողությունը"
14594
+ "panels/timeline/components/SidebarSingleInsightSet.ts | urlOption": {
14595
+ "message": "URL"
14260
14596
  },
14261
- "panels/timeline/components/insights/LCPPhases.ts | timeToFirstByte": {
14262
- "message": "Time to first byte"
14597
+ "panels/timeline/components/TimelineSummary.ts | rangeSS": {
14598
+ "message": "Միջակայք՝ {PH1} {PH2}"
14263
14599
  },
14264
- "panels/timeline/components/insights/RenderBlocking.ts | duration": {
14265
- "message": "Տևողություն"
14600
+ "panels/timeline/components/TimelineSummary.ts | total": {
14601
+ "message": "Ընդամենը"
14266
14602
  },
14267
- "panels/timeline/components/insights/RenderBlocking.ts | renderBlockingRequest": {
14268
- "message": "Հարցում"
14603
+ "panels/timeline/components/Utils.ts | fms": {
14604
+ "message": "{PH1}[մվ]()"
14269
14605
  },
14270
- "panels/timeline/components/insights/SlowCSSSelector.ts | elapsed": {
14271
- "message": "Անցած ժամանակը"
14606
+ "panels/timeline/components/Utils.ts | fs": {
14607
+ "message": "{PH1}[վ]()"
14272
14608
  },
14273
- "panels/timeline/components/insights/SlowCSSSelector.ts | matchAttempts": {
14274
- "message": "Համընկնումներ գտնելու փորձեր"
14609
+ "panels/timeline/components/insights/BaseInsightComponent.ts | estimatedSavings": {
14610
+ "message": "Մոտավոր խնայողություններ՝ {PH1}"
14275
14611
  },
14276
- "panels/timeline/components/insights/SlowCSSSelector.ts | matchCount": {
14277
- "message": "Համընկնումների թիվը"
14612
+ "panels/timeline/components/insights/BaseInsightComponent.ts | estimatedSavingsTimingAndBytes": {
14613
+ "message": "Մոտավոր խնայողություններ՝ {PH1} և {PH2}"
14278
14614
  },
14279
- "panels/timeline/components/insights/SlowCSSSelector.ts | topSelectors": {
14280
- "message": "Հիմնական ընտրիչներ"
14615
+ "panels/timeline/components/insights/BaseInsightComponent.ts | viewDetails": {
14616
+ "message": "Դիտել այլ տեղեկություններ «{PH1}» ցուցանիշի մասին"
14281
14617
  },
14282
- "panels/timeline/components/insights/SlowCSSSelector.ts | total": {
14283
- "message": "Ընդամենը"
14618
+ "panels/timeline/overlays/OverlaysImpl.ts | fieldMetricMarkerField": {
14619
+ "message": "{PH1} – Դաշտ ({PH2})"
14284
14620
  },
14285
- "panels/timeline/components/insights/ThirdParties.ts | columnBlockingTime": {
14286
- "message": "Արգելափակման ժամանակը"
14621
+ "panels/timeline/overlays/OverlaysImpl.ts | fieldMetricMarkerLocal": {
14622
+ "message": "{PH1} – Լոկալ"
14287
14623
  },
14288
- "panels/timeline/components/insights/ThirdParties.ts | columnThirdParty": {
14289
- "message": "Երրորդ կողմ"
14624
+ "panels/timeline/overlays/OverlaysImpl.ts | originOption": {
14625
+ "message": "Աղբյուր"
14290
14626
  },
14291
- "panels/timeline/components/insights/ThirdParties.ts | columnTransferSize": {
14292
- "message": "Տեղափոխված տվյալների ծավալը"
14627
+ "panels/timeline/overlays/OverlaysImpl.ts | urlOption": {
14628
+ "message": "URL"
14293
14629
  },
14294
14630
  "panels/timeline/overlays/components/EntriesLinkOverlay.ts | diagram": {
14295
14631
  "message": "Կապեր գրառումների միջև"
@@ -14351,6 +14687,9 @@
14351
14687
  "panels/timeline/utils/EntryName.ts | frame": {
14352
14688
  "message": "Շրջանակ"
14353
14689
  },
14690
+ "panels/timeline/utils/EntryName.ts | layoutShift": {
14691
+ "message": "Դասավորության շեղում"
14692
+ },
14354
14693
  "panels/timeline/utils/EntryName.ts | wsConnectionClosed": {
14355
14694
  "message": "WebSocket-ը փակված է"
14356
14695
  },
@@ -14411,6 +14750,9 @@
14411
14750
  "panels/timeline/utils/EntryStyles.ts | computeIntersections": {
14412
14751
  "message": "Փոխհատումների հաշվարկում"
14413
14752
  },
14753
+ "panels/timeline/utils/EntryStyles.ts | consoleTaskRun": {
14754
+ "message": "Գործարկել առաջադրանքը վահանակի միջոցով"
14755
+ },
14414
14756
  "panels/timeline/utils/EntryStyles.ts | consoleTime": {
14415
14757
  "message": "Վահանակի ժամանակը"
14416
14758
  },
@@ -14481,7 +14823,7 @@
14481
14823
  "message": "Ոչ ակտիվ հետկանչի գործարկում"
14482
14824
  },
14483
14825
  "panels/timeline/utils/EntryStyles.ts | firstContentfulPaint": {
14484
- "message": "Բովանդակության առաջին գունավորում"
14826
+ "message": "Բովանդակության առաջին արտապատկերում"
14485
14827
  },
14486
14828
  "panels/timeline/utils/EntryStyles.ts | firstPaint": {
14487
14829
  "message": "Առաջին գունավորում"
@@ -14711,6 +15053,18 @@
14711
15053
  "panels/timeline/utils/EntryStyles.ts | xhrReadyStateChange": {
14712
15054
  "message": "XHR readyState-ի փոփոխություն"
14713
15055
  },
15056
+ "panels/timeline/utils/IgnoreList.ts | skip3rdPartyScripts": {
15057
+ "message": "Ներառված է անտեսվածների ցանկում՝ սկզբնական կոդի քարտեզում"
15058
+ },
15059
+ "panels/timeline/utils/IgnoreList.ts | skipAnonymousScripts": {
15060
+ "message": "Անանուն սկրիպտ"
15061
+ },
15062
+ "panels/timeline/utils/IgnoreList.ts | skipContentScripts": {
15063
+ "message": "Բովանդակության մշակման սկրիպտ"
15064
+ },
15065
+ "panels/timeline/utils/IgnoreList.ts | unknown": {
15066
+ "message": "Անհայտ"
15067
+ },
14714
15068
  "panels/utils/utils.ts | requestContentHeadersOverridden": {
14715
15069
  "message": "Հարցումների բովանդակությունը և վերնագրերը փոխարինվել են"
14716
15070
  },
@@ -14861,11 +15215,8 @@
14861
15215
  "panels/webauthn/webauthn-meta.ts | webauthn": {
14862
15216
  "message": "WebAuthn"
14863
15217
  },
14864
- "panels/whats_new/ReleaseNoteView.ts | close": {
14865
- "message": "Փակել"
14866
- },
14867
- "panels/whats_new/ReleaseNoteView.ts | learnMore": {
14868
- "message": "Իմանալ ավելին"
15218
+ "panels/whats_new/ReleaseNoteView.ts | seeFeatures": {
15219
+ "message": "Տեսնել բոլոր նոր գործառույթները"
14869
15220
  },
14870
15221
  "panels/whats_new/whats_new-meta.ts | bug": {
14871
15222
  "message": "վրիպակ"
@@ -14888,40 +15239,7 @@
14888
15239
  "panels/whats_new/whats_new-meta.ts | whatsNew": {
14889
15240
  "message": "Ինչ նոր բան կա"
14890
15241
  },
14891
- "ui/components/data_grid/DataGrid.ts | enterToSort": {
14892
- "message": "Սյունակի տեսակավորումը՝ {PH1}։ Սեղմեք Enter՝ տեսակավորման զտիչ կիրառելու համար։"
14893
- },
14894
- "ui/components/data_grid/DataGrid.ts | headerOptions": {
14895
- "message": "Գլխագրի պարամետրեր"
14896
- },
14897
- "ui/components/data_grid/DataGrid.ts | resetColumns": {
14898
- "message": "Վերականգնել սյունակները"
14899
- },
14900
- "ui/components/data_grid/DataGrid.ts | sortAsc": {
14901
- "message": "աճման կարգով"
14902
- },
14903
- "ui/components/data_grid/DataGrid.ts | sortBy": {
14904
- "message": "Տեսակավորել ըստ"
14905
- },
14906
- "ui/components/data_grid/DataGrid.ts | sortDesc": {
14907
- "message": "նվազման կարգով"
14908
- },
14909
- "ui/components/data_grid/DataGrid.ts | sortNone": {
14910
- "message": "նշված չէ"
14911
- },
14912
- "ui/components/data_grid/DataGridController.ts | sortInAscendingOrder": {
14913
- "message": "«{PH1}» սյունակի տվյալները տեսակավորված են աճման կարգով"
14914
- },
14915
- "ui/components/data_grid/DataGridController.ts | sortInDescendingOrder": {
14916
- "message": "«{PH1}» սյունակի տվյալները տեսակավորված են նվազման կարգով"
14917
- },
14918
- "ui/components/data_grid/DataGridController.ts | sortingCanceled": {
14919
- "message": "«{PH1}» սյունակում տվյալների տեսակավորումը չեղարկվեց"
14920
- },
14921
- "ui/components/dialogs/IconDialog.ts | close": {
14922
- "message": "Փակել"
14923
- },
14924
- "ui/components/dialogs/ShortcutDialog.ts | close": {
15242
+ "ui/components/dialogs/Dialog.ts | close": {
14925
15243
  "message": "Փակել"
14926
15244
  },
14927
15245
  "ui/components/dialogs/ShortcutDialog.ts | dialogTitle": {
@@ -15161,6 +15479,9 @@
15161
15479
  "ui/legacy/InspectorView.ts | panels": {
15162
15480
  "message": "Վահանակներ"
15163
15481
  },
15482
+ "ui/legacy/InspectorView.ts | reloadDebuggedTab": {
15483
+ "message": "Նորից բեռնել"
15484
+ },
15164
15485
  "ui/legacy/InspectorView.ts | reloadDevtools": {
15165
15486
  "message": "Կրկին բեռնել մշակողի գործիքները"
15166
15487
  },
@@ -15302,6 +15623,12 @@
15302
15623
  "ui/legacy/TabbedPane.ts | moreTabs": {
15303
15624
  "message": "Այլ ներդիրներ"
15304
15625
  },
15626
+ "ui/legacy/TabbedPane.ts | moveTabLeft": {
15627
+ "message": "Տեղափոխել ձախ"
15628
+ },
15629
+ "ui/legacy/TabbedPane.ts | moveTabRight": {
15630
+ "message": "Տեղափոխել աջ"
15631
+ },
15305
15632
  "ui/legacy/TabbedPane.ts | previewFeature": {
15306
15633
  "message": "Փորձնական գործառույթ"
15307
15634
  },
@@ -15527,6 +15854,9 @@
15527
15854
  "ui/legacy/components/data_grid/DataGrid.ts | emptyRowCreated": {
15528
15855
  "message": "Ստեղծվել է աղյուսակի դատարկ տող։ Փոփոխելու համար կրկնակի սեղմեք կամ օգտագործեք տեղային ընտրացանկը։"
15529
15856
  },
15857
+ "ui/legacy/components/data_grid/DataGrid.ts | enterToSort": {
15858
+ "message": "Սյունակի տեսակավորումը՝ {PH1}։ Սեղմեք Enter՝ տեսակավորման զտիչ կիրառելու համար։"
15859
+ },
15530
15860
  "ui/legacy/components/data_grid/DataGrid.ts | expanded": {
15531
15861
  "message": "ծավալվել է"
15532
15862
  },
@@ -15554,11 +15884,8 @@
15554
15884
  "ui/legacy/components/data_grid/DataGrid.ts | sortByString": {
15555
15885
  "message": "Տեսակավորել ըստ"
15556
15886
  },
15557
- "ui/legacy/components/data_grid/DataGridWithPreview.ts | numberEntries": {
15558
- "message": "Աղյուսակում ցուցադրվող գրառումների թիվը՝ {PH1}"
15559
- },
15560
- "ui/legacy/components/data_grid/DataGridWithPreview.ts | selectAValueToPreview": {
15561
- "message": "Ընտրեք արժեք՝ դիտելու համար"
15887
+ "ui/legacy/components/data_grid/DataGrid.ts | sortableColumn": {
15888
+ "message": "Sortable column. Press enter to apply sorting filter"
15562
15889
  },
15563
15890
  "ui/legacy/components/data_grid/ShowMoreDataGridNode.ts | showAllD": {
15564
15891
  "message": "Ցուցադրել բոլոր {PH1}-ը"
@@ -15741,7 +16068,7 @@
15741
16068
  "message": "Ջնջել ծանոթագրությունները"
15742
16069
  },
15743
16070
  "ui/legacy/components/perf_ui/FlameChart.ts | enterTrackConfigurationMode": {
15744
- "message": "Կազմաձևել տարբերակների տեսակները…"
16071
+ "message": "Կազմաձևել տարբերակների տեսակները"
15745
16072
  },
15746
16073
  "ui/legacy/components/perf_ui/FlameChart.ts | eventSelectedFromGroup": {
15747
16074
  "message": "Ընտրվել է {PH1} իրադարձությունը {PH2} խմբում։ Սեղմեք Enter՝ այս իրադարձությունն ընդգծելու համար։"
@@ -15797,11 +16124,14 @@
15797
16124
  "ui/legacy/components/perf_ui/PieChart.ts | total": {
15798
16125
  "message": "Ընդամենը"
15799
16126
  },
16127
+ "ui/legacy/components/perf_ui/perf_ui-meta.ts | classic": {
16128
+ "message": "Դասական"
16129
+ },
15800
16130
  "ui/legacy/components/perf_ui/perf_ui-meta.ts | collectGarbage": {
15801
16131
  "message": "Հավաքել աղբը"
15802
16132
  },
15803
- "ui/legacy/components/perf_ui/perf_ui-meta.ts | flamechartMouseWheelAction": {
15804
- "message": "Flamechart մկնիկի ոլորակի գործողությունը՝"
16133
+ "ui/legacy/components/perf_ui/perf_ui-meta.ts | flamechartSelectedNavigation": {
16134
+ "message": "Flame Chart գծապատկերով նավիգացիա՝"
15805
16135
  },
15806
16136
  "ui/legacy/components/perf_ui/perf_ui-meta.ts | hideLiveMemoryAllocation": {
15807
16137
  "message": "Թաքցնել իրական ժամանակում հիշողության բաշխման վերաբերյալ ծանոթագրությունները"
@@ -15809,15 +16139,12 @@
15809
16139
  "ui/legacy/components/perf_ui/perf_ui-meta.ts | liveMemoryAllocationAnnotations": {
15810
16140
  "message": "Իրական ժամանակում հիշողության բաշխման վերաբերյալ ծանոթագրություններ"
15811
16141
  },
15812
- "ui/legacy/components/perf_ui/perf_ui-meta.ts | scroll": {
15813
- "message": "Ոլորել"
16142
+ "ui/legacy/components/perf_ui/perf_ui-meta.ts | modern": {
16143
+ "message": "Ժամանակակից"
15814
16144
  },
15815
16145
  "ui/legacy/components/perf_ui/perf_ui-meta.ts | showLiveMemoryAllocation": {
15816
16146
  "message": "Ցուցադրել իրական ժամանակում հիշողության բաշխման վերաբերյալ ծանոթագրությունները"
15817
16147
  },
15818
- "ui/legacy/components/perf_ui/perf_ui-meta.ts | zoom": {
15819
- "message": "Մասշտաբ"
15820
- },
15821
16148
  "ui/legacy/components/quick_open/CommandMenu.ts | command": {
15822
16149
  "message": "Հրահանգ"
15823
16150
  },
@@ -15833,6 +16160,9 @@
15833
16160
  "ui/legacy/components/quick_open/CommandMenu.ts | run": {
15834
16161
  "message": "Գործարկել"
15835
16162
  },
16163
+ "ui/legacy/components/quick_open/CommandMenu.ts | runCommand": {
16164
+ "message": "Կատարել հրամանը"
16165
+ },
15836
16166
  "ui/legacy/components/quick_open/FilteredListWidget.ts | noResultsFound": {
15837
16167
  "message": "Ոչինչ չի գտնվել"
15838
16168
  },
@@ -15890,8 +16220,11 @@
15890
16220
  "ui/legacy/components/source_frame/JSONView.ts | find": {
15891
16221
  "message": "Գտնել"
15892
16222
  },
16223
+ "ui/legacy/components/source_frame/PreviewFactory.ts | failedToLoadData": {
16224
+ "message": "Failed to load data"
16225
+ },
15893
16226
  "ui/legacy/components/source_frame/PreviewFactory.ts | nothingToPreview": {
15894
- "message": "Ոչինչ չկա ցուցադրելու համար"
16227
+ "message": "Nothing to preview"
15895
16228
  },
15896
16229
  "ui/legacy/components/source_frame/ResourceSourceFrame.ts | find": {
15897
16230
  "message": "Գտնել"
@@ -16027,8 +16360,5 @@
16027
16360
  },
16028
16361
  "ui/legacy/components/utils/Linkifier.ts | unknown": {
16029
16362
  "message": "(անհայտ)"
16030
- },
16031
- "ui/legacy/components/utils/TargetDetachedDialog.ts | websocketDisconnected": {
16032
- "message": "WebSocket-ն անջատված է"
16033
16363
  }
16034
16364
  }