chrome-devtools-frontend 1.0.943709 → 1.0.945329

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 (300) hide show
  1. package/config/gni/devtools_grd_files.gni +3 -0
  2. package/front_end/core/common/ParsedURL.ts +1 -1
  3. package/front_end/core/host/UserMetrics.ts +2 -1
  4. package/front_end/core/i18n/i18nImpl.ts +7 -4
  5. package/front_end/core/i18n/locales/en-US.json +3 -72
  6. package/front_end/core/i18n/locales/en-XL.json +15 -84
  7. package/front_end/core/protocol_client/NodeURL.ts +1 -0
  8. package/front_end/core/sdk/CSSStyleDeclaration.ts +4 -0
  9. package/front_end/core/sdk/CSSStyleSheetHeader.ts +2 -3
  10. package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +2 -3
  11. package/front_end/core/sdk/Cookie.ts +17 -0
  12. package/front_end/core/sdk/CookieModel.ts +1 -0
  13. package/front_end/core/sdk/DebuggerModel.ts +5 -4
  14. package/front_end/core/sdk/NetworkManager.ts +4 -1
  15. package/front_end/core/sdk/NetworkRequest.ts +2 -2
  16. package/front_end/core/sdk/OverlayModel.ts +0 -9
  17. package/front_end/core/sdk/Resource.ts +2 -2
  18. package/front_end/core/sdk/Script.ts +2 -7
  19. package/front_end/core/sdk/sdk-meta.ts +0 -26
  20. package/front_end/entrypoints/inspector_main/RenderingOptions.ts +0 -13
  21. package/front_end/entrypoints/main/MainImpl.ts +4 -0
  22. package/front_end/models/bindings/BreakpointManager.ts +3 -4
  23. package/front_end/models/bindings/DefaultScriptMapping.ts +1 -9
  24. package/front_end/models/bindings/ResourceMapping.ts +1 -2
  25. package/front_end/models/bindings/ResourceScriptMapping.ts +3 -11
  26. package/front_end/models/bindings/StylesSourceMapping.ts +1 -2
  27. package/front_end/models/formatter/SourceFormatter.ts +0 -15
  28. package/front_end/models/persistence/IsolatedFileSystem.ts +7 -6
  29. package/front_end/models/persistence/PersistenceActions.ts +4 -1
  30. package/front_end/models/persistence/PlatformFileSystem.ts +3 -4
  31. package/front_end/models/text_utils/ContentProvider.ts +1 -2
  32. package/front_end/models/text_utils/StaticContentProvider.ts +2 -3
  33. package/front_end/models/workspace/UISourceCode.ts +2 -2
  34. package/front_end/models/workspace_diff/WorkspaceDiff.ts +20 -6
  35. package/front_end/panels/animation/animationTimeline.css +2 -0
  36. package/front_end/panels/application/BackForwardCacheStrings.ts +15 -75
  37. package/front_end/panels/application/ReportingApiView.ts +15 -1
  38. package/front_end/panels/application/components/EndpointsGrid.ts +63 -4
  39. package/front_end/panels/application/components/FrameDetailsView.ts +21 -34
  40. package/front_end/panels/changes/ChangesView.ts +8 -7
  41. package/front_end/panels/console/ConsolePinPane.ts +1 -0
  42. package/front_end/panels/console/ConsolePrompt.ts +121 -171
  43. package/front_end/panels/console/ConsoleView.ts +1 -1
  44. package/front_end/panels/console/consoleView.css +1 -1
  45. package/front_end/panels/css_overview/cssOverviewCompletedView.css +2 -2
  46. package/front_end/panels/elements/AccessibilityTreeUtils.ts +98 -67
  47. package/front_end/panels/elements/AccessibilityTreeView.ts +76 -126
  48. package/front_end/panels/elements/ElementsPanel.ts +6 -7
  49. package/front_end/panels/elements/ElementsTreeElement.ts +1 -0
  50. package/front_end/panels/elements/StylePropertyHighlighter.ts +29 -19
  51. package/front_end/panels/elements/StylesSidebarPane.ts +1 -1
  52. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +27 -3
  53. package/front_end/panels/emulation/DeviceModeView.ts +3 -0
  54. package/front_end/panels/help/ReleaseNoteText.ts +3 -1
  55. package/front_end/panels/network/NetworkDataGridNode.ts +5 -1
  56. package/front_end/panels/snippets/ScriptSnippetFileSystem.ts +1 -1
  57. package/front_end/panels/sources/BreakpointEditDialog.ts +1 -0
  58. package/front_end/panels/sources/DebuggerPlugin.ts +1 -1
  59. package/front_end/panels/sources/NavigatorView.ts +1 -1
  60. package/front_end/panels/sources/UISourceCodeFrame.ts +0 -1
  61. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +3 -34
  62. package/front_end/panels/timeline/TimelineUIUtils.ts +51 -3
  63. package/front_end/services/window_bounds/WindowBoundsService.ts +27 -0
  64. package/front_end/services/window_bounds/window_bounds.ts +9 -0
  65. package/front_end/third_party/acorn/README.chromium +2 -2
  66. package/front_end/third_party/acorn/acorn.ts +1 -1
  67. package/front_end/third_party/acorn/package/CHANGELOG.md +31 -1
  68. package/front_end/third_party/acorn/package/README.md +1 -1
  69. package/front_end/third_party/acorn/package/dist/acorn.d.ts +3 -0
  70. package/front_end/third_party/acorn/package/dist/acorn.js +772 -708
  71. package/front_end/third_party/acorn/package/dist/acorn.mjs +767 -703
  72. package/front_end/third_party/acorn/package/dist/bin.js +47 -21
  73. package/front_end/third_party/acorn/package/package.json +1 -1
  74. package/front_end/third_party/acorn-loose/README.chromium +2 -2
  75. package/front_end/third_party/acorn-loose/package/CHANGELOG.md +12 -0
  76. package/front_end/third_party/acorn-loose/package/dist/acorn-loose.js +27 -7
  77. package/front_end/third_party/acorn-loose/package/dist/acorn-loose.mjs +28 -8
  78. package/front_end/third_party/acorn-loose/package/package.json +2 -2
  79. package/front_end/third_party/codemirror.next/bundle.ts +4 -3
  80. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  81. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +39 -1
  82. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  83. package/front_end/third_party/codemirror.next/package.json +4 -4
  84. package/front_end/third_party/i18n/i18n-impl.ts +1 -1
  85. package/front_end/third_party/lit-html/README.chromium +2 -2
  86. package/front_end/third_party/lit-html/package/CHANGELOG.md +216 -28
  87. package/front_end/third_party/lit-html/package/LICENSE +9 -9
  88. package/front_end/third_party/lit-html/package/README.md +12 -162
  89. package/front_end/third_party/lit-html/package/async-directive.d.ts +23 -54
  90. package/front_end/third_party/lit-html/package/async-directive.d.ts.map +1 -1
  91. package/front_end/third_party/lit-html/package/async-directive.js +2 -7
  92. package/front_end/third_party/lit-html/package/async-directive.js.map +1 -1
  93. package/front_end/third_party/lit-html/package/development/async-directive.d.ts +23 -54
  94. package/front_end/third_party/lit-html/package/development/async-directive.d.ts.map +1 -1
  95. package/front_end/third_party/lit-html/package/development/async-directive.js +44 -194
  96. package/front_end/third_party/lit-html/package/development/async-directive.js.map +1 -1
  97. package/front_end/third_party/lit-html/package/development/directive-helpers.d.ts +6 -5
  98. package/front_end/third_party/lit-html/package/development/directive-helpers.d.ts.map +1 -1
  99. package/front_end/third_party/lit-html/package/development/directive-helpers.js +25 -9
  100. package/front_end/third_party/lit-html/package/development/directive-helpers.js.map +1 -1
  101. package/front_end/third_party/lit-html/package/development/directive.d.ts +3 -16
  102. package/front_end/third_party/lit-html/package/development/directive.d.ts.map +1 -1
  103. package/front_end/third_party/lit-html/package/development/directive.js +6 -1
  104. package/front_end/third_party/lit-html/package/development/directive.js.map +1 -1
  105. package/front_end/third_party/lit-html/package/development/directives/async-append.d.ts +7 -14
  106. package/front_end/third_party/lit-html/package/development/directives/async-append.d.ts.map +1 -1
  107. package/front_end/third_party/lit-html/package/development/directives/async-append.js +17 -58
  108. package/front_end/third_party/lit-html/package/development/directives/async-append.js.map +1 -1
  109. package/front_end/third_party/lit-html/package/development/directives/async-replace.d.ts +9 -14
  110. package/front_end/third_party/lit-html/package/development/directives/async-replace.d.ts.map +1 -1
  111. package/front_end/third_party/lit-html/package/development/directives/async-replace.js +57 -37
  112. package/front_end/third_party/lit-html/package/development/directives/async-replace.js.map +1 -1
  113. package/front_end/third_party/lit-html/package/development/directives/cache.d.ts +2 -3
  114. package/front_end/third_party/lit-html/package/development/directives/cache.d.ts.map +1 -1
  115. package/front_end/third_party/lit-html/package/development/directives/cache.js +4 -6
  116. package/front_end/third_party/lit-html/package/development/directives/cache.js.map +1 -1
  117. package/front_end/third_party/lit-html/package/development/directives/class-map.d.ts +2 -2
  118. package/front_end/third_party/lit-html/package/development/directives/class-map.d.ts.map +1 -1
  119. package/front_end/third_party/lit-html/package/development/directives/class-map.js +17 -7
  120. package/front_end/third_party/lit-html/package/development/directives/class-map.js.map +1 -1
  121. package/front_end/third_party/lit-html/package/development/directives/guard.d.ts +3 -2
  122. package/front_end/third_party/lit-html/package/development/directives/guard.d.ts.map +1 -1
  123. package/front_end/third_party/lit-html/package/development/directives/guard.js +3 -2
  124. package/front_end/third_party/lit-html/package/development/directives/guard.js.map +1 -1
  125. package/front_end/third_party/lit-html/package/development/directives/live.d.ts +4 -3
  126. package/front_end/third_party/lit-html/package/development/directives/live.d.ts.map +1 -1
  127. package/front_end/third_party/lit-html/package/development/directives/live.js +5 -7
  128. package/front_end/third_party/lit-html/package/development/directives/live.js.map +1 -1
  129. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.d.ts +58 -0
  130. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.d.ts.map +1 -0
  131. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.js +85 -0
  132. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.js.map +1 -0
  133. package/front_end/third_party/lit-html/package/development/directives/ref.d.ts +14 -11
  134. package/front_end/third_party/lit-html/package/development/directives/ref.d.ts.map +1 -1
  135. package/front_end/third_party/lit-html/package/development/directives/ref.js +13 -11
  136. package/front_end/third_party/lit-html/package/development/directives/ref.js.map +1 -1
  137. package/front_end/third_party/lit-html/package/development/directives/repeat.d.ts +8 -4
  138. package/front_end/third_party/lit-html/package/development/directives/repeat.d.ts.map +1 -1
  139. package/front_end/third_party/lit-html/package/development/directives/repeat.js +23 -9
  140. package/front_end/third_party/lit-html/package/development/directives/repeat.js.map +1 -1
  141. package/front_end/third_party/lit-html/package/development/directives/style-map.d.ts +1 -2
  142. package/front_end/third_party/lit-html/package/development/directives/style-map.d.ts.map +1 -1
  143. package/front_end/third_party/lit-html/package/development/directives/style-map.js +1 -2
  144. package/front_end/third_party/lit-html/package/development/directives/style-map.js.map +1 -1
  145. package/front_end/third_party/lit-html/package/development/directives/template-content.d.ts +1 -2
  146. package/front_end/third_party/lit-html/package/development/directives/template-content.js +1 -2
  147. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.d.ts +6 -4
  148. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.d.ts.map +1 -1
  149. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.js +7 -5
  150. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.js.map +1 -1
  151. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.d.ts +4 -1
  152. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.d.ts.map +1 -1
  153. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.js +3 -0
  154. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.js.map +1 -1
  155. package/front_end/third_party/lit-html/package/development/directives/until.d.ts +12 -8
  156. package/front_end/third_party/lit-html/package/development/directives/until.d.ts.map +1 -1
  157. package/front_end/third_party/lit-html/package/development/directives/until.js +63 -23
  158. package/front_end/third_party/lit-html/package/development/directives/until.js.map +1 -1
  159. package/front_end/third_party/lit-html/package/development/experimental-hydrate.d.ts.map +1 -1
  160. package/front_end/third_party/lit-html/package/development/experimental-hydrate.js +9 -8
  161. package/front_end/third_party/lit-html/package/development/experimental-hydrate.js.map +1 -1
  162. package/front_end/third_party/lit-html/package/development/lit-html.d.ts +81 -136
  163. package/front_end/third_party/lit-html/package/development/lit-html.d.ts.map +1 -1
  164. package/front_end/third_party/lit-html/package/development/lit-html.js +249 -76
  165. package/front_end/third_party/lit-html/package/development/lit-html.js.map +1 -1
  166. package/front_end/third_party/lit-html/package/development/polyfill-support.d.ts +1 -41
  167. package/front_end/third_party/lit-html/package/development/polyfill-support.d.ts.map +1 -1
  168. package/front_end/third_party/lit-html/package/development/polyfill-support.js +40 -21
  169. package/front_end/third_party/lit-html/package/development/polyfill-support.js.map +1 -1
  170. package/front_end/third_party/lit-html/package/development/private-ssr-support.d.ts +12 -10
  171. package/front_end/third_party/lit-html/package/development/private-ssr-support.d.ts.map +1 -1
  172. package/front_end/third_party/lit-html/package/development/private-ssr-support.js +11 -3
  173. package/front_end/third_party/lit-html/package/development/private-ssr-support.js.map +1 -1
  174. package/front_end/third_party/lit-html/package/development/static.d.ts.map +1 -1
  175. package/front_end/third_party/lit-html/package/development/static.js +6 -5
  176. package/front_end/third_party/lit-html/package/development/static.js.map +1 -1
  177. package/front_end/third_party/lit-html/package/directive-helpers.d.ts +6 -5
  178. package/front_end/third_party/lit-html/package/directive-helpers.d.ts.map +1 -1
  179. package/front_end/third_party/lit-html/package/directive-helpers.js +2 -2
  180. package/front_end/third_party/lit-html/package/directive-helpers.js.map +1 -1
  181. package/front_end/third_party/lit-html/package/directive.d.ts +3 -16
  182. package/front_end/third_party/lit-html/package/directive.d.ts.map +1 -1
  183. package/front_end/third_party/lit-html/package/directive.js +1 -1
  184. package/front_end/third_party/lit-html/package/directive.js.map +1 -1
  185. package/front_end/third_party/lit-html/package/directives/async-append.d.ts +7 -14
  186. package/front_end/third_party/lit-html/package/directives/async-append.d.ts.map +1 -1
  187. package/front_end/third_party/lit-html/package/directives/async-append.js +2 -6
  188. package/front_end/third_party/lit-html/package/directives/async-append.js.map +1 -1
  189. package/front_end/third_party/lit-html/package/directives/async-replace.d.ts +9 -14
  190. package/front_end/third_party/lit-html/package/directives/async-replace.d.ts.map +1 -1
  191. package/front_end/third_party/lit-html/package/directives/async-replace.js +2 -5
  192. package/front_end/third_party/lit-html/package/directives/async-replace.js.map +1 -1
  193. package/front_end/third_party/lit-html/package/directives/cache.d.ts +2 -3
  194. package/front_end/third_party/lit-html/package/directives/cache.d.ts.map +1 -1
  195. package/front_end/third_party/lit-html/package/directives/cache.js +2 -5
  196. package/front_end/third_party/lit-html/package/directives/cache.js.map +1 -1
  197. package/front_end/third_party/lit-html/package/directives/class-map.d.ts +2 -2
  198. package/front_end/third_party/lit-html/package/directives/class-map.d.ts.map +1 -1
  199. package/front_end/third_party/lit-html/package/directives/class-map.js +2 -4
  200. package/front_end/third_party/lit-html/package/directives/class-map.js.map +1 -1
  201. package/front_end/third_party/lit-html/package/directives/guard.d.ts +3 -2
  202. package/front_end/third_party/lit-html/package/directives/guard.d.ts.map +1 -1
  203. package/front_end/third_party/lit-html/package/directives/guard.js +2 -4
  204. package/front_end/third_party/lit-html/package/directives/guard.js.map +1 -1
  205. package/front_end/third_party/lit-html/package/directives/live.d.ts +4 -3
  206. package/front_end/third_party/lit-html/package/directives/live.d.ts.map +1 -1
  207. package/front_end/third_party/lit-html/package/directives/live.js +1 -4
  208. package/front_end/third_party/lit-html/package/directives/live.js.map +1 -1
  209. package/front_end/third_party/lit-html/package/directives/private-async-helpers.d.ts +58 -0
  210. package/front_end/third_party/lit-html/package/directives/private-async-helpers.d.ts.map +1 -0
  211. package/front_end/third_party/lit-html/package/directives/private-async-helpers.js +7 -0
  212. package/front_end/third_party/lit-html/package/directives/private-async-helpers.js.map +1 -0
  213. package/front_end/third_party/lit-html/package/directives/ref.d.ts +14 -11
  214. package/front_end/third_party/lit-html/package/directives/ref.d.ts.map +1 -1
  215. package/front_end/third_party/lit-html/package/directives/ref.js +2 -5
  216. package/front_end/third_party/lit-html/package/directives/ref.js.map +1 -1
  217. package/front_end/third_party/lit-html/package/directives/repeat.d.ts +8 -4
  218. package/front_end/third_party/lit-html/package/directives/repeat.d.ts.map +1 -1
  219. package/front_end/third_party/lit-html/package/directives/repeat.js +2 -5
  220. package/front_end/third_party/lit-html/package/directives/repeat.js.map +1 -1
  221. package/front_end/third_party/lit-html/package/directives/style-map.d.ts +1 -2
  222. package/front_end/third_party/lit-html/package/directives/style-map.d.ts.map +1 -1
  223. package/front_end/third_party/lit-html/package/directives/style-map.js +2 -4
  224. package/front_end/third_party/lit-html/package/directives/style-map.js.map +1 -1
  225. package/front_end/third_party/lit-html/package/directives/template-content.d.ts +1 -2
  226. package/front_end/third_party/lit-html/package/directives/template-content.js +2 -4
  227. package/front_end/third_party/lit-html/package/directives/template-content.js.map +1 -1
  228. package/front_end/third_party/lit-html/package/directives/unsafe-html.d.ts +6 -4
  229. package/front_end/third_party/lit-html/package/directives/unsafe-html.d.ts.map +1 -1
  230. package/front_end/third_party/lit-html/package/directives/unsafe-html.js +2 -4
  231. package/front_end/third_party/lit-html/package/directives/unsafe-html.js.map +1 -1
  232. package/front_end/third_party/lit-html/package/directives/unsafe-svg.d.ts +4 -1
  233. package/front_end/third_party/lit-html/package/directives/unsafe-svg.d.ts.map +1 -1
  234. package/front_end/third_party/lit-html/package/directives/unsafe-svg.js.map +1 -1
  235. package/front_end/third_party/lit-html/package/directives/until.d.ts +12 -8
  236. package/front_end/third_party/lit-html/package/directives/until.d.ts.map +1 -1
  237. package/front_end/third_party/lit-html/package/directives/until.js +2 -6
  238. package/front_end/third_party/lit-html/package/directives/until.js.map +1 -1
  239. package/front_end/third_party/lit-html/package/experimental-hydrate.d.ts.map +1 -1
  240. package/front_end/third_party/lit-html/package/experimental-hydrate.js +2 -5
  241. package/front_end/third_party/lit-html/package/experimental-hydrate.js.map +1 -1
  242. package/front_end/third_party/lit-html/package/lit-html.d.ts +81 -136
  243. package/front_end/third_party/lit-html/package/lit-html.d.ts.map +1 -1
  244. package/front_end/third_party/lit-html/package/lit-html.js +1 -1
  245. package/front_end/third_party/lit-html/package/lit-html.js.map +1 -1
  246. package/front_end/third_party/lit-html/package/package.json +75 -24
  247. package/front_end/third_party/lit-html/package/polyfill-support.d.ts +1 -41
  248. package/front_end/third_party/lit-html/package/polyfill-support.d.ts.map +1 -1
  249. package/front_end/third_party/lit-html/package/polyfill-support.js +1 -1
  250. package/front_end/third_party/lit-html/package/polyfill-support.js.map +1 -1
  251. package/front_end/third_party/lit-html/package/private-ssr-support.d.ts +12 -10
  252. package/front_end/third_party/lit-html/package/private-ssr-support.d.ts.map +1 -1
  253. package/front_end/third_party/lit-html/package/private-ssr-support.js +2 -2
  254. package/front_end/third_party/lit-html/package/private-ssr-support.js.map +1 -1
  255. package/front_end/third_party/lit-html/package/static.d.ts.map +1 -1
  256. package/front_end/third_party/lit-html/package/static.js +1 -1
  257. package/front_end/third_party/lit-html/package/static.js.map +1 -1
  258. package/front_end/third_party/marked/README.chromium +2 -2
  259. package/front_end/third_party/marked/marked.ts +2 -2
  260. package/front_end/third_party/marked/package/README.md +7 -1
  261. package/front_end/third_party/marked/package/bin/marked.js +214 -0
  262. package/front_end/third_party/marked/package/lib/marked.cjs +2907 -0
  263. package/front_end/third_party/marked/package/lib/marked.esm.d.ts +1 -3
  264. package/front_end/third_party/marked/package/lib/marked.esm.js +627 -586
  265. package/front_end/third_party/marked/package/lib/marked.umd.js +2913 -0
  266. package/front_end/third_party/marked/package/man/marked.1 +5 -24
  267. package/front_end/third_party/marked/package/man/marked.1.txt +21 -31
  268. package/front_end/third_party/marked/package/marked.min.js +1 -1
  269. package/front_end/third_party/marked/package/package.json +41 -32
  270. package/front_end/third_party/marked/package/src/Lexer.js +109 -108
  271. package/front_end/third_party/marked/package/src/Parser.js +38 -15
  272. package/front_end/third_party/marked/package/src/Renderer.js +5 -5
  273. package/front_end/third_party/marked/package/src/Slugger.js +2 -2
  274. package/front_end/third_party/marked/package/src/TextRenderer.js +2 -2
  275. package/front_end/third_party/marked/package/src/Tokenizer.js +215 -190
  276. package/front_end/third_party/marked/package/src/defaults.js +6 -9
  277. package/front_end/third_party/marked/package/src/helpers.js +16 -27
  278. package/front_end/third_party/marked/package/src/marked.js +146 -63
  279. package/front_end/third_party/marked/package/src/rules.js +20 -45
  280. package/front_end/third_party/wasmparser/README.chromium +2 -2
  281. package/front_end/third_party/wasmparser/package/.github/workflows/main.yml +47 -0
  282. package/front_end/third_party/wasmparser/package/CHANGELOG.md +12 -0
  283. package/front_end/third_party/wasmparser/package/dist/cjs/WasmParser.js +53 -53
  284. package/front_end/third_party/wasmparser/package/dist/cjs/WasmParser.js.map +1 -1
  285. package/front_end/third_party/wasmparser/package/dist/esm/WasmParser.js +53 -53
  286. package/front_end/third_party/wasmparser/package/dist/esm/WasmParser.js.map +1 -1
  287. package/front_end/third_party/wasmparser/package/package.json +1 -1
  288. package/front_end/third_party/wasmparser/package/src/WasmParser.ts +53 -53
  289. package/front_end/ui/components/text_editor/TextEditor.ts +29 -0
  290. package/front_end/ui/components/text_editor/config.ts +36 -14
  291. package/front_end/ui/components/text_editor/javascript.ts +14 -9
  292. package/front_end/ui/components/text_editor/theme.ts +29 -4
  293. package/front_end/ui/legacy/InspectorView.ts +1 -1
  294. package/front_end/ui/legacy/ViewManager.ts +6 -0
  295. package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +20 -0
  296. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +1 -0
  297. package/front_end/ui/legacy/components/utils/Linkifier.ts +49 -79
  298. package/front_end/ui/legacy/themeColors.css +2 -0
  299. package/inspector_overlay/main.ts +3 -0
  300. package/package.json +1 -1
