chrome-devtools-frontend 1.0.1362775 → 1.0.1376716

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 (1655) hide show
  1. package/.eslintrc.js +1 -0
  2. package/.stylelintrc.json +2 -1
  3. package/.vscode/extensions.json +4 -4
  4. package/config/gni/devtools_grd_files.gni +43 -9
  5. package/config/gni/devtools_image_files.gni +5 -1
  6. package/docs/README.md +1 -5
  7. package/docs/checklist/javascript.md +45 -8
  8. package/docs/contributing/design.md +1 -1
  9. package/docs/contributing/issues.md +15 -0
  10. package/docs/contributing/settings-experiments-features.md +1 -1
  11. package/docs/cookbook/README.md +12 -0
  12. package/docs/cookbook/create_new_issues.md +91 -0
  13. package/docs/cookbook/dependencies.md +103 -0
  14. package/docs/cookbook/localization.md +320 -0
  15. package/docs/cookbook/navbar.md +8 -0
  16. package/docs/cookbook/release_management.md +60 -0
  17. package/docs/cookbook/uma_metrics.md +121 -0
  18. package/docs/dependencies.md +1 -100
  19. package/docs/l10n.md +1 -295
  20. package/docs/release_management.md +1 -53
  21. package/extensions/cxx_debugging/e2e/standalone/MemoryInspector_test.ts +1 -1
  22. package/extensions/cxx_debugging/e2e/tsconfig.json +1 -0
  23. package/extensions/cxx_debugging/src/ExtensionOptions.ts +6 -8
  24. package/extensions/cxx_debugging/tests/CreditsItem_test.ts +4 -4
  25. package/extensions/cxx_debugging/third_party/llvm/README.chromium +1 -1
  26. package/front_end/.eslintrc.js +0 -6
  27. package/front_end/Images/src/button-magic.svg +3 -0
  28. package/front_end/Images/src/center-focus-weak.svg +1 -0
  29. package/front_end/Images/src/history.svg +3 -0
  30. package/front_end/Images/src/home.svg +1 -0
  31. package/front_end/Images/src/performance-panel-delete-annotation.svg +32 -0
  32. package/front_end/Images/src/performance-panel-diagram.svg +19 -14
  33. package/front_end/Images/src/performance-panel-entry-label.svg +9 -16
  34. package/front_end/Images/src/performance-panel-time-range.svg +2 -8
  35. package/front_end/core/common/AppProvider.ts +1 -1
  36. package/front_end/core/common/Color.ts +10 -0
  37. package/front_end/core/common/Object.ts +2 -7
  38. package/front_end/core/common/ResourceType.test.ts +26 -26
  39. package/front_end/core/common/ResourceType.ts +21 -12
  40. package/front_end/core/common/Revealer.ts +5 -0
  41. package/front_end/core/common/SettingRegistration.ts +1 -1
  42. package/front_end/core/common/Settings.ts +6 -2
  43. package/front_end/core/host/AidaClient.ts +65 -1
  44. package/front_end/core/host/InspectorFrontendHost.ts +2 -2
  45. package/front_end/core/host/InspectorFrontendHostAPI.ts +8 -1
  46. package/front_end/core/host/ResourceLoader.ts +1 -1
  47. package/front_end/core/host/UserMetrics.ts +28 -13
  48. package/front_end/core/i18n/locales/af.json +598 -109
  49. package/front_end/core/i18n/locales/am.json +607 -118
  50. package/front_end/core/i18n/locales/ar.json +888 -399
  51. package/front_end/core/i18n/locales/as.json +603 -114
  52. package/front_end/core/i18n/locales/az.json +606 -117
  53. package/front_end/core/i18n/locales/be.json +599 -110
  54. package/front_end/core/i18n/locales/bg.json +598 -109
  55. package/front_end/core/i18n/locales/bn.json +609 -120
  56. package/front_end/core/i18n/locales/bs.json +607 -118
  57. package/front_end/core/i18n/locales/ca.json +601 -112
  58. package/front_end/core/i18n/locales/cs.json +605 -116
  59. package/front_end/core/i18n/locales/cy.json +603 -114
  60. package/front_end/core/i18n/locales/da.json +599 -110
  61. package/front_end/core/i18n/locales/de.json +604 -115
  62. package/front_end/core/i18n/locales/el.json +596 -107
  63. package/front_end/core/i18n/locales/en-GB.json +599 -110
  64. package/front_end/core/i18n/locales/es-419.json +600 -111
  65. package/front_end/core/i18n/locales/es.json +602 -113
  66. package/front_end/core/i18n/locales/et.json +601 -112
  67. package/front_end/core/i18n/locales/eu.json +605 -116
  68. package/front_end/core/i18n/locales/fa.json +609 -120
  69. package/front_end/core/i18n/locales/fi.json +598 -109
  70. package/front_end/core/i18n/locales/fil.json +605 -116
  71. package/front_end/core/i18n/locales/fr-CA.json +602 -113
  72. package/front_end/core/i18n/locales/fr.json +600 -111
  73. package/front_end/core/i18n/locales/gl.json +595 -106
  74. package/front_end/core/i18n/locales/gu.json +605 -116
  75. package/front_end/core/i18n/locales/he.json +603 -114
  76. package/front_end/core/i18n/locales/hi.json +600 -111
  77. package/front_end/core/i18n/locales/hr.json +600 -111
  78. package/front_end/core/i18n/locales/hu.json +600 -111
  79. package/front_end/core/i18n/locales/hy.json +599 -110
  80. package/front_end/core/i18n/locales/id.json +603 -114
  81. package/front_end/core/i18n/locales/is.json +598 -109
  82. package/front_end/core/i18n/locales/it.json +602 -113
  83. package/front_end/core/i18n/locales/ja.json +596 -107
  84. package/front_end/core/i18n/locales/ka.json +597 -108
  85. package/front_end/core/i18n/locales/kk.json +884 -395
  86. package/front_end/core/i18n/locales/km.json +605 -116
  87. package/front_end/core/i18n/locales/kn.json +606 -117
  88. package/front_end/core/i18n/locales/ko.json +591 -102
  89. package/front_end/core/i18n/locales/ky.json +599 -110
  90. package/front_end/core/i18n/locales/lo.json +608 -119
  91. package/front_end/core/i18n/locales/lt.json +597 -108
  92. package/front_end/core/i18n/locales/lv.json +606 -117
  93. package/front_end/core/i18n/locales/mk.json +885 -396
  94. package/front_end/core/i18n/locales/ml.json +601 -112
  95. package/front_end/core/i18n/locales/mn.json +599 -110
  96. package/front_end/core/i18n/locales/mr.json +601 -112
  97. package/front_end/core/i18n/locales/ms.json +602 -113
  98. package/front_end/core/i18n/locales/my.json +604 -115
  99. package/front_end/core/i18n/locales/ne.json +609 -120
  100. package/front_end/core/i18n/locales/nl.json +597 -108
  101. package/front_end/core/i18n/locales/no.json +601 -112
  102. package/front_end/core/i18n/locales/or.json +601 -112
  103. package/front_end/core/i18n/locales/pa.json +600 -111
  104. package/front_end/core/i18n/locales/pl.json +601 -112
  105. package/front_end/core/i18n/locales/pt-PT.json +600 -111
  106. package/front_end/core/i18n/locales/pt.json +596 -107
  107. package/front_end/core/i18n/locales/ro.json +601 -112
  108. package/front_end/core/i18n/locales/ru.json +609 -120
  109. package/front_end/core/i18n/locales/si.json +603 -114
  110. package/front_end/core/i18n/locales/sk.json +599 -110
  111. package/front_end/core/i18n/locales/sl.json +601 -112
  112. package/front_end/core/i18n/locales/sq.json +602 -113
  113. package/front_end/core/i18n/locales/sr-Latn.json +598 -109
  114. package/front_end/core/i18n/locales/sr.json +598 -109
  115. package/front_end/core/i18n/locales/sv.json +600 -111
  116. package/front_end/core/i18n/locales/sw.json +606 -117
  117. package/front_end/core/i18n/locales/ta.json +892 -403
  118. package/front_end/core/i18n/locales/te.json +604 -115
  119. package/front_end/core/i18n/locales/th.json +597 -108
  120. package/front_end/core/i18n/locales/tr.json +601 -112
  121. package/front_end/core/i18n/locales/uk.json +598 -109
  122. package/front_end/core/i18n/locales/ur.json +604 -115
  123. package/front_end/core/i18n/locales/uz.json +599 -110
  124. package/front_end/core/i18n/locales/vi.json +602 -113
  125. package/front_end/core/i18n/locales/zh-HK.json +599 -110
  126. package/front_end/core/i18n/locales/zh-TW.json +595 -106
  127. package/front_end/core/i18n/locales/zh.json +601 -112
  128. package/front_end/core/i18n/locales/zu.json +607 -118
  129. package/front_end/core/i18n/time-utilities.ts +7 -1
  130. package/front_end/core/platform/ArrayUtilities.ts +1 -0
  131. package/front_end/core/platform/DevToolsPath.ts +1 -1
  132. package/front_end/core/platform/Timing.ts +1 -1
  133. package/front_end/core/platform/UIString.ts +1 -1
  134. package/front_end/core/platform/UserVisibleError.ts +1 -1
  135. package/front_end/core/root/Runtime.ts +26 -9
  136. package/front_end/core/sdk/AccessibilityModel.ts +3 -4
  137. package/front_end/{panels/animation → core/sdk}/AnimationModel.test.ts +85 -6
  138. package/front_end/{panels/animation → core/sdk}/AnimationModel.ts +303 -37
  139. package/front_end/core/sdk/CPUProfilerModel.ts +3 -4
  140. package/front_end/core/sdk/CSSContainerQuery.ts +7 -5
  141. package/front_end/core/sdk/CSSLayer.ts +2 -2
  142. package/front_end/core/sdk/CSSMatchedStyles.test.ts +5 -0
  143. package/front_end/core/sdk/CSSMatchedStyles.ts +23 -12
  144. package/front_end/core/sdk/CSSMedia.ts +2 -2
  145. package/front_end/core/sdk/CSSMetadata.ts +27 -0
  146. package/front_end/core/sdk/CSSModel.ts +1 -0
  147. package/front_end/core/sdk/CSSProperty.ts +2 -2
  148. package/front_end/core/sdk/CSSQuery.ts +2 -2
  149. package/front_end/core/sdk/CSSRule.ts +2 -2
  150. package/front_end/core/sdk/CSSScope.ts +2 -2
  151. package/front_end/core/sdk/CSSStyleDeclaration.test.ts +10 -0
  152. package/front_end/core/sdk/CSSStyleDeclaration.ts +4 -4
  153. package/front_end/core/sdk/CSSStyleSheetHeader.ts +4 -4
  154. package/front_end/core/sdk/CSSSupports.ts +2 -2
  155. package/front_end/core/sdk/CookieModel.ts +1 -1
  156. package/front_end/core/sdk/DOMDebuggerModel.ts +1 -1
  157. package/front_end/core/sdk/DOMModel.ts +3 -3
  158. package/front_end/core/sdk/DebuggerModel.test.ts +2 -0
  159. package/front_end/core/sdk/DebuggerModel.ts +9 -3
  160. package/front_end/core/sdk/EmulationModel.ts +32 -0
  161. package/front_end/core/sdk/EnhancedTracesParser.test.ts +5 -9
  162. package/front_end/core/sdk/EnhancedTracesParser.ts +5 -10
  163. package/front_end/core/sdk/EventBreakpointsModel.ts +1 -2
  164. package/front_end/core/sdk/FrameAssociated.ts +1 -1
  165. package/front_end/core/sdk/FrameManager.ts +9 -7
  166. package/front_end/core/sdk/HeapProfilerModel.ts +3 -4
  167. package/front_end/core/sdk/IsolateManager.ts +2 -3
  168. package/front_end/core/sdk/LayerTreeBase.ts +2 -2
  169. package/front_end/core/sdk/NetworkManager.ts +1 -1
  170. package/front_end/core/sdk/OverlayModel.ts +2 -2
  171. package/front_end/core/sdk/OverlayPersistentHighlighter.ts +1 -1
  172. package/front_end/core/sdk/PageLoad.ts +1 -1
  173. package/front_end/core/sdk/PageResourceLoader.ts +1 -1
  174. package/front_end/core/sdk/RehydratingConnection.test.ts +190 -0
  175. package/front_end/core/sdk/RehydratingConnection.ts +310 -0
  176. package/front_end/core/sdk/RehydratingObject.ts +26 -2
  177. package/front_end/core/sdk/RemoteObject.ts +3 -3
  178. package/front_end/core/sdk/Resource.ts +2 -2
  179. package/front_end/core/sdk/ResourceTreeModel.ts +1 -1
  180. package/front_end/core/sdk/RuntimeModel.ts +31 -0
  181. package/front_end/core/sdk/SDKModel.ts +1 -1
  182. package/front_end/core/sdk/Script.ts +6 -6
  183. package/front_end/core/sdk/ServiceWorkerCacheModel.ts +5 -7
  184. package/front_end/core/sdk/SourceMap.ts +1 -1
  185. package/front_end/core/sdk/SourceMapManager.ts +1 -1
  186. package/front_end/core/sdk/SourceMapScopeChainEntry.ts +2 -2
  187. package/front_end/core/sdk/SourceMapScopesInfo.ts +2 -2
  188. package/front_end/core/sdk/Target.ts +3 -2
  189. package/front_end/core/sdk/TargetManager.ts +4 -1
  190. package/front_end/core/sdk/TraceObject.ts +8 -0
  191. package/front_end/core/sdk/WebAuthnModel.ts +20 -0
  192. package/front_end/core/sdk/sdk-meta.ts +7 -0
  193. package/front_end/core/sdk/sdk.ts +2 -0
  194. package/front_end/devtools_compatibility.js +3 -4
  195. package/front_end/entrypoints/formatter_worker/CSSFormatter.ts +1 -1
  196. package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +1 -1
  197. package/front_end/entrypoints/formatter_worker/IdentityFormatter.ts +1 -1
  198. package/front_end/entrypoints/formatter_worker/JSONFormatter.ts +1 -1
  199. package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +1 -1
  200. package/front_end/entrypoints/heap_snapshot_worker/AllocationProfile.ts +1 -1
  201. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +107 -86
  202. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshotLoader.ts +1 -1
  203. package/front_end/entrypoints/main/MainImpl.ts +21 -1
  204. package/front_end/generated/InspectorBackendCommands.js +15 -12
  205. package/front_end/generated/SupportedCSSProperties.js +35 -15
  206. package/front_end/generated/protocol-mapping.d.ts +14 -3
  207. package/front_end/generated/protocol-proxy-api.d.ts +16 -3
  208. package/front_end/generated/protocol.ts +63 -3
  209. package/front_end/legacy_test_runner/network_test_runner/network_test_runner.js +1 -0
  210. package/front_end/legacy_test_runner/sdk_test_runner/sdk_test_runner.js +4 -2
  211. package/front_end/models/bindings/CSSWorkspaceBinding.ts +2 -2
  212. package/front_end/models/bindings/CompilerScriptMapping.ts +1 -2
  213. package/front_end/models/bindings/DebuggerLanguagePlugins.test.ts +1 -1
  214. package/front_end/models/bindings/DebuggerLanguagePlugins.ts +2 -2
  215. package/front_end/models/bindings/DebuggerWorkspaceBinding.ts +1 -1
  216. package/front_end/models/bindings/DefaultScriptMapping.ts +1 -1
  217. package/front_end/models/bindings/IgnoreListManager.test.ts +49 -12
  218. package/front_end/models/bindings/IgnoreListManager.ts +79 -5
  219. package/front_end/models/bindings/ResourceMapping.ts +1 -1
  220. package/front_end/models/bindings/StylesSourceMapping.ts +11 -6
  221. package/front_end/models/breakpoints/BreakpointManager.test.ts +1 -1
  222. package/front_end/models/extensions/ExtensionPanel.ts +1 -1
  223. package/front_end/models/extensions/ExtensionServer.test.ts +1 -1
  224. package/front_end/models/extensions/ExtensionServer.ts +1 -1
  225. package/front_end/models/extensions/ExtensionView.ts +1 -1
  226. package/front_end/models/extensions/LanguageExtensionEndpoint.ts +1 -1
  227. package/front_end/models/extensions/RecorderPluginManager.ts +1 -1
  228. package/front_end/models/har/HARFormat.ts +1 -0
  229. package/front_end/models/har/Importer.test.ts +16 -2
  230. package/front_end/models/har/Importer.ts +3 -3
  231. package/front_end/models/har/Log.test.ts +23 -0
  232. package/front_end/models/har/Log.ts +6 -4
  233. package/front_end/models/heap_snapshot_model/HeapSnapshotModel.ts +4 -2
  234. package/front_end/models/issues_manager/AttributionReportingIssue.ts +59 -19
  235. package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -2
  236. package/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts +1 -1
  237. package/front_end/models/issues_manager/CookieIssue.ts +12 -0
  238. package/front_end/models/issues_manager/CorsIssue.ts +1 -1
  239. package/front_end/models/issues_manager/HeavyAdIssue.ts +1 -1
  240. package/front_end/models/issues_manager/Issue.ts +1 -1
  241. package/front_end/models/issues_manager/IssueResolver.ts +2 -2
  242. package/front_end/models/issues_manager/IssuesManager.ts +1 -1
  243. package/front_end/models/issues_manager/LowTextContrastIssue.ts +1 -1
  244. package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
  245. package/front_end/models/issues_manager/PropertyRuleIssue.ts +1 -1
  246. package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
  247. package/front_end/models/issues_manager/RelatedIssue.ts +1 -1
  248. package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +3 -3
  249. package/front_end/models/issues_manager/SourceFrameIssuesManager.ts +1 -1
  250. package/front_end/models/issues_manager/StylesheetLoadingIssue.ts +1 -1
  251. package/front_end/models/issues_manager/descriptions/arInvalidInfoHeader.md +5 -0
  252. package/front_end/models/issues_manager/descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +5 -0
  253. package/front_end/models/issues_manager/descriptions/arNoRegisterOsSourceHeader.md +5 -0
  254. package/front_end/models/issues_manager/descriptions/arNoRegisterOsTriggerHeader.md +5 -0
  255. package/front_end/models/issues_manager/descriptions/arNoRegisterSourceHeader.md +5 -0
  256. package/front_end/models/issues_manager/descriptions/arNoRegisterTriggerHeader.md +5 -0
  257. package/front_end/models/issues_manager/descriptions/arNoWebOrOsSupport.md +4 -0
  258. package/front_end/models/issues_manager/descriptions/placeholderDescriptionForInvisibleIssues.md +3 -0
  259. package/front_end/models/javascript_metadata/NativeFunctions.js +132 -73
  260. package/front_end/models/live-metrics/LiveMetrics.ts +152 -48
  261. package/front_end/models/live-metrics/web-vitals-injected/OnEachInteraction.ts +24 -61
  262. package/front_end/models/live-metrics/web-vitals-injected/spec/spec.ts +50 -22
  263. package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +43 -5
  264. package/front_end/models/persistence/EditFileSystemView.ts +1 -1
  265. package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +2 -3
  266. package/front_end/models/persistence/IsolatedFileSystemManager.ts +2 -3
  267. package/front_end/models/persistence/WorkspaceSettingsTab.ts +2 -2
  268. package/front_end/models/text_utils/ContentProvider.ts +3 -3
  269. package/front_end/models/text_utils/StaticContentProvider.ts +1 -5
  270. package/front_end/models/text_utils/TextUtils.ts +1 -1
  271. package/front_end/models/text_utils/WasmDisassembly.ts +1 -1
  272. package/front_end/models/timeline_model/TimelineModelFilter.ts +2 -2
  273. package/front_end/models/timeline_model/TimelineProfileTree.test.ts +21 -21
  274. package/front_end/models/timeline_model/TimelineProfileTree.ts +1 -1
  275. package/front_end/models/trace/ModelImpl.test.ts +1 -1
  276. package/front_end/models/trace/ModelImpl.ts +10 -27
  277. package/front_end/models/trace/Processor.test.ts +16 -15
  278. package/front_end/models/trace/Processor.ts +38 -10
  279. package/front_end/models/trace/extras/FilmStrip.ts +2 -2
  280. package/front_end/models/trace/extras/ThirdParties.test.ts +117 -0
  281. package/front_end/models/trace/extras/ThirdParties.ts +207 -0
  282. package/front_end/models/trace/extras/extras.ts +1 -0
  283. package/front_end/models/trace/handlers/FramesHandler.ts +12 -5
  284. package/front_end/models/trace/handlers/InitiatorsHandler.test.ts +40 -0
  285. package/front_end/models/trace/handlers/InitiatorsHandler.ts +9 -0
  286. package/front_end/models/trace/handlers/LayoutShiftsHandler.test.ts +2 -2
  287. package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +27 -1
  288. package/front_end/models/trace/handlers/MetaHandler.ts +4 -0
  289. package/front_end/models/trace/handlers/NetworkRequestsHandler.ts +2 -2
  290. package/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +1 -1
  291. package/front_end/models/trace/handlers/RendererHandler.test.ts +5 -5
  292. package/front_end/models/trace/handlers/SamplesHandler.test.ts +2 -2
  293. package/front_end/models/trace/handlers/ScreenshotsHandler.test.ts +5 -4
  294. package/front_end/models/trace/handlers/ScreenshotsHandler.ts +7 -5
  295. package/front_end/models/trace/handlers/Threads.ts +2 -2
  296. package/front_end/models/trace/handlers/WarningsHandler.ts +1 -1
  297. package/front_end/models/trace/helpers/Network.ts +20 -2
  298. package/front_end/models/trace/helpers/SyntheticEvents.test.ts +1 -1
  299. package/front_end/models/trace/helpers/Timing.test.ts +29 -0
  300. package/front_end/models/trace/helpers/Timing.ts +18 -0
  301. package/front_end/models/trace/helpers/Trace.test.ts +34 -3
  302. package/front_end/models/trace/helpers/Trace.ts +12 -0
  303. package/front_end/models/trace/helpers/TreeHelpers.test.ts +70 -0
  304. package/front_end/models/trace/helpers/TreeHelpers.ts +170 -1
  305. package/front_end/models/trace/insights/Common.ts +1 -1
  306. package/front_end/models/trace/insights/CumulativeLayoutShift.test.ts +46 -2
  307. package/front_end/models/trace/insights/CumulativeLayoutShift.ts +164 -47
  308. package/front_end/models/trace/insights/DocumentLatency.test.ts +22 -11
  309. package/front_end/models/trace/insights/DocumentLatency.ts +9 -6
  310. package/front_end/models/trace/insights/FontDisplay.ts +5 -1
  311. package/front_end/models/trace/insights/InteractionToNextPaint.ts +4 -3
  312. package/front_end/models/trace/insights/LargestContentfulPaint.test.ts +9 -1
  313. package/front_end/models/trace/insights/LargestContentfulPaint.ts +26 -6
  314. package/front_end/models/trace/insights/RenderBlocking.test.ts +10 -16
  315. package/front_end/models/trace/insights/RenderBlocking.ts +6 -4
  316. package/front_end/models/trace/insights/SlowCSSSelector.ts +3 -1
  317. package/front_end/models/trace/insights/ThirdPartyWeb.ts +21 -178
  318. package/front_end/models/trace/insights/Viewport.ts +1 -0
  319. package/front_end/models/trace/insights/types.ts +14 -11
  320. package/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts +4 -4
  321. package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +9 -5
  322. package/front_end/models/trace/lantern/graph/BaseNode.ts +2 -2
  323. package/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +4 -3
  324. package/front_end/models/trace/lantern/simulation/Simulator.ts +1 -1
  325. package/front_end/models/trace/lantern/simulation/TCPConnection.ts +1 -1
  326. package/front_end/models/trace/lantern/testing/MetricTestUtils.ts +5 -1
  327. package/front_end/models/trace/root-causes/LayoutShift.ts +3 -20
  328. package/front_end/models/trace/types/Extensions.ts +3 -7
  329. package/front_end/models/trace/types/File.ts +2 -8
  330. package/front_end/models/trace/types/TraceEvents.ts +78 -6
  331. package/front_end/models/workspace/UISourceCode.test.ts +3 -3
  332. package/front_end/models/workspace/WorkspaceImpl.ts +1 -1
  333. package/front_end/panels/accessibility/AXBreadcrumbsPane.ts +1 -1
  334. package/front_end/panels/accessibility/AccessibilitySidebarView.ts +1 -1
  335. package/front_end/panels/animation/AnimationGroupPreviewUI.ts +3 -3
  336. package/front_end/panels/animation/AnimationTimeline.test.ts +15 -15
  337. package/front_end/panels/animation/AnimationTimeline.ts +85 -53
  338. package/front_end/panels/animation/AnimationUI.ts +5 -6
  339. package/front_end/panels/animation/animation-meta.ts +15 -0
  340. package/front_end/panels/animation/animation.ts +0 -4
  341. package/front_end/panels/application/ApplicationPanelSidebar.test.ts +106 -0
  342. package/front_end/panels/application/ApplicationPanelSidebar.ts +127 -20
  343. package/front_end/panels/application/ApplicationPanelTreeElement.ts +1 -1
  344. package/front_end/panels/application/BackForwardCacheTreeElement.ts +1 -1
  345. package/front_end/panels/application/BounceTrackingMitigationsTreeElement.ts +1 -1
  346. package/front_end/panels/application/DOMStorageItemsView.ts +4 -2
  347. package/front_end/panels/application/ExtensionStorageItemsView.test.ts +161 -0
  348. package/front_end/panels/application/ExtensionStorageItemsView.ts +241 -0
  349. package/front_end/panels/application/ExtensionStorageModel.test.ts +27 -0
  350. package/front_end/panels/application/ExtensionStorageModel.ts +66 -14
  351. package/front_end/panels/application/IndexedDBViews.ts +14 -19
  352. package/front_end/panels/application/InterestGroupTreeElement.ts +1 -1
  353. package/front_end/panels/application/OpenedWindowDetailsView.ts +2 -3
  354. package/front_end/panels/application/PreloadingTreeElement.ts +1 -1
  355. package/front_end/panels/application/ReportingApiTreeElement.ts +1 -1
  356. package/front_end/panels/application/ResourcesPanel.ts +18 -1
  357. package/front_end/panels/application/ServiceWorkerCacheTreeElement.ts +1 -1
  358. package/front_end/panels/application/SharedStorageItemsView.test.ts +1 -20
  359. package/front_end/panels/application/SharedStorageListTreeElement.ts +1 -1
  360. package/front_end/panels/application/SharedStorageTreeElement.ts +2 -2
  361. package/front_end/panels/application/StorageBucketsTreeElement.ts +1 -1
  362. package/front_end/panels/application/TrustTokensTreeElement.ts +1 -1
  363. package/front_end/panels/application/application.ts +2 -0
  364. package/front_end/panels/application/components/BackForwardCacheStrings.ts +1 -0
  365. package/front_end/panels/application/components/BackForwardCacheView.ts +76 -72
  366. package/front_end/panels/application/components/BounceTrackingMitigationsView.ts +32 -33
  367. package/front_end/panels/application/components/EndpointsGrid.ts +5 -5
  368. package/front_end/panels/application/components/FrameDetailsView.ts +118 -135
  369. package/front_end/panels/application/components/InterestGroupAccessGrid.ts +11 -15
  370. package/front_end/panels/application/components/OriginTrialTreeView.ts +36 -34
  371. package/front_end/panels/application/components/PermissionsPolicySection.ts +32 -35
  372. package/front_end/panels/application/components/ProtocolHandlersView.ts +15 -14
  373. package/front_end/panels/application/components/ReportsGrid.ts +10 -10
  374. package/front_end/panels/application/components/ServiceWorkerRouterView.ts +0 -1
  375. package/front_end/panels/application/components/SharedStorageAccessGrid.ts +11 -16
  376. package/front_end/panels/application/components/SharedStorageMetadataView.ts +16 -14
  377. package/front_end/panels/application/components/StackTrace.ts +20 -22
  378. package/front_end/panels/application/components/StorageMetadataView.ts +18 -18
  379. package/front_end/panels/application/components/TrustTokensView.ts +16 -16
  380. package/front_end/panels/application/preloading/PreloadingView.ts +18 -15
  381. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts +2 -2
  382. package/front_end/panels/application/preloading/components/MismatchedPreloadingGrid.ts +8 -13
  383. package/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts +41 -47
  384. package/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts +15 -13
  385. package/front_end/panels/application/preloading/components/PreloadingGrid.test.ts +1 -1
  386. package/front_end/panels/application/preloading/components/PreloadingGrid.ts +11 -12
  387. package/front_end/panels/application/preloading/components/PreloadingMismatchedHeadersGrid.ts +4 -5
  388. package/front_end/panels/application/preloading/components/PreloadingString.ts +7 -0
  389. package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +11 -10
  390. package/front_end/panels/application/preloading/components/RuleSetGrid.ts +24 -23
  391. package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +50 -57
  392. package/front_end/panels/application/resourcesSidebar.css +0 -3
  393. package/front_end/panels/autofill/AutofillView.ts +19 -17
  394. package/front_end/panels/console/ConsoleFilter.ts +1 -1
  395. package/front_end/panels/console/ConsoleSidebar.ts +1 -1
  396. package/front_end/panels/console/ConsoleView.ts +1 -1
  397. package/front_end/panels/console/ConsoleViewMessage.ts +2 -2
  398. package/front_end/panels/console/consoleView.css +4 -3
  399. package/front_end/panels/coverage/CoverageDecorationManager.ts +1 -1
  400. package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +1 -1
  401. package/front_end/panels/css_overview/CSSOverviewController.ts +2 -2
  402. package/front_end/panels/css_overview/CSSOverviewModel.ts +2 -3
  403. package/front_end/panels/css_overview/CSSOverviewPanel.ts +5 -7
  404. package/front_end/panels/css_overview/components/CSSOverviewStartView.ts +13 -13
  405. package/front_end/panels/elements/AccessibilityTreeUtils.ts +9 -6
  406. package/front_end/panels/elements/CSSRuleValidator.ts +0 -5
  407. package/front_end/panels/elements/ColorSwatchPopoverIcon.ts +3 -5
  408. package/front_end/panels/elements/ComputedStyleWidget.ts +6 -4
  409. package/front_end/panels/elements/ElementStatePaneWidget.ts +5 -0
  410. package/front_end/panels/elements/ElementsPanel.ts +11 -10
  411. package/front_end/panels/elements/ElementsTreeElement.ts +36 -1
  412. package/front_end/panels/elements/ElementsTreeOutline.ts +1 -1
  413. package/front_end/panels/elements/PropertyMatchers.test.ts +57 -0
  414. package/front_end/panels/elements/PropertyMatchers.ts +78 -1
  415. package/front_end/panels/elements/StyleEditorWidget.ts +2 -2
  416. package/front_end/panels/elements/StylePropertiesSection.test.ts +1 -0
  417. package/front_end/panels/elements/StylePropertyHighlighter.test.ts +1 -0
  418. package/front_end/panels/elements/StylePropertyHighlighter.ts +2 -2
  419. package/front_end/panels/elements/StylePropertyTreeElement.test.ts +126 -3
  420. package/front_end/panels/elements/StylePropertyTreeElement.ts +101 -28
  421. package/front_end/panels/elements/StylesSidebarPane.test.ts +2 -0
  422. package/front_end/panels/elements/TopLayerContainer.ts +1 -2
  423. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +8 -7
  424. package/front_end/panels/elements/components/AdornerSettingsPane.ts +3 -4
  425. package/front_end/panels/elements/components/AnchorFunctionLinkSwatch.ts +8 -7
  426. package/front_end/panels/elements/components/CSSHintDetailsView.ts +3 -2
  427. package/front_end/panels/elements/components/CSSPropertyDocsView.ts +3 -2
  428. package/front_end/panels/elements/components/CSSQuery.ts +0 -1
  429. package/front_end/panels/elements/components/CSSVariableValueView.ts +1 -3
  430. package/front_end/panels/elements/components/ComputedStyleProperty.ts +0 -1
  431. package/front_end/panels/elements/components/ComputedStyleTrace.ts +0 -1
  432. package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +15 -13
  433. package/front_end/panels/elements/components/ElementsBreadcrumbsUtils.ts +1 -1
  434. package/front_end/panels/elements/components/ElementsTreeExpandButton.ts +6 -4
  435. package/front_end/panels/elements/components/LayoutPane.ts +8 -8
  436. package/front_end/panels/elements/components/QueryContainer.test.ts +2 -3
  437. package/front_end/panels/elements/components/QueryContainer.ts +9 -10
  438. package/front_end/panels/elements/components/StylePropertyEditor.ts +4 -4
  439. package/front_end/panels/elements/components/computedStyleProperty.css +2 -1
  440. package/front_end/panels/elements/components/cssPropertyDocsView.css +3 -2
  441. package/front_end/panels/elements/elementsTreeOutline.css +17 -0
  442. package/front_end/panels/elements/stylePropertiesTreeOutline.css +13 -0
  443. package/front_end/panels/elements/stylesSidebarPane.css +2 -2
  444. package/front_end/panels/emulation/DeviceModeWrapper.ts +1 -1
  445. package/front_end/panels/emulation/components/DeviceSizeInputElement.ts +3 -3
  446. package/front_end/panels/event_listeners/EventListenersView.ts +2 -2
  447. package/front_end/panels/event_listeners/eventListenersView.css +4 -3
  448. package/front_end/panels/explain/components/ConsoleInsight.test.ts +56 -8
  449. package/front_end/panels/explain/components/ConsoleInsight.ts +99 -81
  450. package/front_end/panels/explain/components/consoleInsight.css +0 -9
  451. package/front_end/panels/explain/explain-meta.ts +1 -12
  452. package/front_end/panels/freestyler/AiAgent.test.ts +92 -12
  453. package/front_end/panels/freestyler/AiAgent.ts +345 -54
  454. package/front_end/panels/freestyler/DrJonesFileAgent.test.ts +228 -0
  455. package/front_end/panels/freestyler/DrJonesFileAgent.ts +192 -0
  456. package/front_end/panels/freestyler/DrJonesNetworkAgent.test.ts +136 -73
  457. package/front_end/panels/freestyler/DrJonesNetworkAgent.ts +251 -146
  458. package/front_end/panels/freestyler/DrJonesPerformanceAgent.test.ts +241 -0
  459. package/front_end/panels/freestyler/DrJonesPerformanceAgent.ts +197 -0
  460. package/front_end/panels/freestyler/FreestylerAgent.test.ts +258 -85
  461. package/front_end/panels/freestyler/FreestylerAgent.ts +124 -167
  462. package/front_end/panels/freestyler/FreestylerEvaluateAction.test.ts +61 -37
  463. package/front_end/panels/freestyler/FreestylerEvaluateAction.ts +18 -14
  464. package/front_end/panels/freestyler/FreestylerPanel.test.ts +562 -15
  465. package/front_end/panels/freestyler/FreestylerPanel.ts +469 -105
  466. package/front_end/panels/freestyler/components/FreestylerChatUi.test.ts +53 -4
  467. package/front_end/panels/freestyler/components/FreestylerChatUi.ts +434 -191
  468. package/front_end/panels/freestyler/components/UserActionRow.test.ts +60 -0
  469. package/front_end/panels/freestyler/components/{ProvideFeedback.ts → UserActionRow.ts} +58 -29
  470. package/front_end/panels/freestyler/components/freestylerChatUi.css +148 -93
  471. package/front_end/panels/freestyler/components/userActionRow.css +149 -0
  472. package/front_end/panels/freestyler/freestyler-meta.ts +108 -26
  473. package/front_end/panels/freestyler/freestyler.ts +3 -1
  474. package/front_end/panels/issues/AffectedResourcesView.ts +2 -2
  475. package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +19 -4
  476. package/front_end/panels/issues/CorsIssueDetailsView.ts +6 -6
  477. package/front_end/panels/issues/GenericIssueDetailsView.ts +3 -3
  478. package/front_end/panels/issues/IssueAggregator.ts +10 -1
  479. package/front_end/panels/issues/IssueView.ts +2 -2
  480. package/front_end/panels/issues/components/ElementsPanelLink.ts +3 -2
  481. package/front_end/panels/issues/components/HideIssuesMenu.ts +17 -8
  482. package/front_end/panels/lighthouse/LighthouseController.ts +2 -2
  483. package/front_end/panels/lighthouse/LighthousePanel.ts +1 -1
  484. package/front_end/panels/lighthouse/LighthouseReportRenderer.ts +2 -6
  485. package/front_end/panels/lighthouse/LighthouseStartView.ts +2 -2
  486. package/front_end/panels/lighthouse/LighthouseStatusView.ts +1 -1
  487. package/front_end/panels/lighthouse/LighthouseTimespanView.ts +1 -1
  488. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +2 -2
  489. package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +8 -2
  490. package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +6 -7
  491. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.test.ts +11 -0
  492. package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +26 -36
  493. package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +5 -5
  494. package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +12 -16
  495. package/front_end/panels/linear_memory_inspector/components/LinearMemoryViewer.ts +1 -3
  496. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +5 -5
  497. package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +0 -1
  498. package/front_end/panels/media/EventDisplayTable.ts +1 -1
  499. package/front_end/panels/media/EventTimelineView.ts +1 -1
  500. package/front_end/panels/media/PlayerDetailView.ts +3 -3
  501. package/front_end/panels/media/PlayerListView.ts +2 -2
  502. package/front_end/panels/mobile_throttling/ThrottlingManager.ts +23 -29
  503. package/front_end/panels/network/BinaryResourceView.ts +3 -2
  504. package/front_end/panels/network/NetworkConfigView.ts +1 -2
  505. package/front_end/panels/network/NetworkDataGridNode.test.ts +29 -0
  506. package/front_end/panels/network/NetworkDataGridNode.ts +60 -158
  507. package/front_end/panels/network/NetworkFrameGrouper.ts +1 -1
  508. package/front_end/panels/network/NetworkItemView.ts +1 -1
  509. package/front_end/panels/network/NetworkLogView.test.ts +29 -0
  510. package/front_end/panels/network/NetworkLogView.ts +3 -3
  511. package/front_end/panels/network/NetworkLogViewColumns.ts +4 -6
  512. package/front_end/panels/network/NetworkPanel.test.ts +3 -22
  513. package/front_end/panels/network/NetworkPanel.ts +26 -7
  514. package/front_end/panels/network/NetworkWaterfallColumn.ts +7 -8
  515. package/front_end/panels/network/RequestResponseView.test.ts +28 -1
  516. package/front_end/panels/network/RequestResponseView.ts +17 -14
  517. package/front_end/panels/network/ResourceWebSocketFrameView.ts +3 -1
  518. package/front_end/panels/network/components/EditableSpan.ts +0 -1
  519. package/front_end/panels/network/components/HeaderSectionRow.test.ts +1 -1
  520. package/front_end/panels/network/components/HeaderSectionRow.ts +31 -31
  521. package/front_end/panels/network/components/RequestHeaderSection.ts +10 -15
  522. package/front_end/panels/network/components/RequestHeadersView.css +7 -0
  523. package/front_end/panels/network/components/RequestHeadersView.ts +25 -26
  524. package/front_end/panels/network/components/RequestTrustTokensView.ts +33 -36
  525. package/front_end/panels/network/components/ResponseHeaderSection.ts +8 -10
  526. package/front_end/panels/network/components/WebBundleInfoView.ts +13 -11
  527. package/front_end/panels/network/networkConfigView.css +13 -5
  528. package/front_end/panels/network/networkLogView.css +35 -16
  529. package/front_end/panels/network/networkPanel.css +2 -1
  530. package/front_end/panels/network/requestHTMLView.css +1 -0
  531. package/front_end/panels/profiler/BottomUpProfileDataGrid.ts +3 -3
  532. package/front_end/panels/profiler/HeapProfileView.ts +1 -1
  533. package/front_end/panels/profiler/HeapProfilerPanel.ts +2 -2
  534. package/front_end/panels/profiler/HeapSnapshotDataGrids.ts +14 -13
  535. package/front_end/panels/profiler/HeapSnapshotGridNodes.ts +15 -11
  536. package/front_end/panels/profiler/HeapSnapshotProxy.ts +7 -7
  537. package/front_end/panels/profiler/ProfileLauncherView.ts +3 -3
  538. package/front_end/panels/protocol_monitor/ProtocolMonitor.ts +4 -2
  539. package/front_end/panels/protocol_monitor/components/JSONEditor.ts +25 -18
  540. package/front_end/panels/protocol_monitor/components/Toolbar.ts +4 -4
  541. package/front_end/panels/recorder/RecorderController.ts +39 -43
  542. package/front_end/panels/recorder/components/ControlButton.ts +1 -1
  543. package/front_end/panels/recorder/components/CreateRecordingView.ts +15 -15
  544. package/front_end/panels/recorder/components/ExtensionView.ts +9 -8
  545. package/front_end/panels/recorder/components/RecordingListView.ts +15 -13
  546. package/front_end/panels/recorder/components/RecordingView.ts +92 -84
  547. package/front_end/panels/recorder/components/ReplaySection.ts +6 -6
  548. package/front_end/panels/recorder/components/SelectButton.ts +21 -20
  549. package/front_end/panels/recorder/components/StartView.ts +15 -20
  550. package/front_end/panels/recorder/components/StepEditor.ts +3 -3
  551. package/front_end/panels/recorder/components/StepView.ts +20 -20
  552. package/front_end/panels/recorder/components/TimelineSection.ts +3 -2
  553. package/front_end/panels/recorder/components/recordingView.css +1 -4
  554. package/front_end/panels/recorder/components/selectButton.css +6 -50
  555. package/front_end/panels/recorder/converters/ExtensionConverter.ts +2 -2
  556. package/front_end/panels/recorder/converters/JSONConverter.ts +1 -1
  557. package/front_end/panels/recorder/converters/LighthouseConverter.ts +1 -1
  558. package/front_end/panels/recorder/converters/PuppeteerConverter.ts +1 -1
  559. package/front_end/panels/recorder/converters/PuppeteerReplayConverter.ts +1 -1
  560. package/front_end/panels/recorder/injected/RecordingClient.ts +7 -10
  561. package/front_end/panels/recorder/injected/SelectorComputer.ts +5 -5
  562. package/front_end/panels/recorder/injected/SelectorPicker.ts +2 -2
  563. package/front_end/panels/recorder/injected/Step.ts +1 -1
  564. package/front_end/panels/recorder/injected/injected.ts +1 -1
  565. package/front_end/panels/recorder/injected/selectors/ARIASelector.ts +1 -1
  566. package/front_end/panels/recorder/injected/selectors/PierceSelector.ts +6 -7
  567. package/front_end/panels/recorder/injected/selectors/TextSelector.ts +3 -5
  568. package/front_end/panels/recorder/injected/util.ts +1 -1
  569. package/front_end/panels/recorder/models/RecorderShortcutHelper.ts +1 -1
  570. package/front_end/panels/recorder/models/RecordingPlayer.ts +1 -1
  571. package/front_end/panels/recorder/models/RecordingSession.ts +4 -4
  572. package/front_end/panels/recorder/models/RecordingSettings.ts +1 -4
  573. package/front_end/panels/recorder/models/RecordingStorage.ts +1 -1
  574. package/front_end/panels/recorder/models/SDKUtils.ts +3 -2
  575. package/front_end/panels/recorder/models/ScreenshotUtils.ts +1 -1
  576. package/front_end/panels/recorder/models/Section.ts +2 -2
  577. package/front_end/panels/recorder/recorderController.css +38 -18
  578. package/front_end/panels/screencast/ScreencastApp.ts +1 -1
  579. package/front_end/panels/screencast/ScreencastView.ts +1 -1
  580. package/front_end/panels/search/SearchResultsPane.ts +1 -2
  581. package/front_end/panels/search/SearchView.ts +1 -3
  582. package/front_end/panels/search/searchView.css +5 -1
  583. package/front_end/panels/security/CookieReportTreeElement.ts +26 -0
  584. package/front_end/panels/security/OriginTreeElement.ts +20 -7
  585. package/front_end/panels/security/SecurityPanel.ts +64 -15
  586. package/front_end/panels/security/{SecurityAndPrivacyPanelSidebar.ts → SecurityPanelSidebar.ts} +25 -14
  587. package/front_end/panels/security/SecurityPanelSidebarTreeElement.ts +1 -12
  588. package/front_end/panels/security/sidebar.css +40 -1
  589. package/front_end/panels/sensors/SensorsView.ts +43 -0
  590. package/front_end/panels/sensors/sensors-meta.ts +59 -0
  591. package/front_end/panels/sensors/sensors.css +16 -0
  592. package/front_end/panels/settings/AISettingsTab.test.ts +113 -15
  593. package/front_end/panels/settings/AISettingsTab.ts +194 -62
  594. package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +53 -30
  595. package/front_end/panels/settings/KeybindsSettingsTab.ts +34 -17
  596. package/front_end/panels/settings/SettingsScreen.ts +2 -2
  597. package/front_end/panels/settings/aiSettingsTab.css +13 -0
  598. package/front_end/panels/settings/components/SyncSection.ts +18 -15
  599. package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +51 -29
  600. package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +56 -41
  601. package/front_end/panels/settings/emulation/devicesSettingsTab.css +11 -10
  602. package/front_end/panels/settings/frameworkIgnoreListSettingsTab.css +14 -42
  603. package/front_end/panels/settings/keybindsSettingsTab.css +51 -89
  604. package/front_end/panels/settings/settings-meta.ts +2 -2
  605. package/front_end/panels/settings/settingsScreen.css +30 -6
  606. package/front_end/panels/sources/AddSourceMapURLDialog.ts +1 -1
  607. package/front_end/panels/sources/CSSPlugin.ts +0 -2
  608. package/front_end/panels/sources/DebuggerPlugin.ts +1 -1
  609. package/front_end/panels/sources/EditingLocationHistoryManager.ts +2 -2
  610. package/front_end/panels/sources/GoToLineQuickOpen.ts +1 -1
  611. package/front_end/panels/sources/InplaceFormatterEditorAction.ts +1 -1
  612. package/front_end/panels/sources/NavigatorView.ts +31 -23
  613. package/front_end/panels/sources/OutlineQuickOpen.ts +1 -1
  614. package/front_end/panels/sources/SourcesNavigator.test.ts +1 -0
  615. package/front_end/panels/sources/SourcesPanel.ts +26 -0
  616. package/front_end/panels/sources/SourcesView.test.ts +1 -0
  617. package/front_end/panels/sources/SourcesView.ts +2 -2
  618. package/front_end/panels/sources/TabbedEditorContainer.ts +1 -1
  619. package/front_end/panels/sources/UISourceCodeFrame.ts +1 -1
  620. package/front_end/panels/sources/components/BreakpointsView.ts +25 -27
  621. package/front_end/panels/sources/components/HeadersView.ts +17 -16
  622. package/front_end/panels/sources/navigatorTree.css +11 -0
  623. package/front_end/panels/timeline/AnimationsTrackAppender.ts +18 -3
  624. package/front_end/panels/timeline/AnnotationHelpers.ts +4 -4
  625. package/front_end/panels/timeline/AppenderUtils.ts +2 -4
  626. package/front_end/panels/timeline/CompatibilityTracksAppender.ts +48 -19
  627. package/front_end/panels/timeline/CountersGraph.ts +1 -1
  628. package/front_end/panels/timeline/EntriesFilter.test.ts +51 -0
  629. package/front_end/panels/timeline/EntriesFilter.ts +15 -0
  630. package/front_end/panels/timeline/EventsTimelineTreeView.ts +10 -10
  631. package/front_end/panels/timeline/InteractionsTrackAppender.ts +12 -1
  632. package/front_end/panels/timeline/LayoutShiftsTrackAppender.ts +141 -7
  633. package/front_end/panels/timeline/ModificationsManager.test.ts +160 -0
  634. package/front_end/panels/timeline/ModificationsManager.ts +31 -0
  635. package/front_end/panels/timeline/NetworkTrackAppender.ts +1 -8
  636. package/front_end/panels/timeline/ThreadAppender.ts +5 -6
  637. package/front_end/panels/timeline/TimelineDetailsView.test.ts +89 -44
  638. package/front_end/panels/timeline/TimelineDetailsView.ts +96 -45
  639. package/front_end/panels/timeline/TimelineEventOverview.ts +11 -10
  640. package/front_end/panels/timeline/TimelineFilters.test.ts +4 -4
  641. package/front_end/panels/timeline/TimelineFlameChartDataProvider.test.ts +53 -0
  642. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +89 -63
  643. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.test.ts +57 -0
  644. package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +34 -15
  645. package/front_end/panels/timeline/TimelineFlameChartView.test.ts +2 -3
  646. package/front_end/panels/timeline/TimelineFlameChartView.ts +192 -86
  647. package/front_end/panels/timeline/TimelineHistoryManager.ts +7 -1
  648. package/front_end/panels/timeline/TimelineLoader.ts +1 -1
  649. package/front_end/panels/timeline/TimelineMiniMap.ts +0 -8
  650. package/front_end/panels/timeline/TimelinePanel.ts +136 -79
  651. package/front_end/panels/timeline/TimelineSelection.test.ts +91 -36
  652. package/front_end/panels/timeline/TimelineSelection.ts +48 -60
  653. package/front_end/panels/timeline/TimelineSelectorStatsView.ts +15 -16
  654. package/front_end/panels/timeline/TimelineTreeView.test.ts +9 -9
  655. package/front_end/panels/timeline/TimelineTreeView.ts +7 -5
  656. package/front_end/panels/timeline/TimelineUIUtils.test.ts +51 -4
  657. package/front_end/panels/timeline/TimelineUIUtils.ts +153 -68
  658. package/front_end/panels/timeline/TimingsTrackAppender.ts +1 -1
  659. package/front_end/panels/timeline/UIDevtoolsController.ts +5 -5
  660. package/front_end/panels/timeline/UIDevtoolsUtils.ts +59 -68
  661. package/front_end/panels/timeline/components/BreadcrumbsUI.ts +3 -5
  662. package/front_end/panels/timeline/components/CPUThrottlingSelector.ts +8 -7
  663. package/front_end/panels/timeline/components/FieldSettingsDialog.ts +28 -27
  664. package/front_end/panels/timeline/components/InteractionBreakdown.ts +3 -2
  665. package/front_end/panels/timeline/components/LayoutShiftDetails.test.ts +13 -11
  666. package/front_end/panels/timeline/components/LayoutShiftDetails.ts +238 -91
  667. package/front_end/panels/timeline/components/LiveMetricsView.test.ts +415 -128
  668. package/front_end/panels/timeline/components/LiveMetricsView.ts +448 -228
  669. package/front_end/panels/timeline/components/MetricCard.test.ts +8 -8
  670. package/front_end/panels/timeline/components/MetricCard.ts +6 -4
  671. package/front_end/panels/timeline/components/MetricCompareStrings.ts +1 -1
  672. package/front_end/panels/timeline/components/NetworkRequestDetails.test.ts +14 -7
  673. package/front_end/panels/timeline/components/NetworkRequestDetails.ts +57 -124
  674. package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +70 -78
  675. package/front_end/panels/timeline/components/NetworkThrottlingSelector.test.ts +35 -2
  676. package/front_end/panels/timeline/components/NetworkThrottlingSelector.ts +30 -13
  677. package/front_end/panels/timeline/components/RelatedInsightChips.test.ts +74 -0
  678. package/front_end/panels/timeline/components/RelatedInsightChips.ts +92 -0
  679. package/front_end/panels/timeline/components/Sidebar.test.ts +74 -0
  680. package/front_end/panels/timeline/components/Sidebar.ts +34 -14
  681. package/front_end/panels/timeline/components/SidebarAnnotationsTab.test.ts +66 -0
  682. package/front_end/panels/timeline/components/SidebarAnnotationsTab.ts +117 -50
  683. package/front_end/panels/timeline/components/SidebarInsightsTab.test.ts +11 -1
  684. package/front_end/panels/timeline/components/SidebarInsightsTab.ts +119 -37
  685. package/front_end/panels/timeline/components/SidebarSingleInsightSet.test.ts +58 -1
  686. package/front_end/panels/timeline/components/SidebarSingleInsightSet.ts +90 -34
  687. package/front_end/panels/timeline/components/Utils.test.ts +65 -0
  688. package/front_end/panels/timeline/components/Utils.ts +145 -29
  689. package/front_end/panels/timeline/components/components.ts +2 -4
  690. package/front_end/panels/timeline/components/insights/CLSCulprits.ts +76 -55
  691. package/front_end/panels/timeline/components/insights/DocumentLatency.ts +105 -17
  692. package/front_end/panels/timeline/components/insights/EventRef.ts +91 -0
  693. package/front_end/panels/timeline/components/insights/FontDisplay.ts +24 -13
  694. package/front_end/panels/timeline/components/insights/Helpers.ts +49 -44
  695. package/front_end/panels/timeline/components/insights/InteractionToNextPaint.ts +21 -21
  696. package/front_end/panels/timeline/components/insights/LCPDiscovery.ts +94 -49
  697. package/front_end/panels/timeline/components/insights/LCPPhases.ts +35 -10
  698. package/front_end/panels/timeline/components/insights/NodeLink.ts +3 -2
  699. package/front_end/panels/timeline/components/insights/README.md +2 -2
  700. package/front_end/panels/timeline/components/insights/RenderBlocking.ts +35 -29
  701. package/front_end/panels/timeline/components/insights/SidebarInsight.ts +103 -17
  702. package/front_end/panels/timeline/components/insights/SlowCSSSelector.ts +125 -60
  703. package/front_end/panels/timeline/components/insights/Table.ts +13 -12
  704. package/front_end/panels/timeline/components/insights/ThirdParties.ts +24 -19
  705. package/front_end/panels/timeline/components/insights/Viewport.ts +23 -22
  706. package/front_end/panels/timeline/components/insights/insights.ts +2 -0
  707. package/front_end/panels/timeline/components/insights/sidebarInsight.css +54 -9
  708. package/front_end/panels/timeline/components/insights/table.css +9 -1
  709. package/front_end/panels/timeline/components/layoutShiftDetails.css +28 -20
  710. package/front_end/panels/timeline/components/liveMetricsView.css +102 -31
  711. package/front_end/panels/timeline/components/networkRequestDetails.css +11 -50
  712. package/front_end/panels/timeline/components/networkRequestTooltip.css +34 -11
  713. package/front_end/panels/timeline/components/relatedInsightChips.css +45 -0
  714. package/front_end/panels/timeline/components/sidebarInsightsTab.css +44 -6
  715. package/front_end/panels/timeline/components/sidebarSingleInsightSet.css +18 -4
  716. package/front_end/panels/timeline/extensions/ExtensionUI.ts +11 -8
  717. package/front_end/panels/timeline/fixtures/traces/README.md +4 -0
  718. package/front_end/panels/timeline/fixtures/traces/basic.json.gz +0 -0
  719. package/front_end/panels/timeline/fixtures/traces/many-redirects.json.gz +0 -0
  720. package/front_end/panels/timeline/fixtures/traces/missing-url.json.gz +0 -0
  721. package/front_end/panels/timeline/fixtures/traces/scheduler-post-task.json.gz +0 -0
  722. package/front_end/panels/timeline/fixtures/traces/unsized-images.json.gz +0 -0
  723. package/front_end/panels/timeline/historyToolbarButton.css +33 -19
  724. package/front_end/panels/timeline/overlays/OverlaysImpl.test.ts +40 -67
  725. package/front_end/panels/timeline/overlays/OverlaysImpl.ts +135 -61
  726. package/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts +13 -11
  727. package/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts +24 -32
  728. package/front_end/panels/timeline/overlays/components/TimeRangeOverlay.ts +23 -24
  729. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.test.ts +42 -0
  730. package/front_end/panels/timeline/overlays/components/TimespanBreakdownOverlay.ts +25 -19
  731. package/front_end/panels/timeline/overlays/components/entriesLinkOverlay.css +8 -0
  732. package/front_end/panels/timeline/overlays/components/entryLabelOverlay.css +14 -12
  733. package/front_end/panels/timeline/overlays/components/timeRangeOverlay.css +16 -13
  734. package/front_end/panels/timeline/overlays/components/timespanBreakdownOverlay.css +59 -20
  735. package/front_end/panels/timeline/timeline-meta.ts +11 -0
  736. package/front_end/panels/timeline/timelineFlameChartView.css +19 -2
  737. package/front_end/panels/timeline/timelineFlamechartPopover.css +19 -0
  738. package/front_end/panels/timeline/timelineHistoryManager.css +4 -0
  739. package/front_end/panels/timeline/timelinePanel.css +2 -10
  740. package/front_end/panels/timeline/track_appenders/AnimationsTrackAppender.test.ts +2 -3
  741. package/front_end/panels/timeline/track_appenders/AppenderUtils.test.ts +1 -6
  742. package/front_end/panels/timeline/track_appenders/CompatibilityTracksAppender.test.ts +1 -1
  743. package/front_end/panels/timeline/track_appenders/ExtensionTrackAppender.test.ts +7 -8
  744. package/front_end/panels/timeline/track_appenders/GPUTrackAppender.test.ts +2 -2
  745. package/front_end/panels/timeline/track_appenders/InteractionsTrackAppender.test.ts +3 -3
  746. package/front_end/panels/timeline/track_appenders/LayoutShiftsTrackAppender.test.ts +10 -11
  747. package/front_end/panels/timeline/track_appenders/ServerTimingsTrackAppender.test.ts +2 -3
  748. package/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts +5 -10
  749. package/front_end/panels/timeline/track_appenders/TimingsTrackAppender.test.ts +6 -6
  750. package/front_end/panels/timeline/utils/AICallTree.test.ts +80 -0
  751. package/front_end/panels/timeline/utils/AICallTree.ts +165 -0
  752. package/front_end/panels/timeline/{components → utils}/EntryName.test.ts +12 -12
  753. package/front_end/panels/timeline/{components → utils}/EntryName.ts +1 -1
  754. package/front_end/panels/timeline/{components → utils}/EntryStyles.ts +28 -1
  755. package/front_end/panels/timeline/utils/Helpers.test.ts +43 -0
  756. package/front_end/panels/timeline/utils/Helpers.ts +93 -0
  757. package/front_end/panels/timeline/utils/IgnoreList.test.ts +86 -0
  758. package/front_end/panels/timeline/utils/IgnoreList.ts +11 -4
  759. package/front_end/panels/timeline/utils/ImageCache.test.ts +106 -0
  760. package/front_end/panels/timeline/utils/ImageCache.ts +55 -0
  761. package/front_end/panels/timeline/utils/NetworkRequest.ts +1 -1
  762. package/front_end/panels/timeline/utils/SourceMapsResolver.test.ts +64 -19
  763. package/front_end/panels/timeline/utils/SourceMapsResolver.ts +14 -3
  764. package/front_end/panels/timeline/utils/utils.ts +10 -0
  765. package/front_end/panels/utils/utils.ts +57 -5
  766. package/front_end/panels/web_audio/graph_visualizer/EdgeView.ts +1 -1
  767. package/front_end/panels/web_audio/graph_visualizer/GraphView.ts +3 -9
  768. package/front_end/panels/webauthn/WebauthnPane.test.ts +75 -4
  769. package/front_end/panels/webauthn/WebauthnPane.ts +24 -3
  770. package/front_end/services/trace_bounds/TraceBounds.ts +7 -1
  771. package/front_end/testing/ContextMenuHelpers.ts +1 -1
  772. package/front_end/testing/EnvironmentHelpers.ts +42 -5
  773. package/front_end/testing/ExtensionHelpers.ts +1 -1
  774. package/front_end/testing/LanguagePluginHelpers.ts +1 -1
  775. package/front_end/testing/MockConnection.ts +1 -1
  776. package/front_end/testing/MockIssuesManager.ts +1 -1
  777. package/front_end/testing/MockScopeChain.ts +1 -1
  778. package/front_end/testing/MutationHelpers.test.ts +6 -8
  779. package/front_end/testing/NetworkHelpers.ts +38 -0
  780. package/front_end/testing/StorageItemsViewHelpers.ts +24 -0
  781. package/front_end/testing/TraceHelpers.ts +13 -1
  782. package/front_end/third_party/additional_readme_paths.json +1 -0
  783. package/front_end/third_party/codemirror.next/chunk/angular.js +1 -1
  784. package/front_end/third_party/codemirror.next/chunk/angular.js.map +1 -1
  785. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  786. package/front_end/third_party/codemirror.next/chunk/codemirror.js.map +1 -1
  787. package/front_end/third_party/codemirror.next/chunk/cpp.js.map +1 -1
  788. package/front_end/third_party/codemirror.next/chunk/java.js +1 -1
  789. package/front_end/third_party/codemirror.next/chunk/java.js.map +1 -1
  790. package/front_end/third_party/codemirror.next/chunk/legacy.js.map +1 -1
  791. package/front_end/third_party/codemirror.next/chunk/less.js.map +1 -1
  792. package/front_end/third_party/codemirror.next/chunk/markdown.js +1 -1
  793. package/front_end/third_party/codemirror.next/chunk/markdown.js.map +1 -1
  794. package/front_end/third_party/codemirror.next/chunk/php.js.map +1 -1
  795. package/front_end/third_party/codemirror.next/chunk/python.js +1 -1
  796. package/front_end/third_party/codemirror.next/chunk/python.js.map +1 -1
  797. package/front_end/third_party/codemirror.next/chunk/sass.js +1 -1
  798. package/front_end/third_party/codemirror.next/chunk/sass.js.map +1 -1
  799. package/front_end/third_party/codemirror.next/chunk/svelte.js +1 -1
  800. package/front_end/third_party/codemirror.next/chunk/svelte.js.map +1 -1
  801. package/front_end/third_party/codemirror.next/chunk/vue.js +1 -1
  802. package/front_end/third_party/codemirror.next/chunk/vue.js.map +1 -1
  803. package/front_end/third_party/codemirror.next/chunk/xml.js +1 -1
  804. package/front_end/third_party/codemirror.next/chunk/xml.js.map +1 -1
  805. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +79 -6
  806. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  807. package/front_end/third_party/codemirror.next/package.json +7 -6
  808. package/front_end/third_party/i18n/localized-string-set.ts +1 -1
  809. package/front_end/third_party/intl-messageformat/README.chromium +2 -1
  810. package/front_end/third_party/intl-messageformat/package/intl-messageformat.esm.js +0 -1
  811. package/front_end/third_party/json5/LICENSE +23 -0
  812. package/front_end/third_party/json5/README.chromium +17 -0
  813. package/front_end/third_party/json5/json5-tsconfig.json +8 -0
  814. package/front_end/third_party/json5/json5.ts +4 -0
  815. package/front_end/third_party/json5/lib/index.d.ts +2 -0
  816. package/front_end/third_party/json5/lib/index.js +1121 -0
  817. package/front_end/third_party/json5/package/lib/index.d.ts +4 -0
  818. package/front_end/third_party/json5/package/lib/index.js +9 -0
  819. package/front_end/third_party/json5/package/lib/parse.d.ts +15 -0
  820. package/front_end/third_party/json5/package/lib/parse.js +1114 -0
  821. package/front_end/third_party/json5/package/lib/register.js +13 -0
  822. package/front_end/third_party/json5/package/lib/require.js +4 -0
  823. package/front_end/third_party/json5/package/lib/stringify.d.ts +89 -0
  824. package/front_end/third_party/json5/package/lib/stringify.js +261 -0
  825. package/front_end/third_party/json5/package/lib/unicode.d.ts +3 -0
  826. package/front_end/third_party/json5/package/lib/unicode.js +4 -0
  827. package/front_end/third_party/json5/package/lib/util.d.ts +5 -0
  828. package/front_end/third_party/json5/package/lib/util.js +35 -0
  829. package/front_end/third_party/json5/package.json +8 -0
  830. package/front_end/third_party/json5/rebuild.sh +5 -0
  831. package/front_end/third_party/puppeteer/README.chromium +2 -2
  832. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts +2 -2
  833. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts.map +1 -1
  834. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js +1 -6
  835. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.js.map +1 -1
  836. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts +1 -1
  837. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts.map +1 -1
  838. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js +1 -1
  839. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.js.map +1 -1
  840. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/CDPSession.d.ts +1 -1
  841. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/CDPSession.js +1 -1
  842. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts +13 -13
  843. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts.map +1 -1
  844. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js +99 -92
  845. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js.map +1 -1
  846. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.d.ts +2 -2
  847. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js +13 -6
  848. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js.map +1 -1
  849. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts +7 -2
  850. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts.map +1 -1
  851. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.js +3 -3
  852. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.js.map +1 -1
  853. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPResponse.d.ts +0 -1
  854. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPResponse.d.ts.map +1 -1
  855. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.d.ts +3 -3
  856. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.js +1 -1
  857. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/JSHandle.js +12 -5
  858. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/JSHandle.js.map +1 -1
  859. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts +22 -22
  860. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts.map +1 -1
  861. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js +26 -19
  862. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js.map +1 -1
  863. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.d.ts +2 -2
  864. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.js +2 -2
  865. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.d.ts +1 -1
  866. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.d.ts.map +1 -1
  867. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.js +0 -1
  868. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/api.js.map +1 -1
  869. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.d.ts.map +1 -1
  870. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.js +12 -5
  871. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/locators/locators.js.map +1 -1
  872. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js +1 -2
  873. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BidiOverCdp.js.map +1 -1
  874. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts +0 -1
  875. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.d.ts.map +1 -1
  876. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js +4 -0
  877. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Browser.js.map +1 -1
  878. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js +1 -2
  879. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserConnector.js.map +1 -1
  880. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js +12 -5
  881. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/BrowserContext.js.map +1 -1
  882. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  883. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js +13 -7
  884. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ElementHandle.js.map +1 -1
  885. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js +12 -5
  886. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/ExposedFunction.js.map +1 -1
  887. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.d.ts.map +1 -1
  888. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js +3 -0
  889. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js.map +1 -1
  890. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js +21 -10
  891. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Page.js.map +1 -1
  892. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js +12 -5
  893. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Realm.js.map +1 -1
  894. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.d.ts.map +1 -1
  895. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.js +12 -5
  896. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Browser.js.map +1 -1
  897. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  898. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  899. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Navigation.d.ts.map +1 -1
  900. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Navigation.js.map +1 -1
  901. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts.map +1 -1
  902. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.js.map +1 -1
  903. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.d.ts.map +1 -1
  904. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Request.js.map +1 -1
  905. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.d.ts.map +1 -1
  906. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Session.js.map +1 -1
  907. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  908. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserContext.js.map +1 -1
  909. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
  910. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/UserPrompt.js.map +1 -1
  911. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.d.ts +1 -1
  912. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.d.ts.map +1 -1
  913. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.js +0 -1
  914. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/core.js.map +1 -1
  915. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.js +2 -3
  916. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/util.js.map +1 -1
  917. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  918. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +7 -4
  919. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
  920. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.d.ts.map +1 -1
  921. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js +3 -0
  922. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/AriaQueryHandler.js.map +1 -1
  923. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Binding.js +12 -5
  924. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Binding.js.map +1 -1
  925. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts +0 -1
  926. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Browser.d.ts.map +1 -1
  927. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js +1 -2
  928. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserConnector.js.map +1 -1
  929. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js +12 -5
  930. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/BrowserContext.js.map +1 -1
  931. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.d.ts.map +1 -1
  932. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js +3 -1
  933. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ChromeTargetManager.js.map +1 -1
  934. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js +2 -2
  935. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Connection.js.map +1 -1
  936. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.d.ts +1 -1
  937. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/DeviceRequestPrompt.js +1 -1
  938. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  939. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js +2 -3
  940. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ElementHandle.js.map +1 -1
  941. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts +3 -3
  942. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  943. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js +17 -13
  944. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExecutionContext.js.map +1 -1
  945. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.d.ts.map +1 -1
  946. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.js +5 -1
  947. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/ExtensionTransport.js.map +1 -1
  948. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.d.ts +2 -0
  949. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.d.ts.map +1 -1
  950. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js +17 -0
  951. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Frame.js.map +1 -1
  952. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js +1 -1
  953. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/FrameManager.js.map +1 -1
  954. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js +1 -1
  955. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/HTTPResponse.js.map +1 -1
  956. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.d.ts.map +1 -1
  957. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.js.map +1 -1
  958. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.d.ts +1 -2
  959. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.d.ts.map +1 -1
  960. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  961. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/JSHandle.js +2 -2
  962. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/JSHandle.js.map +1 -1
  963. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
  964. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js +2 -1
  965. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/NetworkManager.js.map +1 -1
  966. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts +1 -1
  967. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.d.ts.map +1 -1
  968. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js +16 -7
  969. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Page.js.map +1 -1
  970. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts +4 -4
  971. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts.map +1 -1
  972. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js +4 -4
  973. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts +2 -0
  974. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.d.ts.map +1 -1
  975. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js +2 -0
  976. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/cdp.js.map +1 -1
  977. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/utils.js +6 -6
  978. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/utils.js.map +1 -1
  979. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js +1 -2
  980. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js.map +1 -1
  981. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CSSQueryHandler.d.ts.map +1 -1
  982. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
  983. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js +2 -2
  984. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CallbackRegistry.js.map +1 -1
  985. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts +3 -0
  986. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  987. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.d.ts.map +1 -1
  988. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js +4 -5
  989. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js.map +1 -1
  990. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js +1 -2
  991. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/GetQueryHandler.js.map +1 -1
  992. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HandleIterator.js +13 -7
  993. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HandleIterator.js.map +1 -1
  994. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LazyArg.d.ts +1 -1
  995. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LazyArg.d.ts.map +1 -1
  996. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PSelectorParser.js +1 -2
  997. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PSelectorParser.js.map +1 -1
  998. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PierceQueryHandler.d.ts.map +1 -1
  999. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.d.ts.map +1 -1
  1000. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js +13 -7
  1001. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js.map +1 -1
  1002. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts +7 -7
  1003. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.d.ts.map +1 -1
  1004. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js +0 -7
  1005. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/common.js.map +1 -1
  1006. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts +2 -3
  1007. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -1
  1008. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js +15 -13
  1009. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -1
  1010. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.d.ts +0 -2
  1011. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.d.ts.map +1 -1
  1012. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.d.ts +1 -1
  1013. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.d.ts.map +1 -1
  1014. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.js +1 -1
  1015. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/injected.js.map +1 -1
  1016. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
  1017. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
  1018. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/ARIAQuerySelector.d.ts.map +1 -1
  1019. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/CSSSelector.d.ts.map +1 -1
  1020. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/PQuerySelector.d.ts.map +1 -1
  1021. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/PQuerySelector.js +1 -1
  1022. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/PQuerySelector.js.map +1 -1
  1023. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/TextQuerySelector.d.ts.map +1 -1
  1024. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/XPathQuerySelector.d.ts.map +1 -1
  1025. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +4 -4
  1026. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts.map +1 -1
  1027. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/util.js +3 -3
  1028. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/util.js.map +1 -1
  1029. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  1030. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js.map +1 -1
  1031. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
  1032. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js +3 -4
  1033. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js.map +1 -1
  1034. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts +0 -1
  1035. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts.map +1 -1
  1036. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.js.map +1 -1
  1037. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.d.ts +0 -1
  1038. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.d.ts.map +1 -1
  1039. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ScreenRecorder.js.map +1 -1
  1040. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.d.ts +1 -1
  1041. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.d.ts.map +1 -1
  1042. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.js +0 -1
  1043. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/node.js.map +1 -1
  1044. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util/fs.js +2 -3
  1045. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util/fs.js.map +1 -1
  1046. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts +6 -6
  1047. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts.map +1 -1
  1048. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js +15 -4
  1049. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js.map +1 -1
  1050. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +3 -3
  1051. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +3 -3
  1052. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
  1053. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.d.ts.map +1 -1
  1054. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.js +1 -0
  1055. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Deferred.js.map +1 -1
  1056. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.d.ts +0 -1
  1057. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.d.ts.map +1 -1
  1058. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.js +4 -5
  1059. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/ErrorLike.js.map +1 -1
  1060. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.d.ts.map +1 -1
  1061. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.js +2 -2
  1062. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Function.js.map +1 -1
  1063. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
  1064. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts.map +1 -1
  1065. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.d.ts +1 -1
  1066. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.d.ts.map +1 -1
  1067. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.js +18 -13
  1068. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/decorators.js.map +1 -1
  1069. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/disposable.d.ts.map +1 -1
  1070. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/encoding.js +4 -5
  1071. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/encoding.js.map +1 -1
  1072. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.d.ts +1 -0
  1073. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.d.ts.map +1 -1
  1074. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.js +1 -0
  1075. package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/util.js.map +1 -1
  1076. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts +374 -577
  1077. package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +427 -244
  1078. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts +2 -2
  1079. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts.map +1 -1
  1080. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js +1 -6
  1081. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.js.map +1 -1
  1082. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts +1 -1
  1083. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts.map +1 -1
  1084. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js +1 -1
  1085. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.js.map +1 -1
  1086. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/CDPSession.d.ts +1 -1
  1087. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/CDPSession.js +1 -1
  1088. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts +13 -13
  1089. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts.map +1 -1
  1090. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js +98 -92
  1091. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js.map +1 -1
  1092. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.d.ts +2 -2
  1093. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js +13 -6
  1094. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js.map +1 -1
  1095. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts +7 -2
  1096. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts.map +1 -1
  1097. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.js.map +1 -1
  1098. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPResponse.d.ts +0 -1
  1099. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPResponse.d.ts.map +1 -1
  1100. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.d.ts +3 -3
  1101. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.js +1 -1
  1102. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/JSHandle.js +12 -5
  1103. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/JSHandle.js.map +1 -1
  1104. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts +22 -22
  1105. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts.map +1 -1
  1106. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js +24 -17
  1107. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js.map +1 -1
  1108. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.d.ts +2 -2
  1109. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.js +2 -2
  1110. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.d.ts +1 -1
  1111. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.d.ts.map +1 -1
  1112. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.js +0 -1
  1113. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/api.js.map +1 -1
  1114. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.d.ts.map +1 -1
  1115. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.js +12 -5
  1116. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/locators/locators.js.map +1 -1
  1117. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts +0 -1
  1118. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.d.ts.map +1 -1
  1119. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js +4 -0
  1120. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Browser.js.map +1 -1
  1121. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js +12 -5
  1122. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/BrowserContext.js.map +1 -1
  1123. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.d.ts.map +1 -1
  1124. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js +14 -8
  1125. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ElementHandle.js.map +1 -1
  1126. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js +12 -5
  1127. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/ExposedFunction.js.map +1 -1
  1128. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.d.ts.map +1 -1
  1129. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js +3 -0
  1130. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js.map +1 -1
  1131. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js +21 -10
  1132. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Page.js.map +1 -1
  1133. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js +12 -5
  1134. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Realm.js.map +1 -1
  1135. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.d.ts.map +1 -1
  1136. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.js +12 -5
  1137. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Browser.js.map +1 -1
  1138. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.d.ts.map +1 -1
  1139. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/BrowsingContext.js.map +1 -1
  1140. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Navigation.d.ts.map +1 -1
  1141. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Navigation.js.map +1 -1
  1142. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.d.ts.map +1 -1
  1143. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Realm.js.map +1 -1
  1144. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.d.ts.map +1 -1
  1145. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Request.js.map +1 -1
  1146. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.d.ts.map +1 -1
  1147. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/Session.js.map +1 -1
  1148. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.d.ts.map +1 -1
  1149. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserContext.js.map +1 -1
  1150. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.d.ts.map +1 -1
  1151. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/UserPrompt.js.map +1 -1
  1152. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.d.ts +1 -1
  1153. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.d.ts.map +1 -1
  1154. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.js +0 -1
  1155. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/core/core.js.map +1 -1
  1156. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.d.ts.map +1 -1
  1157. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +7 -4
  1158. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
  1159. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.d.ts.map +1 -1
  1160. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js +3 -0
  1161. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/AriaQueryHandler.js.map +1 -1
  1162. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Binding.js +12 -5
  1163. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Binding.js.map +1 -1
  1164. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts +0 -1
  1165. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Browser.d.ts.map +1 -1
  1166. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js +12 -5
  1167. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/BrowserContext.js.map +1 -1
  1168. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.d.ts.map +1 -1
  1169. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js +3 -1
  1170. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ChromeTargetManager.js.map +1 -1
  1171. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.d.ts +1 -1
  1172. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/DeviceRequestPrompt.js +1 -1
  1173. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.d.ts.map +1 -1
  1174. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js +3 -4
  1175. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ElementHandle.js.map +1 -1
  1176. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts +3 -3
  1177. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.d.ts.map +1 -1
  1178. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js +17 -13
  1179. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExecutionContext.js.map +1 -1
  1180. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.d.ts.map +1 -1
  1181. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.js +5 -1
  1182. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/ExtensionTransport.js.map +1 -1
  1183. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.d.ts +2 -0
  1184. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.d.ts.map +1 -1
  1185. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js +17 -0
  1186. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Frame.js.map +1 -1
  1187. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js +1 -1
  1188. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/FrameManager.js.map +1 -1
  1189. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js +1 -1
  1190. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/HTTPResponse.js.map +1 -1
  1191. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.d.ts.map +1 -1
  1192. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.js.map +1 -1
  1193. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.d.ts +1 -2
  1194. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.d.ts.map +1 -1
  1195. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/IsolatedWorld.js.map +1 -1
  1196. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.d.ts.map +1 -1
  1197. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js +2 -1
  1198. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/NetworkManager.js.map +1 -1
  1199. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts +1 -1
  1200. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.d.ts.map +1 -1
  1201. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js +16 -7
  1202. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Page.js.map +1 -1
  1203. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts +4 -4
  1204. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts.map +1 -1
  1205. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js +4 -4
  1206. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts +2 -0
  1207. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.d.ts.map +1 -1
  1208. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js +2 -0
  1209. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/cdp.js.map +1 -1
  1210. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CSSQueryHandler.d.ts.map +1 -1
  1211. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.d.ts.map +1 -1
  1212. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CallbackRegistry.js.map +1 -1
  1213. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts +3 -0
  1214. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectOptions.d.ts.map +1 -1
  1215. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts.map +1 -1
  1216. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js +0 -1
  1217. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js.map +1 -1
  1218. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HandleIterator.js +12 -5
  1219. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HandleIterator.js.map +1 -1
  1220. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LazyArg.d.ts +1 -1
  1221. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LazyArg.d.ts.map +1 -1
  1222. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PierceQueryHandler.d.ts.map +1 -1
  1223. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts.map +1 -1
  1224. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js +13 -7
  1225. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js.map +1 -1
  1226. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts +7 -7
  1227. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.d.ts.map +1 -1
  1228. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js +0 -7
  1229. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/common.js.map +1 -1
  1230. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts +2 -3
  1231. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -1
  1232. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js +4 -2
  1233. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -1
  1234. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts +0 -2
  1235. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts.map +1 -1
  1236. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.d.ts +1 -1
  1237. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.d.ts.map +1 -1
  1238. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.js +1 -1
  1239. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/injected.js.map +1 -1
  1240. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
  1241. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
  1242. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/ARIAQuerySelector.d.ts.map +1 -1
  1243. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/CSSSelector.d.ts.map +1 -1
  1244. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/PQuerySelector.d.ts.map +1 -1
  1245. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/PQuerySelector.js +1 -1
  1246. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/PQuerySelector.js.map +1 -1
  1247. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/TextQuerySelector.d.ts.map +1 -1
  1248. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/XPathQuerySelector.d.ts.map +1 -1
  1249. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts +3 -3
  1250. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/injected/injected.d.ts.map +1 -1
  1251. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.d.ts.map +1 -1
  1252. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js.map +1 -1
  1253. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts.map +1 -1
  1254. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js +0 -1
  1255. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js.map +1 -1
  1256. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts +0 -1
  1257. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts.map +1 -1
  1258. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js.map +1 -1
  1259. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.d.ts +0 -1
  1260. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.d.ts.map +1 -1
  1261. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ScreenRecorder.js.map +1 -1
  1262. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.d.ts +1 -1
  1263. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.d.ts.map +1 -1
  1264. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.js +0 -1
  1265. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/node.js.map +1 -1
  1266. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core-browser.d.ts +1 -1
  1267. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core-browser.d.ts.map +1 -1
  1268. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts +6 -6
  1269. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts.map +1 -1
  1270. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.js +3 -4
  1271. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.js.map +1 -1
  1272. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +3 -3
  1273. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +3 -3
  1274. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
  1275. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.d.ts.map +1 -1
  1276. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.js +1 -0
  1277. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Deferred.js.map +1 -1
  1278. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/ErrorLike.d.ts +0 -1
  1279. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/ErrorLike.d.ts.map +1 -1
  1280. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Function.d.ts.map +1 -1
  1281. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Mutex.d.ts +1 -1
  1282. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/Mutex.d.ts.map +1 -1
  1283. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.d.ts +1 -1
  1284. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.d.ts.map +1 -1
  1285. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.js +12 -6
  1286. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/decorators.js.map +1 -1
  1287. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/disposable.d.ts.map +1 -1
  1288. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.d.ts +1 -0
  1289. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.d.ts.map +1 -1
  1290. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.js +1 -0
  1291. package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/util.js.map +1 -1
  1292. package/front_end/third_party/puppeteer/package/lib/types.d.ts +374 -577
  1293. package/front_end/third_party/puppeteer/package/package.json +6 -6
  1294. package/front_end/third_party/puppeteer/package/src/api/Browser.ts +9 -9
  1295. package/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts +6 -6
  1296. package/front_end/third_party/puppeteer/package/src/api/CDPSession.ts +2 -2
  1297. package/front_end/third_party/puppeteer/package/src/api/Dialog.ts +1 -1
  1298. package/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts +130 -130
  1299. package/front_end/third_party/puppeteer/package/src/api/Frame.ts +33 -33
  1300. package/front_end/third_party/puppeteer/package/src/api/HTTPRequest.ts +14 -9
  1301. package/front_end/third_party/puppeteer/package/src/api/Input.ts +11 -11
  1302. package/front_end/third_party/puppeteer/package/src/api/JSHandle.ts +5 -5
  1303. package/front_end/third_party/puppeteer/package/src/api/Page.ts +89 -88
  1304. package/front_end/third_party/puppeteer/package/src/api/Realm.ts +2 -2
  1305. package/front_end/third_party/puppeteer/package/src/api/WebWorker.ts +2 -2
  1306. package/front_end/third_party/puppeteer/package/src/api/api.ts +1 -1
  1307. package/front_end/third_party/puppeteer/package/src/api/locators/locators.ts +79 -79
  1308. package/front_end/third_party/puppeteer/package/src/bidi/BidiOverCdp.ts +7 -7
  1309. package/front_end/third_party/puppeteer/package/src/bidi/Browser.ts +9 -5
  1310. package/front_end/third_party/puppeteer/package/src/bidi/BrowserConnector.ts +5 -5
  1311. package/front_end/third_party/puppeteer/package/src/bidi/BrowserContext.ts +10 -10
  1312. package/front_end/third_party/puppeteer/package/src/bidi/CDPSession.ts +4 -4
  1313. package/front_end/third_party/puppeteer/package/src/bidi/Connection.ts +6 -6
  1314. package/front_end/third_party/puppeteer/package/src/bidi/ElementHandle.ts +9 -5
  1315. package/front_end/third_party/puppeteer/package/src/bidi/ExposedFunction.ts +11 -11
  1316. package/front_end/third_party/puppeteer/package/src/bidi/Frame.ts +45 -41
  1317. package/front_end/third_party/puppeteer/package/src/bidi/HTTPRequest.ts +9 -9
  1318. package/front_end/third_party/puppeteer/package/src/bidi/HTTPResponse.ts +3 -3
  1319. package/front_end/third_party/puppeteer/package/src/bidi/Input.ts +10 -10
  1320. package/front_end/third_party/puppeteer/package/src/bidi/JSHandle.ts +1 -1
  1321. package/front_end/third_party/puppeteer/package/src/bidi/Page.ts +56 -52
  1322. package/front_end/third_party/puppeteer/package/src/bidi/Realm.ts +15 -15
  1323. package/front_end/third_party/puppeteer/package/src/bidi/Serializer.ts +1 -1
  1324. package/front_end/third_party/puppeteer/package/src/bidi/Target.ts +2 -2
  1325. package/front_end/third_party/puppeteer/package/src/bidi/WebWorker.ts +2 -2
  1326. package/front_end/third_party/puppeteer/package/src/bidi/core/Browser.ts +5 -5
  1327. package/front_end/third_party/puppeteer/package/src/bidi/core/BrowsingContext.ts +18 -18
  1328. package/front_end/third_party/puppeteer/package/src/bidi/core/Connection.ts +1 -1
  1329. package/front_end/third_party/puppeteer/package/src/bidi/core/Navigation.ts +4 -4
  1330. package/front_end/third_party/puppeteer/package/src/bidi/core/Realm.ts +8 -8
  1331. package/front_end/third_party/puppeteer/package/src/bidi/core/Request.ts +6 -6
  1332. package/front_end/third_party/puppeteer/package/src/bidi/core/Session.ts +5 -5
  1333. package/front_end/third_party/puppeteer/package/src/bidi/core/UserContext.ts +10 -10
  1334. package/front_end/third_party/puppeteer/package/src/bidi/core/UserPrompt.ts +5 -5
  1335. package/front_end/third_party/puppeteer/package/src/bidi/core/core.ts +1 -1
  1336. package/front_end/third_party/puppeteer/package/src/bidi/util.ts +4 -4
  1337. package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +16 -12
  1338. package/front_end/third_party/puppeteer/package/src/cdp/AriaQueryHandler.ts +10 -6
  1339. package/front_end/third_party/puppeteer/package/src/cdp/Binding.ts +6 -6
  1340. package/front_end/third_party/puppeteer/package/src/cdp/Browser.ts +24 -24
  1341. package/front_end/third_party/puppeteer/package/src/cdp/BrowserConnector.ts +4 -4
  1342. package/front_end/third_party/puppeteer/package/src/cdp/BrowserContext.ts +2 -2
  1343. package/front_end/third_party/puppeteer/package/src/cdp/CDPSession.ts +7 -7
  1344. package/front_end/third_party/puppeteer/package/src/cdp/ChromeTargetManager.ts +19 -17
  1345. package/front_end/third_party/puppeteer/package/src/cdp/Connection.ts +7 -7
  1346. package/front_end/third_party/puppeteer/package/src/cdp/Coverage.ts +11 -11
  1347. package/front_end/third_party/puppeteer/package/src/cdp/DeviceRequestPrompt.ts +17 -17
  1348. package/front_end/third_party/puppeteer/package/src/cdp/Dialog.ts +1 -1
  1349. package/front_end/third_party/puppeteer/package/src/cdp/ElementHandle.ts +13 -9
  1350. package/front_end/third_party/puppeteer/package/src/cdp/EmulationManager.ts +34 -34
  1351. package/front_end/third_party/puppeteer/package/src/cdp/ExecutionContext.ts +19 -20
  1352. package/front_end/third_party/puppeteer/package/src/cdp/ExtensionTransport.ts +7 -3
  1353. package/front_end/third_party/puppeteer/package/src/cdp/FirefoxTargetManager.ts +7 -7
  1354. package/front_end/third_party/puppeteer/package/src/cdp/Frame.ts +38 -17
  1355. package/front_end/third_party/puppeteer/package/src/cdp/FrameManager.ts +20 -20
  1356. package/front_end/third_party/puppeteer/package/src/cdp/FrameManagerEvents.ts +1 -1
  1357. package/front_end/third_party/puppeteer/package/src/cdp/HTTPRequest.ts +5 -5
  1358. package/front_end/third_party/puppeteer/package/src/cdp/HTTPResponse.ts +5 -5
  1359. package/front_end/third_party/puppeteer/package/src/cdp/Input.ts +16 -14
  1360. package/front_end/third_party/puppeteer/package/src/cdp/IsolatedWorld.ts +15 -14
  1361. package/front_end/third_party/puppeteer/package/src/cdp/JSHandle.ts +2 -2
  1362. package/front_end/third_party/puppeteer/package/src/cdp/LifecycleWatcher.ts +11 -11
  1363. package/front_end/third_party/puppeteer/package/src/cdp/NetworkEventManager.ts +15 -15
  1364. package/front_end/third_party/puppeteer/package/src/cdp/NetworkManager.ts +38 -37
  1365. package/front_end/third_party/puppeteer/package/src/cdp/Page.ts +71 -70
  1366. package/front_end/third_party/puppeteer/package/src/cdp/PredefinedNetworkConditions.ts +4 -4
  1367. package/front_end/third_party/puppeteer/package/src/cdp/Target.ts +4 -4
  1368. package/front_end/third_party/puppeteer/package/src/cdp/TargetManager.ts +1 -1
  1369. package/front_end/third_party/puppeteer/package/src/cdp/Tracing.ts +2 -2
  1370. package/front_end/third_party/puppeteer/package/src/cdp/WebWorker.ts +5 -5
  1371. package/front_end/third_party/puppeteer/package/src/cdp/cdp.ts +2 -0
  1372. package/front_end/third_party/puppeteer/package/src/cdp/utils.ts +10 -10
  1373. package/front_end/third_party/puppeteer/package/src/common/BrowserConnector.ts +5 -5
  1374. package/front_end/third_party/puppeteer/package/src/common/CSSQueryHandler.ts +2 -2
  1375. package/front_end/third_party/puppeteer/package/src/common/CallbackRegistry.ts +9 -7
  1376. package/front_end/third_party/puppeteer/package/src/common/ConnectOptions.ts +3 -0
  1377. package/front_end/third_party/puppeteer/package/src/common/ConsoleMessage.ts +1 -1
  1378. package/front_end/third_party/puppeteer/package/src/common/CustomQueryHandler.ts +6 -6
  1379. package/front_end/third_party/puppeteer/package/src/common/Debug.ts +0 -1
  1380. package/front_end/third_party/puppeteer/package/src/common/EventEmitter.ts +8 -8
  1381. package/front_end/third_party/puppeteer/package/src/common/FileChooser.ts +3 -3
  1382. package/front_end/third_party/puppeteer/package/src/common/HandleIterator.ts +3 -3
  1383. package/front_end/third_party/puppeteer/package/src/common/LazyArg.ts +1 -1
  1384. package/front_end/third_party/puppeteer/package/src/common/NetworkManagerEvents.ts +1 -1
  1385. package/front_end/third_party/puppeteer/package/src/common/PQueryHandler.ts +2 -2
  1386. package/front_end/third_party/puppeteer/package/src/common/PSelectorParser.ts +1 -1
  1387. package/front_end/third_party/puppeteer/package/src/common/PierceQueryHandler.ts +2 -2
  1388. package/front_end/third_party/puppeteer/package/src/common/Puppeteer.ts +1 -1
  1389. package/front_end/third_party/puppeteer/package/src/common/QueryHandler.ts +13 -15
  1390. package/front_end/third_party/puppeteer/package/src/common/TaskQueue.ts +1 -1
  1391. package/front_end/third_party/puppeteer/package/src/common/TextQueryHandler.ts +1 -1
  1392. package/front_end/third_party/puppeteer/package/src/common/WaitTask.ts +8 -8
  1393. package/front_end/third_party/puppeteer/package/src/common/XPathQueryHandler.ts +2 -2
  1394. package/front_end/third_party/puppeteer/package/src/common/common.ts +7 -7
  1395. package/front_end/third_party/puppeteer/package/src/common/util.ts +17 -15
  1396. package/front_end/third_party/puppeteer/package/src/generated/injected.ts +1 -1
  1397. package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
  1398. package/front_end/third_party/puppeteer/package/src/injected/ARIAQuerySelector.ts +3 -3
  1399. package/front_end/third_party/puppeteer/package/src/injected/CSSSelector.ts +2 -2
  1400. package/front_end/third_party/puppeteer/package/src/injected/PQuerySelector.ts +8 -8
  1401. package/front_end/third_party/puppeteer/package/src/injected/PierceQuerySelector.ts +2 -2
  1402. package/front_end/third_party/puppeteer/package/src/injected/TextContent.ts +1 -1
  1403. package/front_end/third_party/puppeteer/package/src/injected/TextQuerySelector.ts +1 -1
  1404. package/front_end/third_party/puppeteer/package/src/injected/XPathQuerySelector.ts +2 -2
  1405. package/front_end/third_party/puppeteer/package/src/injected/util.ts +2 -2
  1406. package/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts +38 -30
  1407. package/front_end/third_party/puppeteer/package/src/node/ChromeLauncher.ts +11 -12
  1408. package/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts +8 -8
  1409. package/front_end/third_party/puppeteer/package/src/node/NodeWebSocketTransport.ts +1 -1
  1410. package/front_end/third_party/puppeteer/package/src/node/PipeTransport.ts +7 -3
  1411. package/front_end/third_party/puppeteer/package/src/node/PuppeteerNode.ts +4 -4
  1412. package/front_end/third_party/puppeteer/package/src/node/ScreenRecorder.ts +11 -11
  1413. package/front_end/third_party/puppeteer/package/src/node/node.ts +1 -1
  1414. package/front_end/third_party/puppeteer/package/src/puppeteer-core.ts +4 -4
  1415. package/front_end/third_party/puppeteer/package/src/revisions.ts +3 -3
  1416. package/front_end/third_party/puppeteer/package/src/util/AsyncIterableUtil.ts +3 -3
  1417. package/front_end/third_party/puppeteer/package/src/util/Deferred.ts +3 -2
  1418. package/front_end/third_party/puppeteer/package/src/util/ErrorLike.ts +1 -1
  1419. package/front_end/third_party/puppeteer/package/src/util/Function.ts +4 -4
  1420. package/front_end/third_party/puppeteer/package/src/util/Mutex.ts +1 -1
  1421. package/front_end/third_party/puppeteer/package/src/util/assert.ts +1 -1
  1422. package/front_end/third_party/puppeteer/package/src/util/decorators.ts +8 -9
  1423. package/front_end/third_party/puppeteer/package/src/util/encoding.ts +1 -1
  1424. package/front_end/third_party/puppeteer/package/src/util/util.ts +1 -0
  1425. package/front_end/third_party/puppeteer/puppeteer.ts +1 -1
  1426. package/front_end/third_party/web-vitals/README.chromium +3 -3
  1427. package/front_end/third_party/web-vitals/package/README.md +36 -23
  1428. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.d.ts +2 -1
  1429. package/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js +11 -13
  1430. package/front_end/third_party/web-vitals/package/dist/modules/lib/bindReporter.d.ts +2 -22
  1431. package/front_end/third_party/web-vitals/package/dist/modules/lib/initMetric.d.ts +3 -2
  1432. package/front_end/third_party/web-vitals/package/dist/modules/lib/interactions.js +1 -1
  1433. package/front_end/third_party/web-vitals/package/dist/modules/onLCP.js +4 -1
  1434. package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.iife.js +1 -1
  1435. package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.js +1 -1
  1436. package/front_end/third_party/web-vitals/package/dist/web-vitals.attribution.umd.cjs +1 -1
  1437. package/front_end/third_party/web-vitals/package/dist/web-vitals.iife.js +1 -1
  1438. package/front_end/third_party/web-vitals/package/dist/web-vitals.js +1 -1
  1439. package/front_end/third_party/web-vitals/package/dist/web-vitals.umd.cjs +1 -1
  1440. package/front_end/third_party/web-vitals/package/package.json +1 -1
  1441. package/front_end/third_party/web-vitals/package/src/attribution/onINP.ts +11 -14
  1442. package/front_end/third_party/web-vitals/package/src/lib/interactions.ts +1 -1
  1443. package/front_end/third_party/web-vitals/package/src/onLCP.ts +4 -1
  1444. package/front_end/third_party/web-vitals/rebuild.sh +14 -0
  1445. package/front_end/third_party/web-vitals/web-vitals.ts +2 -0
  1446. package/front_end/ui/components/adorners/Adorner.ts +0 -1
  1447. package/front_end/ui/components/buttons/Button.ts +18 -18
  1448. package/front_end/ui/components/buttons/button.css +1 -4
  1449. package/front_end/ui/components/cards/Card.test.ts +92 -0
  1450. package/front_end/ui/components/cards/Card.ts +76 -0
  1451. package/front_end/ui/components/cards/card.css +50 -0
  1452. package/front_end/ui/components/cards/cards.ts +9 -0
  1453. package/front_end/ui/components/chrome_link/ChromeLink.test.ts +5 -3
  1454. package/front_end/ui/components/chrome_link/ChromeLink.ts +3 -2
  1455. package/front_end/ui/components/data_grid/DataGrid.test.ts +3 -1
  1456. package/front_end/ui/components/data_grid/DataGrid.ts +25 -24
  1457. package/front_end/ui/components/data_grid/DataGridContextMenuUtils.ts +2 -2
  1458. package/front_end/ui/components/data_grid/DataGridController.ts +10 -7
  1459. package/front_end/ui/components/data_grid/DataGridControllerIntegrator.ts +1 -2
  1460. package/front_end/ui/components/data_grid/DataGridEvents.ts +1 -1
  1461. package/front_end/ui/components/data_grid/DataGridRenderers.ts +7 -4
  1462. package/front_end/ui/components/dialogs/Dialog.ts +4 -3
  1463. package/front_end/ui/components/dialogs/IconDialog.ts +18 -18
  1464. package/front_end/ui/components/dialogs/ShortcutDialog.ts +13 -12
  1465. package/front_end/ui/components/diff_view/DiffView.ts +9 -9
  1466. package/front_end/ui/components/docs/building-ui-documentation/ComponentPerformance.md +1 -4
  1467. package/front_end/ui/components/docs/building-ui-documentation/CreatingComponents.md +14 -44
  1468. package/front_end/ui/components/docs/create_breadcrumbs.ts +3 -1
  1469. package/front_end/ui/components/docs/expandable_list/basic.ts +4 -2
  1470. package/front_end/ui/components/docs/floating_button/basic.html +26 -0
  1471. package/front_end/ui/components/docs/floating_button/basic.ts +20 -0
  1472. package/front_end/ui/components/docs/freestyler/basic.ts +5 -1
  1473. package/front_end/ui/components/docs/freestyler/empty_state.ts +5 -0
  1474. package/front_end/ui/components/docs/icon_dialog/basic.ts +9 -7
  1475. package/front_end/ui/components/docs/panel_introduction_steps/basic.ts +7 -4
  1476. package/front_end/ui/components/docs/performance_panel/basic.ts +4 -1
  1477. package/front_end/ui/components/docs/performance_panel/flamechart.html +4 -0
  1478. package/front_end/ui/components/docs/performance_panel/flamechart.ts +45 -0
  1479. package/front_end/ui/components/docs/recorder_select_button/basic.ts +21 -18
  1480. package/front_end/ui/components/docs/report/basic.ts +21 -25
  1481. package/front_end/ui/components/docs/theme_colors/basic.ts +4 -2
  1482. package/front_end/ui/components/docs/tree_outline/custom-renderers.ts +4 -2
  1483. package/front_end/ui/components/expandable_list/ExpandableList.test.ts +5 -3
  1484. package/front_end/ui/components/expandable_list/ExpandableList.ts +6 -5
  1485. package/front_end/ui/components/floating_button/FloatingButton.ts +50 -0
  1486. package/front_end/ui/components/floating_button/floatingButton.css +63 -0
  1487. package/front_end/ui/components/floating_button/floating_button.ts +7 -0
  1488. package/front_end/ui/components/helpers/helpers.test.ts +18 -14
  1489. package/front_end/ui/components/icon_button/FileSourceIcon.test.ts +32 -0
  1490. package/front_end/ui/components/icon_button/FileSourceIcon.ts +76 -0
  1491. package/front_end/ui/components/icon_button/Icon.ts +2 -5
  1492. package/front_end/ui/components/icon_button/IconButton.ts +15 -11
  1493. package/front_end/ui/components/icon_button/fileSourceIcon.css +43 -0
  1494. package/front_end/ui/components/icon_button/icon_button.ts +2 -0
  1495. package/front_end/ui/components/issue_counter/IssueCounter.ts +6 -4
  1496. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +7 -5
  1497. package/front_end/ui/components/legacy_wrapper/LegacyWrapper.ts +1 -2
  1498. package/front_end/ui/components/linkifier/LinkifierImpl.ts +6 -2
  1499. package/front_end/ui/components/markdown_view/CodeBlock.test.ts +7 -7
  1500. package/front_end/ui/components/markdown_view/CodeBlock.ts +33 -42
  1501. package/front_end/ui/components/markdown_view/MarkdownImage.ts +12 -10
  1502. package/front_end/ui/components/markdown_view/MarkdownLink.ts +3 -2
  1503. package/front_end/ui/components/markdown_view/MarkdownView.test.ts +51 -3
  1504. package/front_end/ui/components/markdown_view/MarkdownView.ts +43 -23
  1505. package/front_end/ui/components/markdown_view/codeBlock.css +6 -28
  1506. package/front_end/ui/components/markdown_view/markdownLink.css +1 -1
  1507. package/front_end/ui/components/markdown_view/markdownView.css +4 -0
  1508. package/front_end/ui/components/menus/Menu.ts +7 -8
  1509. package/front_end/ui/components/menus/SelectMenu.test.ts +3 -1
  1510. package/front_end/ui/components/menus/SelectMenu.ts +17 -17
  1511. package/front_end/ui/components/menus/selectMenu.css +8 -5
  1512. package/front_end/ui/components/menus/selectMenuButton.css +29 -17
  1513. package/front_end/ui/components/node_text/NodeText.ts +0 -1
  1514. package/front_end/ui/components/panel_feedback/FeedbackButton.ts +5 -4
  1515. package/front_end/ui/components/panel_feedback/PanelFeedback.ts +7 -5
  1516. package/front_end/ui/components/panel_feedback/PreviewToggle.ts +6 -6
  1517. package/front_end/ui/components/panel_introduction_steps/PanelIntroductionSteps.ts +3 -2
  1518. package/front_end/ui/components/report_view/ReportView.test.ts +5 -3
  1519. package/front_end/ui/components/report_view/ReportView.ts +10 -14
  1520. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +8 -6
  1521. package/front_end/ui/components/settings/SettingCheckbox.ts +38 -18
  1522. package/front_end/ui/components/settings/SettingDeprecationWarning.ts +6 -5
  1523. package/front_end/ui/components/settings/settingCheckbox.css +1 -0
  1524. package/front_end/ui/components/spinners/Spinner.ts +3 -2
  1525. package/front_end/ui/components/spinners/spinner.css +1 -0
  1526. package/front_end/ui/components/split_view/SplitView.ts +3 -2
  1527. package/front_end/ui/components/srgb_overlay/SrgbOverlay.ts +3 -2
  1528. package/front_end/ui/components/suggestion_input/SuggestionInput.ts +3 -2
  1529. package/front_end/ui/components/survey_link/SurveyLink.ts +6 -4
  1530. package/front_end/ui/components/switch/SwitchImpl.ts +3 -2
  1531. package/front_end/ui/components/text_editor/TextEditor.ts +0 -2
  1532. package/front_end/ui/components/text_editor/TextEditorHistory.ts +2 -2
  1533. package/front_end/ui/components/text_prompt/TextPrompt.ts +3 -2
  1534. package/front_end/ui/components/tree_outline/TreeOutline.test.ts +8 -6
  1535. package/front_end/ui/components/tree_outline/TreeOutline.ts +9 -9
  1536. package/front_end/ui/components/two_states_counter/TwoStatesCounter.ts +5 -4
  1537. package/front_end/ui/legacy/Context.ts +1 -1
  1538. package/front_end/ui/legacy/ContextMenu.ts +46 -7
  1539. package/front_end/ui/legacy/Dialog.ts +2 -2
  1540. package/front_end/ui/legacy/DockController.ts +2 -2
  1541. package/front_end/ui/legacy/FilterBar.test.ts +52 -0
  1542. package/front_end/ui/legacy/FilterBar.ts +47 -2
  1543. package/front_end/ui/legacy/FilterSuggestionBuilder.ts +1 -1
  1544. package/front_end/ui/legacy/GlassPane.ts +1 -1
  1545. package/front_end/ui/legacy/Infobar.ts +1 -1
  1546. package/front_end/ui/legacy/InspectorView.ts +5 -5
  1547. package/front_end/ui/legacy/KeyboardShortcut.ts +35 -21
  1548. package/front_end/ui/legacy/Panel.ts +3 -3
  1549. package/front_end/ui/legacy/ShortcutRegistry.ts +11 -8
  1550. package/front_end/ui/legacy/SoftContextMenu.ts +3 -0
  1551. package/front_end/ui/legacy/SplitWidget.test.ts +33 -1
  1552. package/front_end/ui/legacy/SplitWidget.ts +62 -7
  1553. package/front_end/ui/legacy/TabbedPane.ts +24 -0
  1554. package/front_end/ui/legacy/ThrottledWidget.ts +2 -2
  1555. package/front_end/ui/legacy/Toolbar.test.ts +39 -0
  1556. package/front_end/ui/legacy/Toolbar.ts +17 -17
  1557. package/front_end/ui/legacy/Treeoutline.ts +7 -4
  1558. package/front_end/ui/legacy/UIUtils.ts +10 -1
  1559. package/front_end/ui/legacy/View.ts +4 -4
  1560. package/front_end/ui/legacy/ViewManager.ts +5 -3
  1561. package/front_end/ui/legacy/ViewRegistration.ts +2 -2
  1562. package/front_end/ui/legacy/Widget.ts +64 -16
  1563. package/front_end/ui/legacy/XElement.ts +0 -1
  1564. package/front_end/ui/legacy/XLink.test.ts +3 -1
  1565. package/front_end/ui/legacy/XLink.ts +6 -4
  1566. package/front_end/ui/legacy/checkboxTextLabel.css +4 -0
  1567. package/front_end/ui/legacy/components/color_picker/Spectrum.ts +1 -1
  1568. package/front_end/ui/legacy/components/data_grid/DataGrid.test.ts +51 -0
  1569. package/front_end/ui/legacy/components/data_grid/DataGrid.ts +92 -6
  1570. package/front_end/ui/legacy/components/data_grid/DataGridWithPreview.ts +21 -10
  1571. package/front_end/ui/legacy/components/data_grid/dataGrid.css +8 -1
  1572. package/front_end/ui/legacy/components/inline_editor/AnimationTimingUI.ts +1 -1
  1573. package/front_end/ui/legacy/components/inline_editor/CSSAngle.ts +11 -11
  1574. package/front_end/ui/legacy/components/inline_editor/CSSAngleEditor.ts +0 -1
  1575. package/front_end/ui/legacy/components/inline_editor/CSSAngleSwatch.ts +0 -1
  1576. package/front_end/ui/legacy/components/inline_editor/CSSLength.ts +0 -1
  1577. package/front_end/ui/legacy/components/inline_editor/ColorMixSwatch.ts +3 -2
  1578. package/front_end/ui/legacy/components/inline_editor/ColorSwatch.ts +3 -2
  1579. package/front_end/ui/legacy/components/inline_editor/LinkSwatch.ts +9 -12
  1580. package/front_end/ui/legacy/components/inline_editor/Swatches.ts +6 -6
  1581. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +2 -2
  1582. package/front_end/ui/legacy/components/perf_ui/BrickBreaker.ts +2 -2
  1583. package/front_end/ui/legacy/components/perf_ui/CanvasHelper.ts +1 -83
  1584. package/front_end/ui/legacy/components/perf_ui/ChartViewport.ts +3 -2
  1585. package/front_end/ui/legacy/components/perf_ui/FilmStripView.test.ts +9 -9
  1586. package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +209 -68
  1587. package/front_end/ui/legacy/components/perf_ui/PieChart.ts +1 -1
  1588. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewCalculator.ts +1 -1
  1589. package/front_end/ui/legacy/components/perf_ui/TimelineOverviewPane.ts +3 -3
  1590. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.test.ts +5 -9
  1591. package/front_end/ui/legacy/components/source_frame/BinaryResourceViewFactory.ts +9 -60
  1592. package/front_end/ui/legacy/components/source_frame/SourceFrame.test.ts +18 -0
  1593. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +20 -3
  1594. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.test.ts +69 -0
  1595. package/front_end/ui/legacy/components/source_frame/StreamingContentHexView.ts +122 -0
  1596. package/front_end/ui/legacy/components/source_frame/source_frame.ts +2 -0
  1597. package/front_end/ui/legacy/designTokens.css +46 -40
  1598. package/front_end/ui/legacy/filter.css +23 -8
  1599. package/front_end/ui/legacy/inspectorCommon.css +31 -30
  1600. package/front_end/ui/legacy/searchableView.css +4 -3
  1601. package/front_end/ui/legacy/softDropDownButton.css +10 -6
  1602. package/front_end/ui/legacy/tabbedPane.css +1 -1
  1603. package/front_end/ui/legacy/themeColors.css +10 -0
  1604. package/front_end/ui/legacy/toolbar.css +42 -18
  1605. package/front_end/ui/legacy/treeoutline.css +0 -3
  1606. package/front_end/ui/lit-html/static.test.ts +8 -8
  1607. package/front_end/ui/visual_logging/Debugging.ts +1 -1
  1608. package/front_end/ui/visual_logging/KnownContextValues.ts +99 -4
  1609. package/front_end/ui/visual_logging/LoggingDriver.test.ts +53 -6
  1610. package/front_end/ui/visual_logging/LoggingDriver.ts +9 -6
  1611. package/front_end/ui/visual_logging/LoggingEvents.test.ts +5 -1
  1612. package/front_end/ui/visual_logging/LoggingEvents.ts +29 -29
  1613. package/front_end/ui/visual_logging/LoggingState.ts +2 -2
  1614. package/front_end/ui/visual_logging/NonDomState.ts +2 -2
  1615. package/front_end/ui/visual_logging/visual_logging.ts +3 -1
  1616. package/inspector_overlay/css_grid_label_helpers.test.ts +103 -0
  1617. package/inspector_overlay/css_grid_label_helpers.ts +63 -12
  1618. package/inspector_overlay/highlight_common.ts +2 -2
  1619. package/inspector_overlay/highlight_container_query.ts +1 -2
  1620. package/inspector_overlay/highlight_flex_common.test.ts +1 -1
  1621. package/inspector_overlay/highlight_flex_common.ts +2 -3
  1622. package/inspector_overlay/highlight_grid_common.ts +10 -4
  1623. package/inspector_overlay/highlight_isolated_element.ts +1 -1
  1624. package/inspector_overlay/highlight_scroll_snap.ts +1 -2
  1625. package/inspector_overlay/testing/InspectorOverlayHelpers.ts +1 -1
  1626. package/inspector_overlay/tool_highlight.ts +4 -8
  1627. package/package.json +8 -8
  1628. package/scripts/build/esbuild.js +3 -1
  1629. package/scripts/devtools_paths.js +19 -2
  1630. package/scripts/eslint_rules/lib/avoid_assert_equal.js +34 -7
  1631. package/scripts/eslint_rules/lib/check_test_definitions.js +1 -1
  1632. package/scripts/eslint_rules/lib/html_tagged_template.js +55 -0
  1633. package/scripts/eslint_rules/lib/inline_type_imports.js +22 -23
  1634. package/scripts/eslint_rules/tests/avoid_assert_equal_test.js +61 -2
  1635. package/scripts/eslint_rules/tests/check_test_definitions_test.js +10 -0
  1636. package/scripts/eslint_rules/tests/html_tagged_template_test.js +96 -0
  1637. package/scripts/eslint_rules/tests/inline_type_imports_test.js +5 -25
  1638. package/scripts/freestyler/eval/index.js +83 -47
  1639. package/scripts/protocol_typescript/protocol_dts_generator.ts +1 -1
  1640. package/scripts/stylelint_rules/lib/use_theme_colors.js +2 -1
  1641. package/scripts/stylelint_rules/tests/use_theme_colors_test.js +16 -0
  1642. package/tsconfig.json +11 -1
  1643. package/docs/add_uma_metrics.md +0 -41
  1644. package/docs/uma_metrics.md +0 -23
  1645. package/front_end/Images/src/spark.svg +0 -3
  1646. package/front_end/panels/animation/AnimationDOMNode.ts +0 -268
  1647. package/front_end/panels/freestyler/components/ProvideFeedback.test.ts +0 -29
  1648. package/front_end/panels/freestyler/components/provideFeedback.css +0 -60
  1649. package/front_end/panels/timeline/components/insights/lcpDiscovery.css +0 -13
  1650. package/scripts/eslint_rules/lib/ban_literal_devtools_component_tag_names.js +0 -40
  1651. package/scripts/eslint_rules/lib/check_component_naming.js +0 -214
  1652. package/scripts/eslint_rules/lib/lit_html_data_as_type.js +0 -83
  1653. package/scripts/eslint_rules/tests/ban_literal_devtools_component_tag_names_test.js +0 -38
  1654. package/scripts/eslint_rules/tests/check_component_naming_test.js +0 -246
  1655. package/scripts/eslint_rules/tests/lit_html_data_as_type_test.js +0 -81