@@ -3,9 +3,12 @@
3
3
  // found in the LICENSE file.
4
4
 
5
5
  import * as i18n from '../../../core/i18n/i18n.js';
6
+ import * as DataGrid from '../../../ui/components/data_grid/data_grid.js';
6
7
  import * as ComponentHelpers from '../../../ui/components/helpers/helpers.js';
7
8
  import * as LitHtml from '../../../ui/lit-html/lit-html.js';
8
9
 
10
+ import type * as Protocol from '../../../generated/protocol.js';
11
+
9
12
  import reportingApiGridStyles from './reportingApiGrid.css.js';
10
13
 
11
14
  const UIStrings = {
@@ -20,30 +23,86 @@ export const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
20
23
 
21
24
  const {render, html} = LitHtml;
22
25
 
26
+ export interface EndpointsGridData {
27
+ endpoints: Map<string, Protocol.Network.ReportingApiEndpoint[]>;
28
+ }
29
+
23
30
  export class EndpointsGrid extends HTMLElement {
24
31
  static readonly litTagName = LitHtml.literal`devtools-resources-endpoints-grid`;
25
32
 
26
33
  private readonly shadow = this.attachShadow({mode: 'open'});
34
+ private endpoints: Map<string, Protocol.Network.ReportingApiEndpoint[]> = new Map();
27
35
 
28
36
  connectedCallback(): void {
29
37
  this.shadow.adoptedStyleSheets = [reportingApiGridStyles];
30
38
  this.render();
31
39
  }
32
40
 
33
- // TODO(crbug.com/1200732): Display info about currently configured endpoints
41
+ set data(data: EndpointsGridData) {
42
+ this.endpoints = data.endpoints;
43
+ this.render();
44
+ }
45
+
34
46
  private render(): void {
47
+ const endpointsGridData: DataGrid.DataGridController.DataGridControllerData = {
48
+ columns: [
49
+ {
50
+ id: 'origin',
51
+ title: i18n.i18n.lockedString('Origin'),
52
+ widthWeighting: 30,
53
+ hideable: false,
54
+ visible: true,
55
+ },
56
+ {
57
+ id: 'name',
58
+ title: i18n.i18n.lockedString('Name'),
59
+ widthWeighting: 20,
60
+ hideable: false,
61
+ visible: true,
62
+ },
63
+ {
64
+ id: 'url',
65
+ title: i18n.i18n.lockedString('URL'),
66
+ widthWeighting: 30,
67
+ hideable: false,
68
+ visible: true,
69
+ },
70
+ ],
71
+ rows: this.buildReportRows(),
72
+ };
73
+
35
74
  // Disabled until https://crbug.com/1079231 is fixed.
36
75
  // clang-format off
37
76
  render(html`
38
77
  <div class="reporting-container">
39
78
  <div class="reporting-header">${i18n.i18n.lockedString('Endpoints')}</div>
40
- <div class="reporting-placeholder">
41
- <div>${i18nString(UIStrings.noEndpointsToDisplay)}</div>
42
- </div>
79
+ ${this.endpoints.size > 0 ? html`
80
+ <${DataGrid.DataGridController.DataGridController.litTagName} .data=${
81
+ endpointsGridData as DataGrid.DataGridController.DataGridControllerData}>
82
+ </${DataGrid.DataGridController.DataGridController.litTagName}>
83
+ ` : html`
84
+ <div class="reporting-placeholder">
85
+ <div>${i18nString(UIStrings.noEndpointsToDisplay)}</div>
86
+ </div>
87
+ `}
43
88
  </div>
44
89
  `, this.shadow);
45
90
  // clang-format on
46
91
  }
92
+
93
+ private buildReportRows(): DataGrid.DataGridUtils.Row[] {
94
+ return Array.from(this.endpoints)
95
+ .map(([origin, endpointArray]) => endpointArray.map(endpoint => {
96
+ return {
97
+ cells: [
98
+ {columnId: 'origin', value: origin},
99
+ {columnId: 'name', value: endpoint.groupName},
100
+ {columnId: 'url', value: endpoint.url},
101
+ ],
102
+ };
103
+ }))
104
+ .flat();
105
+ }
47
106
  }
48
107
 
49
108
  ComponentHelpers.CustomElements.defineComponent('devtools-resources-endpoints-grid', EndpointsGrid);
@@ -47,10 +47,6 @@ const UIStrings = {
47
47
  */
48
48
  document: 'Document',
49
49
  /**
50
- *@description Text for web URLs
51
- */
52
- url: 'URL',
53
- /**
54
50
  *@description Title for a link to the Sources panel
55
51
  */
56
52
  clickToRevealInSourcesPanel: 'Click to reveal in Sources panel',
@@ -67,10 +63,6 @@ const UIStrings = {
67
63
  */
68
64
  clickToRevealInNetworkPanelMight: 'Click to reveal in Network panel (might require page reload)',
69
65
  /**
70
- *@description Text for the origin of something
71
- */
72
- origin: 'Origin',
73
- /**
74
66
  *@description Related node label in Timeline UIUtils of the Performance panel
75
67
  */
76
68
  ownerElement: 'Owner Element',
@@ -117,11 +109,11 @@ const UIStrings = {
117
109
  /**
118
110
  *@description Row title for in the Frame Details view
119
111
  */
120
- crossoriginIsolated: 'Cross-Origin Isolated',
112
+ crossoriginIsolated: '`Cross-Origin` Isolated',
121
113
  /**
122
114
  *@description Explanatory text in the Frame Details view
123
115
  */
124
- localhostIsAlwaysASecureContext: 'Localhost is always a secure context',
116
+ localhostIsAlwaysASecureContext: '`Localhost` is always a secure context',
125
117
  /**
126
118
  *@description Explanatory text in the Frame Details view
127
119
  */
@@ -131,14 +123,6 @@ const UIStrings = {
131
123
  */
132
124
  theFramesSchemeIsInsecure: 'The frame\'s scheme is insecure',
133
125
  /**
134
- *@description Row title in the Frame Details view
135
- */
136
- crossoriginEmbedderPolicy: 'Cross-Origin Embedder Policy',
137
- /**
138
- *@description Row title in the Frame Details view
139
- */
140
- crossoriginOpenerPolicy: 'Cross-Origin Opener Policy',
141
- /**
142
126
  *@description This label specifies the server endpoints to which the server is reporting errors
143
127
  *and warnings through the Report-to API. Following this label will be the URL of the server.
144
128
  */
@@ -150,7 +134,8 @@ const UIStrings = {
150
134
  /**
151
135
  *@description Explanatory text in the Frame Details view for the API availability section
152
136
  */
153
- availabilityOfCertainApisDepends: 'Availability of certain APIs depends on the document being cross-origin isolated.',
137
+ availabilityOfCertainApisDepends:
138
+ 'Availability of certain APIs depends on the document being `cross-origin` isolated.',
154
139
  /**
155
140
  *@description Description of the SharedArrayBuffer status
156
141
  */
@@ -167,20 +152,20 @@ const UIStrings = {
167
152
  *@description Tooltip for the SharedArrayBuffer availability status
168
153
  */
169
154
  sharedarraybufferConstructorIs:
170
- 'SharedArrayBuffer constructor is available and SABs can be transferred via postMessage',
155
+ '`SharedArrayBuffer` constructor is available and `SABs` can be transferred via `postMessage`',
171
156
  /**
172
157
  *@description Tooltip for the SharedArrayBuffer availability status
173
158
  */
174
159
  sharedarraybufferConstructorIsAvailable:
175
- 'SharedArrayBuffer constructor is available but SABs cannot be transferred via postMessage',
160
+ '`SharedArrayBuffer` constructor is available but `SABs` cannot be transferred via `postMessage`',
176
161
  /**
177
162
  *@description Explanation for the SharedArrayBuffer availability status
178
163
  */
179
- willRequireCrossoriginIsolated: '⚠️ will require cross-origin isolated context in the future',
164
+ willRequireCrossoriginIsolated: '⚠️ will require `cross-origin` isolated context in the future',
180
165
  /**
181
166
  *@description Explanation for the SharedArrayBuffer availability status
182
167
  */
183
- requiresCrossoriginIsolated: 'requires cross-origin isolated context',
168
+ requiresCrossoriginIsolated: 'requires `cross-origin` isolated context',
184
169
  /**
185
170
  *@description Explanation for the SharedArrayBuffer availability status in case the transfer of a SAB requires the
186
171
  * permission policy `cross-origin-isolated` to be enabled (e.g. because the message refers to the situation in an iframe).
@@ -194,11 +179,12 @@ const UIStrings = {
194
179
  /**
195
180
  *@description Tooltip for the Measure Memory availability status
196
181
  */
197
- thePerformanceAPI: 'The performance.measureUserAgentSpecificMemory() API is available',
182
+ thePerformanceAPI: 'The `performance.measureUserAgentSpecificMemory()` API is available',
198
183
  /**
199
184
  *@description Tooltip for the Measure Memory availability status
200
185
  */
201
- thePerformancemeasureuseragentspecificmemory: 'The performance.measureUserAgentSpecificMemory() API is not available',
186
+ thePerformancemeasureuseragentspecificmemory:
187
+ 'The `performance.measureUserAgentSpecificMemory()` API is not available',
202
188
  /**
203
189
  *@description Entry in the API availability section of the frame details view
204
190
  */
@@ -211,12 +197,13 @@ const UIStrings = {
211
197
  *@description Label for a stack trace. If a frame is created programmatically (i.e. via JavaScript), there is a
212
198
  * stack trace for the line of code which caused the creation of the iframe. This is the stack trace we are showing here.
213
199
  */
214
- creationStackTrace: 'Frame Creation Stack Trace',
200
+ creationStackTrace: 'Frame Creation `Stack Trace`',
215
201
  /**
216
202
  *@description Tooltip for 'Frame Creation Stack Trace' explaining that the stack
217
203
  *trace shows where in the code the frame has been created programmatically
218
204
  */
219
- creationStackTraceExplanation: 'This frame was created programmatically. The stack trace shows where this happened.',
205
+ creationStackTraceExplanation:
206
+ 'This frame was created programmatically. The `stack trace` shows where this happened.',
220
207
  /**
221
208
  *@description Text descripting why a frame has been indentified as an advertisement.
222
209
  */
@@ -230,11 +217,11 @@ const UIStrings = {
230
217
  *@description Text descripting why a frame has been indentified as an advertisement.
231
218
  */
232
219
  createdByAdScriptExplanation:
233
- 'There was an ad script in the (async) stack when this frame was created. Examining the creation stack trace of this frame might provide more insight.',
220
+ 'There was an ad script in the `(async) stack` when this frame was created. Examining the creation `stack trace` of this frame might provide more insight.',
234
221
  /**
235
222
  *@description Label for a list of origin trials that associated with at least one token.
236
223
  */
237
- originTrials: 'Origin Trials',
224
+ // originTrials: 'Origin Trials',
238
225
  };
239
226
  const str_ = i18n.i18n.registerUIStrings('panels/application/components/FrameDetailsView.ts', UIStrings);
240
227
  const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
@@ -330,7 +317,7 @@ export class FrameDetailsReportView extends HTMLElement {
330
317
 
331
318
  return LitHtml.html`
332
319
  <${ReportView.ReportView.ReportSectionHeader.litTagName}>
333
- ${i18nString(UIStrings.originTrials)}
320
+ ${i18n.i18n.lockedString('Origin Trials')}
334
321
  <${IconButton.IconButton.IconButton.litTagName} class="inline-button" .data="${{
335
322
  clickHandler: refreshOriginTrials,
336
323
  groups: [
@@ -356,7 +343,7 @@ export class FrameDetailsReportView extends HTMLElement {
356
343
  return LitHtml.html`
357
344
  <${ReportView.ReportView.ReportSectionHeader.litTagName}>${i18nString(UIStrings.document)}</${
358
345
  ReportView.ReportView.ReportSectionHeader.litTagName}>
359
- <${ReportView.ReportView.ReportKey.litTagName}>${i18nString(UIStrings.url)}</${
346
+ <${ReportView.ReportView.ReportKey.litTagName}>${i18n.i18n.lockedString('URL')}</${
360
347
  ReportView.ReportView.ReportKey.litTagName}>
361
348
  <${ReportView.ReportView.ReportValue.litTagName}>
362
349
  <div class="inline-items">
@@ -462,7 +449,7 @@ export class FrameDetailsReportView extends HTMLElement {
462
449
  private maybeRenderOrigin(): LitHtml.TemplateResult|{} {
463
450
  if (this.frame && this.frame.securityOrigin && this.frame.securityOrigin !== '://') {
464
451
  return LitHtml.html`
465
- <${ReportView.ReportView.ReportKey.litTagName}>${i18nString(UIStrings.origin)}</${
452
+ <${ReportView.ReportView.ReportKey.litTagName}>${i18n.i18n.lockedString('Origin')}</${
466
453
  ReportView.ReportView.ReportKey.litTagName}>
467
454
  <${ReportView.ReportView.ReportValue.litTagName}>
468
455
  <div class="text-ellipsis" title=${this.frame.securityOrigin}>${this.frame.securityOrigin}</div>
@@ -622,11 +609,11 @@ export class FrameDetailsReportView extends HTMLElement {
622
609
  return LitHtml.html`
623
610
  ${
624
611
  this.maybeRenderCrossOriginStatus(
625
- info.coep, i18nString(UIStrings.crossoriginEmbedderPolicy),
612
+ info.coep, i18n.i18n.lockedString('Cross-Origin Embedder Policy (COEP)'),
626
613
  Protocol.Network.CrossOriginEmbedderPolicyValue.None)}
627
614
  ${
628
615
  this.maybeRenderCrossOriginStatus(
629
- info.coop, i18nString(UIStrings.crossoriginOpenerPolicy),
616
+ info.coop, i18n.i18n.lockedString('Cross-Origin Opener Policy (COOP)'),
630
617
  Protocol.Network.CrossOriginOpenerPolicyValue.UnsafeNone)}
631
618
  `;
632
619
  }
@@ -4,6 +4,7 @@
4
4
 
5
5
  import * as Common from '../../core/common/common.js';
6
6
  import * as i18n from '../../core/i18n/i18n.js';
7
+ import * as Root from '../../core/root/root.js';
7
8
  import * as Diff from '../../third_party/diff/diff.js';
8
9
  import * as DiffView from '../../ui/components/diff_view/diff_view.js';
9
10
  import * as UI from '../../ui/legacy/legacy.js';
@@ -166,7 +167,7 @@ export class ChangesView extends UI.Widget.VBox {
166
167
  this.registerCSSFiles([changesViewStyles]);
167
168
  }
168
169
 
169
- private refreshDiff(): void {
170
+ private async refreshDiff(): Promise<void> {
170
171
  if (!this.isShowing()) {
171
172
  return;
172
173
  }
@@ -180,12 +181,12 @@ export class ChangesView extends UI.Widget.VBox {
180
181
  this.hideDiff(i18nString(UIStrings.binaryData));
181
182
  return;
182
183
  }
183
- this.workspaceDiff.requestDiff(uiSourceCode).then((diff: Diff.Diff.DiffArray|null): void => {
184
- if (this.selectedUISourceCode !== uiSourceCode) {
185
- return;
186
- }
187
- this.renderDiffRows(diff);
188
- });
184
+ const diff = await this.workspaceDiff.requestDiff(
185
+ uiSourceCode, {shouldFormatDiff: Root.Runtime.experiments.isEnabled('preciseChanges')});
186
+ if (this.selectedUISourceCode !== uiSourceCode) {
187
+ return;
188
+ }
189
+ this.renderDiffRows(diff);
189
190
  }
190
191
 
191
192
  private hideDiff(message: string): void {
@@ -255,6 +255,7 @@ export class ConsolePin {
255
255
  ]),
256
256
  CodeMirror.EditorView.domEventHandlers({blur: (_e, view) => this.onBlur(view)}),
257
257
  TextEditor.Config.baseConfiguration(expression),
258
+ TextEditor.Config.closeBrackets,
258
259
  TextEditor.Config.autocompletion,
259
260
  ],
260
261
  }));