@@ -0,0 +1,13 @@
1
+ const fs = require('fs')
2
+ const JSON5 = require('./')
3
+
4
+ // eslint-disable-next-line node/no-deprecated-api
5
+ require.extensions['.json5'] = function (module, filename) {
6
+ const content = fs.readFileSync(filename, 'utf8')
7
+ try {
8
+ module.exports = JSON5.parse(content)
9
+ } catch (err) {
10
+ err.message = filename + ': ' + err.message
11
+ throw err
12
+ }
13
+ }
@@ -0,0 +1,4 @@
1
+ // This file is for backward compatibility with v0.5.1.
2
+ require('./register')
3
+
4
+ console.warn("'json5/require' is deprecated. Please use 'json5/register' instead.")
@@ -0,0 +1,89 @@
1
+ declare type StringifyOptions = {
2
+ /**
3
+ * A function that alters the behavior of the stringification process, or an
4
+ * array of String and Number objects that serve as a allowlist for
5
+ * selecting/filtering the properties of the value object to be included in
6
+ * the JSON5 string. If this value is null or not provided, all properties
7
+ * of the object are included in the resulting JSON5 string.
8
+ */
9
+ replacer?:
10
+ | ((this: any, key: string, value: any) => any)
11
+ | (string | number)[]
12
+ | null
13
+
14
+ /**
15
+ * A String or Number object that's used to insert white space into the
16
+ * output JSON5 string for readability purposes. If this is a Number, it
17
+ * indicates the number of space characters to use as white space; this
18
+ * number is capped at 10 (if it is greater, the value is just 10). Values
19
+ * less than 1 indicate that no space should be used. If this is a String,
20
+ * the string (or the first 10 characters of the string, if it's longer than
21
+ * that) is used as white space. If this parameter is not provided (or is
22
+ * null), no white space is used. If white space is used, trailing commas
23
+ * will be used in objects and arrays.
24
+ */
25
+ space?: string | number | null
26
+
27
+ /**
28
+ * A String representing the quote character to use when serializing
29
+ * strings.
30
+ */
31
+ quote?: string | null
32
+ }
33
+
34
+ /**
35
+ * Converts a JavaScript value to a JSON5 string.
36
+ * @param value The value to convert to a JSON5 string.
37
+ * @param replacer A function that alters the behavior of the stringification
38
+ * process. If this value is null or not provided, all properties of the object
39
+ * are included in the resulting JSON5 string.
40
+ * @param space A String or Number object that's used to insert white space into
41
+ * the output JSON5 string for readability purposes. If this is a Number, it
42
+ * indicates the number of space characters to use as white space; this number
43
+ * is capped at 10 (if it is greater, the value is just 10). Values less than 1
44
+ * indicate that no space should be used. If this is a String, the string (or
45
+ * the first 10 characters of the string, if it's longer than that) is used as
46
+ * white space. If this parameter is not provided (or is null), no white space
47
+ * is used. If white space is used, trailing commas will be used in objects and
48
+ * arrays.
49
+ * @returns The JSON5 string converted from the JavaScript value.
50
+ */
51
+ declare function stringify(
52
+ value: any,
53
+ replacer?: ((this: any, key: string, value: any) => any) | null,
54
+ space?: string | number | null,
55
+ ): string
56
+
57
+ /**
58
+ * Converts a JavaScript value to a JSON5 string.
59
+ * @param value The value to convert to a JSON5 string.
60
+ * @param replacer An array of String and Number objects that serve as a
61
+ * allowlist for selecting/filtering the properties of the value object to be
62
+ * included in the JSON5 string. If this value is null or not provided, all
63
+ * properties of the object are included in the resulting JSON5 string.
64
+ * @param space A String or Number object that's used to insert white space into
65
+ * the output JSON5 string for readability purposes. If this is a Number, it
66
+ * indicates the number of space characters to use as white space; this number
67
+ * is capped at 10 (if it is greater, the value is just 10). Values less than 1
68
+ * indicate that no space should be used. If this is a String, the string (or
69
+ * the first 10 characters of the string, if it's longer than that) is used as
70
+ * white space. If this parameter is not provided (or is null), no white space
71
+ * is used. If white space is used, trailing commas will be used in objects and
72
+ * arrays.
73
+ * @returns The JSON5 string converted from the JavaScript value.
74
+ */
75
+ declare function stringify(
76
+ value: any,
77
+ replacer: (string | number)[],
78
+ space?: string | number | null,
79
+ ): string
80
+
81
+ /**
82
+ * Converts a JavaScript value to a JSON5 string.
83
+ * @param value The value to convert to a JSON5 string.
84
+ * @param options An object specifying options.
85
+ * @returns The JSON5 string converted from the JavaScript value.
86
+ */
87
+ declare function stringify(value: any, options: StringifyOptions): string
88
+
89
+ export = stringify
@@ -0,0 +1,261 @@
1
+ const util = require('./util')
2
+
3
+ module.exports = function stringify (value, replacer, space) {
4
+ const stack = []
5
+ let indent = ''
6
+ let propertyList
7
+ let replacerFunc
8
+ let gap = ''
9
+ let quote
10
+
11
+ if (
12
+ replacer != null &&
13
+ typeof replacer === 'object' &&
14
+ !Array.isArray(replacer)
15
+ ) {
16
+ space = replacer.space
17
+ quote = replacer.quote
18
+ replacer = replacer.replacer
19
+ }
20
+
21
+ if (typeof replacer === 'function') {
22
+ replacerFunc = replacer
23
+ } else if (Array.isArray(replacer)) {
24
+ propertyList = []
25
+ for (const v of replacer) {
26
+ let item
27
+
28
+ if (typeof v === 'string') {
29
+ item = v
30
+ } else if (
31
+ typeof v === 'number' ||
32
+ v instanceof String ||
33
+ v instanceof Number
34
+ ) {
35
+ item = String(v)
36
+ }
37
+
38
+ if (item !== undefined && propertyList.indexOf(item) < 0) {
39
+ propertyList.push(item)
40
+ }
41
+ }
42
+ }
43
+
44
+ if (space instanceof Number) {
45
+ space = Number(space)
46
+ } else if (space instanceof String) {
47
+ space = String(space)
48
+ }
49
+
50
+ if (typeof space === 'number') {
51
+ if (space > 0) {
52
+ space = Math.min(10, Math.floor(space))
53
+ gap = ' '.substr(0, space)
54
+ }
55
+ } else if (typeof space === 'string') {
56
+ gap = space.substr(0, 10)
57
+ }
58
+
59
+ return serializeProperty('', {'': value})
60
+
61
+ function serializeProperty (key, holder) {
62
+ let value = holder[key]
63
+ if (value != null) {
64
+ if (typeof value.toJSON5 === 'function') {
65
+ value = value.toJSON5(key)
66
+ } else if (typeof value.toJSON === 'function') {
67
+ value = value.toJSON(key)
68
+ }
69
+ }
70
+
71
+ if (replacerFunc) {
72
+ value = replacerFunc.call(holder, key, value)
73
+ }
74
+
75
+ if (value instanceof Number) {
76
+ value = Number(value)
77
+ } else if (value instanceof String) {
78
+ value = String(value)
79
+ } else if (value instanceof Boolean) {
80
+ value = value.valueOf()
81
+ }
82
+
83
+ switch (value) {
84
+ case null: return 'null'
85
+ case true: return 'true'
86
+ case false: return 'false'
87
+ }
88
+
89
+ if (typeof value === 'string') {
90
+ return quoteString(value, false)
91
+ }
92
+
93
+ if (typeof value === 'number') {
94
+ return String(value)
95
+ }
96
+
97
+ if (typeof value === 'object') {
98
+ return Array.isArray(value) ? serializeArray(value) : serializeObject(value)
99
+ }
100
+
101
+ return undefined
102
+ }
103
+
104
+ function quoteString (value) {
105
+ const quotes = {
106
+ "'": 0.1,
107
+ '"': 0.2,
108
+ }
109
+
110
+ const replacements = {
111
+ "'": "\\'",
112
+ '"': '\\"',
113
+ '\\': '\\\\',
114
+ '\b': '\\b',
115
+ '\f': '\\f',
116
+ '\n': '\\n',
117
+ '\r': '\\r',
118
+ '\t': '\\t',
119
+ '\v': '\\v',
120
+ '\0': '\\0',
121
+ '\u2028': '\\u2028',
122
+ '\u2029': '\\u2029',
123
+ }
124
+
125
+ let product = ''
126
+
127
+ for (let i = 0; i < value.length; i++) {
128
+ const c = value[i]
129
+ switch (c) {
130
+ case "'":
131
+ case '"':
132
+ quotes[c]++
133
+ product += c
134
+ continue
135
+
136
+ case '\0':
137
+ if (util.isDigit(value[i + 1])) {
138
+ product += '\\x00'
139
+ continue
140
+ }
141
+ }
142
+
143
+ if (replacements[c]) {
144
+ product += replacements[c]
145
+ continue
146
+ }
147
+
148
+ if (c < ' ') {
149
+ let hexString = c.charCodeAt(0).toString(16)
150
+ product += '\\x' + ('00' + hexString).substring(hexString.length)
151
+ continue
152
+ }
153
+
154
+ product += c
155
+ }
156
+
157
+ const quoteChar = quote || Object.keys(quotes).reduce((a, b) => (quotes[a] < quotes[b]) ? a : b)
158
+
159
+ product = product.replace(new RegExp(quoteChar, 'g'), replacements[quoteChar])
160
+
161
+ return quoteChar + product + quoteChar
162
+ }
163
+
164
+ function serializeObject (value) {
165
+ if (stack.indexOf(value) >= 0) {
166
+ throw TypeError('Converting circular structure to JSON5')
167
+ }
168
+
169
+ stack.push(value)
170
+
171
+ let stepback = indent
172
+ indent = indent + gap
173
+
174
+ let keys = propertyList || Object.keys(value)
175
+ let partial = []
176
+ for (const key of keys) {
177
+ const propertyString = serializeProperty(key, value)
178
+ if (propertyString !== undefined) {
179
+ let member = serializeKey(key) + ':'
180
+ if (gap !== '') {
181
+ member += ' '
182
+ }
183
+ member += propertyString
184
+ partial.push(member)
185
+ }
186
+ }
187
+
188
+ let final
189
+ if (partial.length === 0) {
190
+ final = '{}'
191
+ } else {
192
+ let properties
193
+ if (gap === '') {
194
+ properties = partial.join(',')
195
+ final = '{' + properties + '}'
196
+ } else {
197
+ let separator = ',\n' + indent
198
+ properties = partial.join(separator)
199
+ final = '{\n' + indent + properties + ',\n' + stepback + '}'
200
+ }
201
+ }
202
+
203
+ stack.pop()
204
+ indent = stepback
205
+ return final
206
+ }
207
+
208
+ function serializeKey (key) {
209
+ if (key.length === 0) {
210
+ return quoteString(key, true)
211
+ }
212
+
213
+ const firstChar = String.fromCodePoint(key.codePointAt(0))
214
+ if (!util.isIdStartChar(firstChar)) {
215
+ return quoteString(key, true)
216
+ }
217
+
218
+ for (let i = firstChar.length; i < key.length; i++) {
219
+ if (!util.isIdContinueChar(String.fromCodePoint(key.codePointAt(i)))) {
220
+ return quoteString(key, true)
221
+ }
222
+ }
223
+
224
+ return key
225
+ }
226
+
227
+ function serializeArray (value) {
228
+ if (stack.indexOf(value) >= 0) {
229
+ throw TypeError('Converting circular structure to JSON5')
230
+ }
231
+
232
+ stack.push(value)
233
+
234
+ let stepback = indent
235
+ indent = indent + gap
236
+
237
+ let partial = []
238
+ for (let i = 0; i < value.length; i++) {
239
+ const propertyString = serializeProperty(String(i), value)
240
+ partial.push((propertyString !== undefined) ? propertyString : 'null')
241
+ }
242
+
243
+ let final
244
+ if (partial.length === 0) {
245
+ final = '[]'
246
+ } else {
247
+ if (gap === '') {
248
+ let properties = partial.join(',')
249
+ final = '[' + properties + ']'
250
+ } else {
251
+ let separator = ',\n' + indent
252
+ let properties = partial.join(separator)
253
+ final = '[\n' + indent + properties + ',\n' + stepback + ']'
254
+ }
255
+ }
256
+
257
+ stack.pop()
258
+ indent = stepback
259
+ return final
260
+ }
261
+ }
@@ -0,0 +1,3 @@
1
+ export declare const Space_Separator: RegExp
2
+ export declare const ID_Start: RegExp
3
+ export declare const ID_Continue: RegExp
@@ -0,0 +1,4 @@
1
+ // This is a generated file. Do not edit.
2
+ module.exports.Space_Separator = /[\u1680\u2000-\u200A\u202F\u205F\u3000]/
3
+ module.exports.ID_Start = /[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE83\uDE86-\uDE89\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]/
4
+ module.exports.ID_Continue = /[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u08D4-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u09FC\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1CD0-\u1CD2\u1CD4-\u1CF9\u1D00-\u1DF9\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDE00-\uDE3E\uDE47\uDE50-\uDE83\uDE86-\uDE99\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4A\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/
@@ -0,0 +1,5 @@
1
+ export declare function isSpaceSeparator(c?: string): boolean
2
+ export declare function isIdStartChar(c?: string): boolean
3
+ export declare function isIdContinueChar(c?: string): boolean
4
+ export declare function isDigit(c?: string): boolean
5
+ export declare function isHexDigit(c?: string): boolean
@@ -0,0 +1,35 @@
1
+ const unicode = require('../lib/unicode')
2
+
3
+ module.exports = {
4
+ isSpaceSeparator (c) {
5
+ return typeof c === 'string' && unicode.Space_Separator.test(c)
6
+ },
7
+
8
+ isIdStartChar (c) {
9
+ return typeof c === 'string' && (
10
+ (c >= 'a' && c <= 'z') ||
11
+ (c >= 'A' && c <= 'Z') ||
12
+ (c === '$') || (c === '_') ||
13
+ unicode.ID_Start.test(c)
14
+ )
15
+ },
16
+
17
+ isIdContinueChar (c) {
18
+ return typeof c === 'string' && (
19
+ (c >= 'a' && c <= 'z') ||
20
+ (c >= 'A' && c <= 'Z') ||
21
+ (c >= '0' && c <= '9') ||
22
+ (c === '$') || (c === '_') ||
23
+ (c === '\u200C') || (c === '\u200D') ||
24
+ unicode.ID_Continue.test(c)
25
+ )
26
+ },
27
+
28
+ isDigit (c) {
29
+ return typeof c === 'string' && /[0-9]/.test(c)
30
+ },
31
+
32
+ isHexDigit (c) {
33
+ return typeof c === 'string' && /[0-9A-Fa-f]/.test(c)
34
+ },
35
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "json5",
3
+ "description": "Package list used when building/upgrading json5",
4
+ "private": true,
5
+ "dependencies": {
6
+ "esbuild": "0.24.0"
7
+ }
8
+ }
@@ -0,0 +1,5 @@
1
+ npm install
2
+ ./node_modules/.bin/esbuild --bundle package/lib/index.js --format=esm --outdir=lib
3
+ rm -rf node_modules package-lock.json
4
+ # Because there's a bug in clang causing it to reformat import lists even where formatting is disabled, run it right away
5
+ git cl format --js
@@ -1,10 +1,10 @@
1
1
  Name: Puppeteer Core
2
2
  Short Name: Puppeteer Core
3
3
  URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
4
- Version: 23.5.0
4
+ Version: 23.6.1
5
5
  License: Apache-2.0
6
6
  License File: LICENSE
7
- Revision: ce1ed7ad74a90acc37f2a5e284ad8d8da360e462
7
+ Revision: 2b06f0a674d8b59f097609993e21cef4caa92e00
8
8
  Security Critical: no
9
9
  Shipped: yes
10
10
 
@@ -1,9 +1,9 @@
1
+ /// <reference types="node" preserve="true" />
1
2
  /**
2
3
  * @license
3
4
  * Copyright 2017 Google Inc.
4
5
  * SPDX-License-Identifier: Apache-2.0
5
6
  */
6
- /// <reference types="node" />
7
7
  import type { ChildProcess } from 'child_process';
8
8
  import type { Protocol } from 'devtools-protocol';
9
9
  import type { ProtocolType } from '../common/ConnectOptions.js';
@@ -257,7 +257,7 @@ export declare abstract class Browser extends EventEmitter<BrowserEvents> {
257
257
  * ```ts
258
258
  * await page.evaluate(() => window.open('https://www.example.com/'));
259
259
  * const newWindowTarget = await browser.waitForTarget(
260
- * target => target.url() === 'https://www.example.com/'
260
+ * target => target.url() === 'https://www.example.com/',
261
261
  * );
262
262
  * ```
263
263
  */
@@ -1 +1 @@
1
- {"version":3,"file":"Browser.d.ts","sourceRoot":"","sources":["../../../../src/api/Browser.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Browser.d.ts","sourceRoot":"","sources":["../../../../src/api/Browser.ts"],"names":[],"mappings":"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"}
@@ -1,9 +1,4 @@
1
1
  "use strict";
2
- /**
3
- * @license
4
- * Copyright 2017 Google Inc.
5
- * SPDX-License-Identifier: Apache-2.0
6
- */
7
2
  Object.defineProperty(exports, "__esModule", { value: true });
8
3
  exports.Browser = exports.WEB_PERMISSION_TO_PROTOCOL_PERMISSION = void 0;
9
4
  const rxjs_js_1 = require("../../third_party/rxjs/rxjs.js");
@@ -93,7 +88,7 @@ class Browser extends EventEmitter_js_1.EventEmitter {
93
88
  * ```ts
94
89
  * await page.evaluate(() => window.open('https://www.example.com/'));
95
90
  * const newWindowTarget = await browser.waitForTarget(
96
- * target => target.url() === 'https://www.example.com/'
91
+ * target => target.url() === 'https://www.example.com/',
97
92
  * );
98
93
  * ```
99
94
  */
@@ -1 +1 @@
1
- {"version":3,"file":"Browser.js","sourceRoot":"","sources":["../../../../src/api/Browser.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Browser.js","sourceRoot":"","sources":["../../../../src/api/Browser.ts"],"names":[],"mappings":"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"}
@@ -109,7 +109,7 @@ export declare abstract class BrowserContext extends EventEmitter<BrowserContext
109
109
  * ```ts
110
110
  * await page.evaluate(() => window.open('https://www.example.com/'));
111
111
  * const newWindowTarget = await browserContext.waitForTarget(
112
- * target => target.url() === 'https://www.example.com/'
112
+ * target => target.url() === 'https://www.example.com/',
113
113
  * );
114
114
  * ```
115
115
  */
@@ -1 +1 @@
1
- {"version":3,"file":"BrowserContext.d.ts","sourceRoot":"","sources":["../../../../src/api/BrowserContext.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAQH,OAAO,EAAC,YAAY,EAAE,KAAK,SAAS,EAAC,MAAM,2BAA2B,CAAC;AAOvE,OAAO,EAAC,kBAAkB,EAAE,aAAa,EAAC,MAAM,uBAAuB,CAAC;AACxE,OAAO,EAAC,KAAK,EAAC,MAAM,kBAAkB,CAAC;AAEvC,OAAO,KAAK,EAAC,OAAO,EAAE,UAAU,EAAE,oBAAoB,EAAC,MAAM,cAAc,CAAC;AAC5E,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,WAAW,CAAC;AACpC,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,aAAa,CAAC;AAExC;;GAEG;AACH,0BAAkB,mBAAmB;IACnC;;;OAGG;IACH,aAAa,kBAAkB;IAE/B;;;;;;;OAOG;IACH,aAAa,kBAAkB;IAC/B;;;OAGG;IACH,eAAe,oBAAoB;CACpC;AAED;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,MAAM,CAAC,SAAS,EAAE,OAAO,CAAC;IACtE,CAAC,mBAAmB,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;IAC5C,CAAC,mBAAmB,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;IAC5C,CAAC,mBAAmB,CAAC,eAAe,CAAC,EAAE,MAAM,CAAC;CAC/C;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AAEH,8BAAsB,cAAe,SAAQ,YAAY,CAAC,oBAAoB,CAAC;;IAC7E;;OAEG;;IAKH;;;OAGG;IACH,QAAQ,CAAC,OAAO,IAAI,MAAM,EAAE;IAQ5B;;OAEG;IACH,eAAe,IAAI,OAAO,CAAC,YAAY,CAAC,OAAO,KAAK,CAAC,KAAK,CAAC,CAAC;IAa5D;;OAEG;IACH,2BAA2B,IACvB,OAAO,CAAC,YAAY,CAAC,OAAO,KAAK,CAAC,KAAK,CAAC,CAAC,GACzC,SAAS;IAIb;;;;;;;;;;;;;;OAcG;IACG,aAAa,CACjB,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,EACpD,OAAO,GAAE,oBAAyB,GACjC,OAAO,CAAC,MAAM,CAAC;IAWlB;;;;;;OAMG;IACH,QAAQ,CAAC,KAAK,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC;IAEjC;;;;;;;;;;;;;;;;;;OAkBG;IACH,QAAQ,CAAC,mBAAmB,CAC1B,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,UAAU,EAAE,GACxB,OAAO,CAAC,IAAI,CAAC;IAEhB;;;;;;;;;;;;;OAaG;IACH,QAAQ,CAAC,wBAAwB,IAAI,OAAO,CAAC,IAAI,CAAC;IAElD;;;OAGG;IACH,QAAQ,CAAC,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAEjC;;;OAGG;IACH,QAAQ,CAAC,OAAO,IAAI,OAAO;IAE3B;;;;;;;OAOG;IACH,QAAQ,CAAC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAE/B;;OAEG;IACH,IAAI,MAAM,IAAI,OAAO,CAEpB;IAED;;OAEG;IACH,IAAI,EAAE,IAAI,MAAM,GAAG,SAAS,CAE3B;IAED,gBAAgB;IAChB,CAAC,aAAa,CAAC,IAAI,IAAI;IAIvB,gBAAgB;IAChB,CAAC,kBAAkB,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC;CAGtC"}
1
+ {"version":3,"file":"BrowserContext.d.ts","sourceRoot":"","sources":["../../../../src/api/BrowserContext.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAQH,OAAO,EAAC,YAAY,EAAE,KAAK,SAAS,EAAC,MAAM,2BAA2B,CAAC;AAOvE,OAAO,EAAC,kBAAkB,EAAE,aAAa,EAAC,MAAM,uBAAuB,CAAC;AACxE,OAAO,EAAC,KAAK,EAAC,MAAM,kBAAkB,CAAC;AAEvC,OAAO,KAAK,EAAC,OAAO,EAAE,UAAU,EAAE,oBAAoB,EAAC,MAAM,cAAc,CAAC;AAC5E,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,WAAW,CAAC;AACpC,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,aAAa,CAAC;AAExC;;GAEG;AACH,0BAAkB,mBAAmB;IACnC;;;OAGG;IACH,aAAa,kBAAkB;IAE/B;;;;;;;OAOG;IACH,aAAa,kBAAkB;IAC/B;;;OAGG;IACH,eAAe,oBAAoB;CACpC;AAED;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,MAAM,CAAC,SAAS,EAAE,OAAO,CAAC;IACtE,CAAC,mBAAmB,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;IAC5C,CAAC,mBAAmB,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;IAC5C,CAAC,mBAAmB,CAAC,eAAe,CAAC,EAAE,MAAM,CAAC;CAC/C;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AAEH,8BAAsB,cAAe,SAAQ,YAAY,CAAC,oBAAoB,CAAC;;IAC7E;;OAEG;;IAKH;;;OAGG;IACH,QAAQ,CAAC,OAAO,IAAI,MAAM,EAAE;IAQ5B;;OAEG;IACH,eAAe,IAAI,OAAO,CAAC,YAAY,CAAC,OAAO,KAAK,CAAC,KAAK,CAAC,CAAC;IAa5D;;OAEG;IACH,2BAA2B,IACvB,OAAO,CAAC,YAAY,CAAC,OAAO,KAAK,CAAC,KAAK,CAAC,CAAC,GACzC,SAAS;IAIb;;;;;;;;;;;;;;OAcG;IACG,aAAa,CACjB,SAAS,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,EACpD,OAAO,GAAE,oBAAyB,GACjC,OAAO,CAAC,MAAM,CAAC;IAWlB;;;;;;OAMG;IACH,QAAQ,CAAC,KAAK,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC;IAEjC;;;;;;;;;;;;;;;;;;OAkBG;IACH,QAAQ,CAAC,mBAAmB,CAC1B,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,UAAU,EAAE,GACxB,OAAO,CAAC,IAAI,CAAC;IAEhB;;;;;;;;;;;;;OAaG;IACH,QAAQ,CAAC,wBAAwB,IAAI,OAAO,CAAC,IAAI,CAAC;IAElD;;;OAGG;IACH,QAAQ,CAAC,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAEjC;;;OAGG;IACH,QAAQ,CAAC,OAAO,IAAI,OAAO;IAE3B;;;;;;;OAOG;IACH,QAAQ,CAAC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAE/B;;OAEG;IACH,IAAI,MAAM,IAAI,OAAO,CAEpB;IAED;;OAEG;IACH,IAAI,EAAE,IAAI,MAAM,GAAG,SAAS,CAE3B;IAED,gBAAgB;IACP,CAAC,aAAa,CAAC,IAAI,IAAI;IAIhC,gBAAgB;IAChB,CAAC,kBAAkB,CAAC,IAAI,OAAO,CAAC,IAAI,CAAC;CAGtC"}
@@ -93,7 +93,7 @@ class BrowserContext extends EventEmitter_js_1.EventEmitter {
93
93
  * ```ts
94
94
  * await page.evaluate(() => window.open('https://www.example.com/'));
95
95
  * const newWindowTarget = await browserContext.waitForTarget(
96
- * target => target.url() === 'https://www.example.com/'
96
+ * target => target.url() === 'https://www.example.com/',
97
97
  * );
98
98
  * ```
99
99
  */
@@ -1 +1 @@
1
- {"version":3,"file":"BrowserContext.js","sourceRoot":"","sources":["../../../../src/api/BrowserContext.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH,4DAKwC;AACxC,+DAAuE;AACvE,+CAK2B;AAC3B,yDAAwE;AACxE,+CAAuC;AAyCvC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AAEH,MAAsB,cAAe,SAAQ,8BAAkC;IAC7E;;OAEG;IACH;QACE,KAAK,EAAE,CAAC;IACV,CAAC;IAQD;;OAEG;IACH,oBAAoB,CAAS;IAC7B,0BAA0B,GAAG,CAAC,CAAC;IAE/B;;OAEG;IACH,eAAe;QACb,MAAM,KAAK,GAAG,IAAI,CAAC,oBAAoB,IAAI,IAAI,gBAAK,EAAE,CAAC;QACvD,IAAI,CAAC,oBAAoB,GAAG,KAAK,CAAC;QAClC,IAAI,CAAC,0BAA0B,EAAE,CAAC;QAClC,OAAO,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE;YACxB,IAAI,CAAC,0BAA0B,EAAE,CAAC;YAClC,IAAI,IAAI,CAAC,0BAA0B,KAAK,CAAC,EAAE,CAAC;gBAC1C,gEAAgE;gBAChE,IAAI,CAAC,oBAAoB,GAAG,SAAS,CAAC;YACxC,CAAC;QACH,CAAC,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,2BAA2B;QAGzB,OAAO,IAAI,CAAC,oBAAoB,EAAE,OAAO,EAAE,CAAC;IAC9C,CAAC;IAED;;;;;;;;;;;;;;OAcG;IACH,KAAK,CAAC,aAAa,CACjB,SAAoD,EACpD,UAAgC,EAAE;QAElC,MAAM,EAAC,OAAO,EAAE,EAAE,GAAG,KAAK,EAAC,GAAG,OAAO,CAAC;QACtC,OAAO,MAAM,IAAA,wBAAc,EACzB,IAAA,eAAK,EACH,IAAA,0BAAgB,EAAC,IAAI,0DAAoC,EACzD,IAAA,0BAAgB,EAAC,IAAI,0DAAoC,EACzD,IAAA,cAAI,EAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CACrB,CAAC,IAAI,CAAC,IAAA,qBAAW,EAAC,SAAS,CAAC,EAAE,IAAA,kBAAQ,EAAC,IAAA,iBAAO,EAAC,EAAE,CAAC,CAAC,CAAC,CACtD,CAAC;IACJ,CAAC;IAyED;;OAEG;IACH,IAAI,MAAM;QACR,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,eAAe,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IAC1D,CAAC;IAED;;OAEG;IACH,IAAI,EAAE;QACJ,OAAO,SAAS,CAAC;IACnB,CAAC;IAED,gBAAgB;IAChB,CAAC,6BAAa,CAAC;QACb,OAAO,KAAK,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,oBAAU,CAAC,CAAC;IAC7C,CAAC;IAED,gBAAgB;IAChB,CAAC,kCAAkB,CAAC;QAClB,OAAO,IAAI,CAAC,KAAK,EAAE,CAAC;IACtB,CAAC;CACF;AAxKD,wCAwKC"}
1
+ {"version":3,"file":"BrowserContext.js","sourceRoot":"","sources":["../../../../src/api/BrowserContext.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH,4DAKwC;AACxC,+DAAuE;AACvE,+CAK2B;AAC3B,yDAAwE;AACxE,+CAAuC;AAyCvC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AAEH,MAAsB,cAAe,SAAQ,8BAAkC;IAC7E;;OAEG;IACH;QACE,KAAK,EAAE,CAAC;IACV,CAAC;IAQD;;OAEG;IACH,oBAAoB,CAAS;IAC7B,0BAA0B,GAAG,CAAC,CAAC;IAE/B;;OAEG;IACH,eAAe;QACb,MAAM,KAAK,GAAG,IAAI,CAAC,oBAAoB,IAAI,IAAI,gBAAK,EAAE,CAAC;QACvD,IAAI,CAAC,oBAAoB,GAAG,KAAK,CAAC;QAClC,IAAI,CAAC,0BAA0B,EAAE,CAAC;QAClC,OAAO,KAAK,CAAC,OAAO,CAAC,GAAG,EAAE;YACxB,IAAI,CAAC,0BAA0B,EAAE,CAAC;YAClC,IAAI,IAAI,CAAC,0BAA0B,KAAK,CAAC,EAAE,CAAC;gBAC1C,gEAAgE;gBAChE,IAAI,CAAC,oBAAoB,GAAG,SAAS,CAAC;YACxC,CAAC;QACH,CAAC,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,2BAA2B;QAGzB,OAAO,IAAI,CAAC,oBAAoB,EAAE,OAAO,EAAE,CAAC;IAC9C,CAAC;IAED;;;;;;;;;;;;;;OAcG;IACH,KAAK,CAAC,aAAa,CACjB,SAAoD,EACpD,UAAgC,EAAE;QAElC,MAAM,EAAC,OAAO,EAAE,EAAE,GAAG,KAAK,EAAC,GAAG,OAAO,CAAC;QACtC,OAAO,MAAM,IAAA,wBAAc,EACzB,IAAA,eAAK,EACH,IAAA,0BAAgB,EAAC,IAAI,0DAAoC,EACzD,IAAA,0BAAgB,EAAC,IAAI,0DAAoC,EACzD,IAAA,cAAI,EAAC,IAAI,CAAC,OAAO,EAAE,CAAC,CACrB,CAAC,IAAI,CAAC,IAAA,qBAAW,EAAC,SAAS,CAAC,EAAE,IAAA,kBAAQ,EAAC,IAAA,iBAAO,EAAC,EAAE,CAAC,CAAC,CAAC,CACtD,CAAC;IACJ,CAAC;IAyED;;OAEG;IACH,IAAI,MAAM;QACR,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,eAAe,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IAC1D,CAAC;IAED;;OAEG;IACH,IAAI,EAAE;QACJ,OAAO,SAAS,CAAC;IACnB,CAAC;IAED,gBAAgB;IACP,CAAC,6BAAa,CAAC;QACtB,OAAO,KAAK,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,oBAAU,CAAC,CAAC;IAC7C,CAAC;IAED,gBAAgB;IAChB,CAAC,kCAAkB,CAAC;QAClB,OAAO,IAAI,CAAC,KAAK,EAAE,CAAC;IACtB,CAAC;CACF;AAxKD,wCAwKC"}
@@ -68,7 +68,7 @@ export interface CommandOptions {
68
68
  * const client = await page.createCDPSession();
69
69
  * await client.send('Animation.enable');
70
70
  * client.on('Animation.animationCreated', () =>
71
- * console.log('Animation created!')
71
+ * console.log('Animation created!'),
72
72
  * );
73
73
  * const response = await client.send('Animation.getPlaybackRate');
74
74
  * console.log('playback rate is ' + response.playbackRate);
@@ -41,7 +41,7 @@ var CDPSessionEvent;
41
41
  * const client = await page.createCDPSession();
42
42
  * await client.send('Animation.enable');
43
43
  * client.on('Animation.animationCreated', () =>
44
- * console.log('Animation created!')
44
+ * console.log('Animation created!'),
45
45
  * );
46
46
  * const response = await client.send('Animation.getPlaybackRate');
47
47
  * console.log('playback rate is ' + response.playbackRate);