chrome-devtools-frontend 1.0.943986 → 1.0.945579

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 (335) hide show
  1. package/config/gni/devtools_grd_files.gni +4 -0
  2. package/config/gni/devtools_image_files.gni +1 -0
  3. package/front_end/Images/src/circled_exclamation_icon.svg +3 -0
  4. package/front_end/core/common/ParsedURL.ts +1 -1
  5. package/front_end/core/host/UserMetrics.ts +2 -1
  6. package/front_end/core/i18n/i18nImpl.ts +7 -4
  7. package/front_end/core/i18n/locales/en-US.json +3 -72
  8. package/front_end/core/i18n/locales/en-XL.json +15 -84
  9. package/front_end/core/protocol_client/NodeURL.ts +1 -0
  10. package/front_end/core/sdk/CSSMetadata.ts +0 -1
  11. package/front_end/core/sdk/CSSStyleDeclaration.ts +4 -0
  12. package/front_end/core/sdk/CSSStyleSheetHeader.ts +2 -3
  13. package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +2 -3
  14. package/front_end/core/sdk/Cookie.ts +17 -0
  15. package/front_end/core/sdk/CookieModel.ts +1 -0
  16. package/front_end/core/sdk/DebuggerModel.ts +5 -4
  17. package/front_end/core/sdk/NetworkManager.ts +4 -1
  18. package/front_end/core/sdk/NetworkRequest.ts +2 -2
  19. package/front_end/core/sdk/OverlayModel.ts +0 -9
  20. package/front_end/core/sdk/Resource.ts +2 -2
  21. package/front_end/core/sdk/Script.ts +2 -3
  22. package/front_end/core/sdk/sdk-meta.ts +0 -26
  23. package/front_end/entrypoints/inspector_main/RenderingOptions.ts +0 -13
  24. package/front_end/entrypoints/main/MainImpl.ts +4 -0
  25. package/front_end/generated/protocol.d.ts +0 -4
  26. package/front_end/models/bindings/BreakpointManager.ts +3 -4
  27. package/front_end/models/bindings/ResourceMapping.ts +1 -2
  28. package/front_end/models/bindings/StylesSourceMapping.ts +1 -2
  29. package/front_end/models/emulation/EmulatedDevices.ts +2 -4
  30. package/front_end/models/persistence/IsolatedFileSystem.ts +7 -6
  31. package/front_end/models/persistence/PersistenceActions.ts +4 -1
  32. package/front_end/models/persistence/PlatformFileSystem.ts +3 -4
  33. package/front_end/models/text_utils/ContentProvider.ts +1 -2
  34. package/front_end/models/text_utils/StaticContentProvider.ts +2 -3
  35. package/front_end/models/workspace/UISourceCode.ts +2 -2
  36. package/front_end/models/workspace_diff/WorkspaceDiff.ts +20 -6
  37. package/front_end/panels/animation/animationTimeline.css +2 -0
  38. package/front_end/panels/application/BackForwardCacheStrings.ts +15 -75
  39. package/front_end/panels/application/BackForwardCacheView.ts +8 -1
  40. package/front_end/panels/application/ReportingApiView.ts +15 -1
  41. package/front_end/panels/application/components/EndpointsGrid.ts +63 -4
  42. package/front_end/panels/application/components/FrameDetailsView.ts +21 -34
  43. package/front_end/panels/changes/ChangesView.ts +8 -7
  44. package/front_end/panels/console/ConsolePinPane.ts +1 -0
  45. package/front_end/panels/console/ConsolePrompt.ts +121 -171
  46. package/front_end/panels/console/ConsoleView.ts +1 -1
  47. package/front_end/panels/console/consoleView.css +1 -1
  48. package/front_end/panels/css_overview/cssOverviewCompletedView.css +2 -2
  49. package/front_end/panels/elements/AccessibilityTreeUtils.ts +2 -1
  50. package/front_end/panels/elements/ElementsTreeElement.ts +1 -0
  51. package/front_end/panels/elements/StyleEditorWidget.ts +13 -2
  52. package/front_end/panels/elements/StylePropertyHighlighter.ts +29 -19
  53. package/front_end/panels/elements/StylePropertyTreeElement.ts +8 -12
  54. package/front_end/panels/elements/StylesSidebarPane.ts +36 -10
  55. package/front_end/panels/elements/components/AccessibilityTreeNode.ts +27 -3
  56. package/front_end/panels/emulation/DeviceModeView.ts +3 -0
  57. package/front_end/panels/help/ReleaseNoteText.ts +3 -1
  58. package/front_end/panels/network/NetworkDataGridNode.ts +5 -1
  59. package/front_end/panels/snippets/ScriptSnippetFileSystem.ts +1 -1
  60. package/front_end/panels/sources/BreakpointEditDialog.ts +1 -0
  61. package/front_end/panels/sources/DebuggerPlugin.ts +1 -1
  62. package/front_end/panels/sources/NavigatorView.ts +1 -1
  63. package/front_end/panels/sources/UISourceCodeFrame.ts +0 -1
  64. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +3 -34
  65. package/front_end/panels/timeline/TimelineUIUtils.ts +51 -3
  66. package/front_end/services/window_bounds/WindowBoundsService.ts +27 -0
  67. package/front_end/services/window_bounds/window_bounds.ts +9 -0
  68. package/front_end/third_party/acorn/README.chromium +2 -2
  69. package/front_end/third_party/acorn/acorn.ts +1 -1
  70. package/front_end/third_party/acorn/package/CHANGELOG.md +31 -1
  71. package/front_end/third_party/acorn/package/README.md +1 -1
  72. package/front_end/third_party/acorn/package/dist/acorn.d.ts +3 -0
  73. package/front_end/third_party/acorn/package/dist/acorn.js +772 -708
  74. package/front_end/third_party/acorn/package/dist/acorn.mjs +767 -703
  75. package/front_end/third_party/acorn/package/dist/bin.js +47 -21
  76. package/front_end/third_party/acorn/package/package.json +1 -1
  77. package/front_end/third_party/acorn-loose/README.chromium +2 -2
  78. package/front_end/third_party/acorn-loose/package/CHANGELOG.md +12 -0
  79. package/front_end/third_party/acorn-loose/package/dist/acorn-loose.js +27 -7
  80. package/front_end/third_party/acorn-loose/package/dist/acorn-loose.mjs +28 -8
  81. package/front_end/third_party/acorn-loose/package/package.json +2 -2
  82. package/front_end/third_party/codemirror.next/bundle.ts +4 -3
  83. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  84. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +39 -1
  85. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  86. package/front_end/third_party/codemirror.next/package.json +4 -4
  87. package/front_end/third_party/i18n/i18n-impl.ts +1 -1
  88. package/front_end/third_party/lit-html/README.chromium +2 -2
  89. package/front_end/third_party/lit-html/package/CHANGELOG.md +216 -28
  90. package/front_end/third_party/lit-html/package/LICENSE +9 -9
  91. package/front_end/third_party/lit-html/package/README.md +12 -162
  92. package/front_end/third_party/lit-html/package/async-directive.d.ts +23 -54
  93. package/front_end/third_party/lit-html/package/async-directive.d.ts.map +1 -1
  94. package/front_end/third_party/lit-html/package/async-directive.js +2 -7
  95. package/front_end/third_party/lit-html/package/async-directive.js.map +1 -1
  96. package/front_end/third_party/lit-html/package/development/async-directive.d.ts +23 -54
  97. package/front_end/third_party/lit-html/package/development/async-directive.d.ts.map +1 -1
  98. package/front_end/third_party/lit-html/package/development/async-directive.js +44 -194
  99. package/front_end/third_party/lit-html/package/development/async-directive.js.map +1 -1
  100. package/front_end/third_party/lit-html/package/development/directive-helpers.d.ts +6 -5
  101. package/front_end/third_party/lit-html/package/development/directive-helpers.d.ts.map +1 -1
  102. package/front_end/third_party/lit-html/package/development/directive-helpers.js +25 -9
  103. package/front_end/third_party/lit-html/package/development/directive-helpers.js.map +1 -1
  104. package/front_end/third_party/lit-html/package/development/directive.d.ts +3 -16
  105. package/front_end/third_party/lit-html/package/development/directive.d.ts.map +1 -1
  106. package/front_end/third_party/lit-html/package/development/directive.js +6 -1
  107. package/front_end/third_party/lit-html/package/development/directive.js.map +1 -1
  108. package/front_end/third_party/lit-html/package/development/directives/async-append.d.ts +7 -14
  109. package/front_end/third_party/lit-html/package/development/directives/async-append.d.ts.map +1 -1
  110. package/front_end/third_party/lit-html/package/development/directives/async-append.js +17 -58
  111. package/front_end/third_party/lit-html/package/development/directives/async-append.js.map +1 -1
  112. package/front_end/third_party/lit-html/package/development/directives/async-replace.d.ts +9 -14
  113. package/front_end/third_party/lit-html/package/development/directives/async-replace.d.ts.map +1 -1
  114. package/front_end/third_party/lit-html/package/development/directives/async-replace.js +57 -37
  115. package/front_end/third_party/lit-html/package/development/directives/async-replace.js.map +1 -1
  116. package/front_end/third_party/lit-html/package/development/directives/cache.d.ts +2 -3
  117. package/front_end/third_party/lit-html/package/development/directives/cache.d.ts.map +1 -1
  118. package/front_end/third_party/lit-html/package/development/directives/cache.js +4 -6
  119. package/front_end/third_party/lit-html/package/development/directives/cache.js.map +1 -1
  120. package/front_end/third_party/lit-html/package/development/directives/class-map.d.ts +2 -2
  121. package/front_end/third_party/lit-html/package/development/directives/class-map.d.ts.map +1 -1
  122. package/front_end/third_party/lit-html/package/development/directives/class-map.js +17 -7
  123. package/front_end/third_party/lit-html/package/development/directives/class-map.js.map +1 -1
  124. package/front_end/third_party/lit-html/package/development/directives/guard.d.ts +3 -2
  125. package/front_end/third_party/lit-html/package/development/directives/guard.d.ts.map +1 -1
  126. package/front_end/third_party/lit-html/package/development/directives/guard.js +3 -2
  127. package/front_end/third_party/lit-html/package/development/directives/guard.js.map +1 -1
  128. package/front_end/third_party/lit-html/package/development/directives/live.d.ts +4 -3
  129. package/front_end/third_party/lit-html/package/development/directives/live.d.ts.map +1 -1
  130. package/front_end/third_party/lit-html/package/development/directives/live.js +5 -7
  131. package/front_end/third_party/lit-html/package/development/directives/live.js.map +1 -1
  132. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.d.ts +58 -0
  133. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.d.ts.map +1 -0
  134. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.js +85 -0
  135. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.js.map +1 -0
  136. package/front_end/third_party/lit-html/package/development/directives/ref.d.ts +14 -11
  137. package/front_end/third_party/lit-html/package/development/directives/ref.d.ts.map +1 -1
  138. package/front_end/third_party/lit-html/package/development/directives/ref.js +13 -11
  139. package/front_end/third_party/lit-html/package/development/directives/ref.js.map +1 -1
  140. package/front_end/third_party/lit-html/package/development/directives/repeat.d.ts +8 -4
  141. package/front_end/third_party/lit-html/package/development/directives/repeat.d.ts.map +1 -1
  142. package/front_end/third_party/lit-html/package/development/directives/repeat.js +23 -9
  143. package/front_end/third_party/lit-html/package/development/directives/repeat.js.map +1 -1
  144. package/front_end/third_party/lit-html/package/development/directives/style-map.d.ts +1 -2
  145. package/front_end/third_party/lit-html/package/development/directives/style-map.d.ts.map +1 -1
  146. package/front_end/third_party/lit-html/package/development/directives/style-map.js +1 -2
  147. package/front_end/third_party/lit-html/package/development/directives/style-map.js.map +1 -1
  148. package/front_end/third_party/lit-html/package/development/directives/template-content.d.ts +1 -2
  149. package/front_end/third_party/lit-html/package/development/directives/template-content.js +1 -2
  150. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.d.ts +6 -4
  151. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.d.ts.map +1 -1
  152. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.js +7 -5
  153. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.js.map +1 -1
  154. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.d.ts +4 -1
  155. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.d.ts.map +1 -1
  156. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.js +3 -0
  157. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.js.map +1 -1
  158. package/front_end/third_party/lit-html/package/development/directives/until.d.ts +12 -8
  159. package/front_end/third_party/lit-html/package/development/directives/until.d.ts.map +1 -1
  160. package/front_end/third_party/lit-html/package/development/directives/until.js +63 -23
  161. package/front_end/third_party/lit-html/package/development/directives/until.js.map +1 -1
  162. package/front_end/third_party/lit-html/package/development/experimental-hydrate.d.ts.map +1 -1
  163. package/front_end/third_party/lit-html/package/development/experimental-hydrate.js +9 -8
  164. package/front_end/third_party/lit-html/package/development/experimental-hydrate.js.map +1 -1
  165. package/front_end/third_party/lit-html/package/development/lit-html.d.ts +81 -136
  166. package/front_end/third_party/lit-html/package/development/lit-html.d.ts.map +1 -1
  167. package/front_end/third_party/lit-html/package/development/lit-html.js +249 -76
  168. package/front_end/third_party/lit-html/package/development/lit-html.js.map +1 -1
  169. package/front_end/third_party/lit-html/package/development/polyfill-support.d.ts +1 -41
  170. package/front_end/third_party/lit-html/package/development/polyfill-support.d.ts.map +1 -1
  171. package/front_end/third_party/lit-html/package/development/polyfill-support.js +40 -21
  172. package/front_end/third_party/lit-html/package/development/polyfill-support.js.map +1 -1
  173. package/front_end/third_party/lit-html/package/development/private-ssr-support.d.ts +12 -10
  174. package/front_end/third_party/lit-html/package/development/private-ssr-support.d.ts.map +1 -1
  175. package/front_end/third_party/lit-html/package/development/private-ssr-support.js +11 -3
  176. package/front_end/third_party/lit-html/package/development/private-ssr-support.js.map +1 -1
  177. package/front_end/third_party/lit-html/package/development/static.d.ts.map +1 -1
  178. package/front_end/third_party/lit-html/package/development/static.js +6 -5
  179. package/front_end/third_party/lit-html/package/development/static.js.map +1 -1
  180. package/front_end/third_party/lit-html/package/directive-helpers.d.ts +6 -5
  181. package/front_end/third_party/lit-html/package/directive-helpers.d.ts.map +1 -1
  182. package/front_end/third_party/lit-html/package/directive-helpers.js +2 -2
  183. package/front_end/third_party/lit-html/package/directive-helpers.js.map +1 -1
  184. package/front_end/third_party/lit-html/package/directive.d.ts +3 -16
  185. package/front_end/third_party/lit-html/package/directive.d.ts.map +1 -1
  186. package/front_end/third_party/lit-html/package/directive.js +1 -1
  187. package/front_end/third_party/lit-html/package/directive.js.map +1 -1
  188. package/front_end/third_party/lit-html/package/directives/async-append.d.ts +7 -14
  189. package/front_end/third_party/lit-html/package/directives/async-append.d.ts.map +1 -1
  190. package/front_end/third_party/lit-html/package/directives/async-append.js +2 -6
  191. package/front_end/third_party/lit-html/package/directives/async-append.js.map +1 -1
  192. package/front_end/third_party/lit-html/package/directives/async-replace.d.ts +9 -14
  193. package/front_end/third_party/lit-html/package/directives/async-replace.d.ts.map +1 -1
  194. package/front_end/third_party/lit-html/package/directives/async-replace.js +2 -5
  195. package/front_end/third_party/lit-html/package/directives/async-replace.js.map +1 -1
  196. package/front_end/third_party/lit-html/package/directives/cache.d.ts +2 -3
  197. package/front_end/third_party/lit-html/package/directives/cache.d.ts.map +1 -1
  198. package/front_end/third_party/lit-html/package/directives/cache.js +2 -5
  199. package/front_end/third_party/lit-html/package/directives/cache.js.map +1 -1
  200. package/front_end/third_party/lit-html/package/directives/class-map.d.ts +2 -2
  201. package/front_end/third_party/lit-html/package/directives/class-map.d.ts.map +1 -1
  202. package/front_end/third_party/lit-html/package/directives/class-map.js +2 -4
  203. package/front_end/third_party/lit-html/package/directives/class-map.js.map +1 -1
  204. package/front_end/third_party/lit-html/package/directives/guard.d.ts +3 -2
  205. package/front_end/third_party/lit-html/package/directives/guard.d.ts.map +1 -1
  206. package/front_end/third_party/lit-html/package/directives/guard.js +2 -4
  207. package/front_end/third_party/lit-html/package/directives/guard.js.map +1 -1
  208. package/front_end/third_party/lit-html/package/directives/live.d.ts +4 -3
  209. package/front_end/third_party/lit-html/package/directives/live.d.ts.map +1 -1
  210. package/front_end/third_party/lit-html/package/directives/live.js +1 -4
  211. package/front_end/third_party/lit-html/package/directives/live.js.map +1 -1
  212. package/front_end/third_party/lit-html/package/directives/private-async-helpers.d.ts +58 -0
  213. package/front_end/third_party/lit-html/package/directives/private-async-helpers.d.ts.map +1 -0
  214. package/front_end/third_party/lit-html/package/directives/private-async-helpers.js +7 -0
  215. package/front_end/third_party/lit-html/package/directives/private-async-helpers.js.map +1 -0
  216. package/front_end/third_party/lit-html/package/directives/ref.d.ts +14 -11
  217. package/front_end/third_party/lit-html/package/directives/ref.d.ts.map +1 -1
  218. package/front_end/third_party/lit-html/package/directives/ref.js +2 -5
  219. package/front_end/third_party/lit-html/package/directives/ref.js.map +1 -1
  220. package/front_end/third_party/lit-html/package/directives/repeat.d.ts +8 -4
  221. package/front_end/third_party/lit-html/package/directives/repeat.d.ts.map +1 -1
  222. package/front_end/third_party/lit-html/package/directives/repeat.js +2 -5
  223. package/front_end/third_party/lit-html/package/directives/repeat.js.map +1 -1
  224. package/front_end/third_party/lit-html/package/directives/style-map.d.ts +1 -2
  225. package/front_end/third_party/lit-html/package/directives/style-map.d.ts.map +1 -1
  226. package/front_end/third_party/lit-html/package/directives/style-map.js +2 -4
  227. package/front_end/third_party/lit-html/package/directives/style-map.js.map +1 -1
  228. package/front_end/third_party/lit-html/package/directives/template-content.d.ts +1 -2
  229. package/front_end/third_party/lit-html/package/directives/template-content.js +2 -4
  230. package/front_end/third_party/lit-html/package/directives/template-content.js.map +1 -1
  231. package/front_end/third_party/lit-html/package/directives/unsafe-html.d.ts +6 -4
  232. package/front_end/third_party/lit-html/package/directives/unsafe-html.d.ts.map +1 -1
  233. package/front_end/third_party/lit-html/package/directives/unsafe-html.js +2 -4
  234. package/front_end/third_party/lit-html/package/directives/unsafe-html.js.map +1 -1
  235. package/front_end/third_party/lit-html/package/directives/unsafe-svg.d.ts +4 -1
  236. package/front_end/third_party/lit-html/package/directives/unsafe-svg.d.ts.map +1 -1
  237. package/front_end/third_party/lit-html/package/directives/unsafe-svg.js.map +1 -1
  238. package/front_end/third_party/lit-html/package/directives/until.d.ts +12 -8
  239. package/front_end/third_party/lit-html/package/directives/until.d.ts.map +1 -1
  240. package/front_end/third_party/lit-html/package/directives/until.js +2 -6
  241. package/front_end/third_party/lit-html/package/directives/until.js.map +1 -1
  242. package/front_end/third_party/lit-html/package/experimental-hydrate.d.ts.map +1 -1
  243. package/front_end/third_party/lit-html/package/experimental-hydrate.js +2 -5
  244. package/front_end/third_party/lit-html/package/experimental-hydrate.js.map +1 -1
  245. package/front_end/third_party/lit-html/package/lit-html.d.ts +81 -136
  246. package/front_end/third_party/lit-html/package/lit-html.d.ts.map +1 -1
  247. package/front_end/third_party/lit-html/package/lit-html.js +1 -1
  248. package/front_end/third_party/lit-html/package/lit-html.js.map +1 -1
  249. package/front_end/third_party/lit-html/package/package.json +75 -24
  250. package/front_end/third_party/lit-html/package/polyfill-support.d.ts +1 -41
  251. package/front_end/third_party/lit-html/package/polyfill-support.d.ts.map +1 -1
  252. package/front_end/third_party/lit-html/package/polyfill-support.js +1 -1
  253. package/front_end/third_party/lit-html/package/polyfill-support.js.map +1 -1
  254. package/front_end/third_party/lit-html/package/private-ssr-support.d.ts +12 -10
  255. package/front_end/third_party/lit-html/package/private-ssr-support.d.ts.map +1 -1
  256. package/front_end/third_party/lit-html/package/private-ssr-support.js +2 -2
  257. package/front_end/third_party/lit-html/package/private-ssr-support.js.map +1 -1
  258. package/front_end/third_party/lit-html/package/static.d.ts.map +1 -1
  259. package/front_end/third_party/lit-html/package/static.js +1 -1
  260. package/front_end/third_party/lit-html/package/static.js.map +1 -1
  261. package/front_end/third_party/marked/README.chromium +2 -2
  262. package/front_end/third_party/marked/marked.ts +2 -2
  263. package/front_end/third_party/marked/package/README.md +7 -1
  264. package/front_end/third_party/marked/package/bin/marked.js +214 -0
  265. package/front_end/third_party/marked/package/lib/marked.cjs +2907 -0
  266. package/front_end/third_party/marked/package/lib/marked.esm.d.ts +1 -3
  267. package/front_end/third_party/marked/package/lib/marked.esm.js +627 -586
  268. package/front_end/third_party/marked/package/lib/marked.umd.js +2913 -0
  269. package/front_end/third_party/marked/package/man/marked.1 +5 -24
  270. package/front_end/third_party/marked/package/man/marked.1.txt +21 -31
  271. package/front_end/third_party/marked/package/marked.min.js +1 -1
  272. package/front_end/third_party/marked/package/package.json +41 -32
  273. package/front_end/third_party/marked/package/src/Lexer.js +109 -108
  274. package/front_end/third_party/marked/package/src/Parser.js +38 -15
  275. package/front_end/third_party/marked/package/src/Renderer.js +5 -5
  276. package/front_end/third_party/marked/package/src/Slugger.js +2 -2
  277. package/front_end/third_party/marked/package/src/TextRenderer.js +2 -2
  278. package/front_end/third_party/marked/package/src/Tokenizer.js +215 -190
  279. package/front_end/third_party/marked/package/src/defaults.js +6 -9
  280. package/front_end/third_party/marked/package/src/helpers.js +16 -27
  281. package/front_end/third_party/marked/package/src/marked.js +146 -63
  282. package/front_end/third_party/marked/package/src/rules.js +20 -45
  283. package/front_end/third_party/wasmparser/README.chromium +2 -2
  284. package/front_end/third_party/wasmparser/package/.github/workflows/main.yml +47 -0
  285. package/front_end/third_party/wasmparser/package/CHANGELOG.md +12 -0
  286. package/front_end/third_party/wasmparser/package/dist/cjs/WasmParser.js +53 -53
  287. package/front_end/third_party/wasmparser/package/dist/cjs/WasmParser.js.map +1 -1
  288. package/front_end/third_party/wasmparser/package/dist/esm/WasmParser.js +53 -53
  289. package/front_end/third_party/wasmparser/package/dist/esm/WasmParser.js.map +1 -1
  290. package/front_end/third_party/wasmparser/package/package.json +1 -1
  291. package/front_end/third_party/wasmparser/package/src/WasmParser.ts +53 -53
  292. package/front_end/ui/components/adorners/Adorner.ts +14 -14
  293. package/front_end/ui/components/buttons/Button.ts +116 -42
  294. package/front_end/ui/components/data_grid/DataGrid.ts +122 -122
  295. package/front_end/ui/components/data_grid/DataGridController.ts +42 -42
  296. package/front_end/ui/components/diff_view/DiffView.ts +4 -4
  297. package/front_end/ui/components/docs/button/basic.html +3 -0
  298. package/front_end/ui/components/docs/button/basic.ts +16 -0
  299. package/front_end/ui/components/expandable_list/ExpandableList.ts +11 -11
  300. package/front_end/ui/components/icon_button/Icon.ts +24 -21
  301. package/front_end/ui/components/icon_button/IconButton.ts +31 -31
  302. package/front_end/ui/components/issue_counter/IssueCounter.ts +52 -52
  303. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +42 -42
  304. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspector.ts +67 -67
  305. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorController.ts +22 -22
  306. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorPane.ts +36 -36
  307. package/front_end/ui/components/linear_memory_inspector/LinearMemoryNavigator.ts +19 -19
  308. package/front_end/ui/components/linear_memory_inspector/LinearMemoryValueInterpreter.ts +25 -25
  309. package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +52 -52
  310. package/front_end/ui/components/linear_memory_inspector/ValueInterpreterDisplay.ts +21 -21
  311. package/front_end/ui/components/linear_memory_inspector/ValueInterpreterSettings.ts +6 -6
  312. package/front_end/ui/components/markdown_view/MarkdownImage.ts +14 -14
  313. package/front_end/ui/components/markdown_view/MarkdownLink.ts +8 -8
  314. package/front_end/ui/components/markdown_view/MarkdownView.ts +6 -6
  315. package/front_end/ui/components/render_coordinator/RenderCoordinator.ts +33 -33
  316. package/front_end/ui/components/report_view/ReportView.ts +18 -18
  317. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +53 -53
  318. package/front_end/ui/components/settings/SettingCheckbox.ts +15 -15
  319. package/front_end/ui/components/survey_link/SurveyLink.ts +28 -28
  320. package/front_end/ui/components/text_editor/TextEditor.ts +65 -36
  321. package/front_end/ui/components/text_editor/config.ts +36 -14
  322. package/front_end/ui/components/text_editor/javascript.ts +20 -15
  323. package/front_end/ui/components/text_editor/theme.ts +29 -4
  324. package/front_end/ui/components/text_prompt/TextPrompt.ts +19 -19
  325. package/front_end/ui/components/tree_outline/TreeOutline.ts +56 -56
  326. package/front_end/ui/legacy/Infobar.ts +9 -0
  327. package/front_end/ui/legacy/InspectorView.ts +1 -1
  328. package/front_end/ui/legacy/ViewManager.ts +6 -0
  329. package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +20 -0
  330. package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +1 -0
  331. package/front_end/ui/legacy/components/utils/Linkifier.ts +49 -79
  332. package/front_end/ui/legacy/tabbedPane.css +1 -1
  333. package/front_end/ui/legacy/themeColors.css +2 -0
  334. package/inspector_overlay/main.ts +3 -0
  335. package/package.json +1 -1
@@ -79,9 +79,6 @@ export class OverlayModel extends SDKModel<EventTypes> implements ProtocolProxyA
79
79
  #showScrollBottleneckRectsSetting: Common.Settings.Setting<any>;
80
80
  // TODO(crbug.com/1172300) Ignored during the jsdoc to ts migration
81
81
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
82
- #showHitTestBordersSetting: Common.Settings.Setting<any>;
83
- // TODO(crbug.com/1172300) Ignored during the jsdoc to ts migration
84
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
85
82
  #showWebVitalsSetting: Common.Settings.Setting<any>;
86
83
  #registeredListeners: Common.EventTarget.EventDescriptor[];
87
84
  #showViewportSizeOnResize: boolean;
@@ -123,7 +120,6 @@ export class OverlayModel extends SDKModel<EventTypes> implements ProtocolProxyA
123
120
  this.#showFPSCounterSetting = Common.Settings.Settings.instance().moduleSetting('showFPSCounter');
124
121
  this.#showScrollBottleneckRectsSetting =
125
122
  Common.Settings.Settings.instance().moduleSetting('showScrollBottleneckRects');
126
- this.#showHitTestBordersSetting = Common.Settings.Settings.instance().moduleSetting('showHitTestBorders');
127
123
  this.#showWebVitalsSetting = Common.Settings.Settings.instance().moduleSetting('showWebVitals');
128
124
 
129
125
  this.#registeredListeners = [];
@@ -213,8 +209,6 @@ export class OverlayModel extends SDKModel<EventTypes> implements ProtocolProxyA
213
209
  this.#showScrollBottleneckRectsSetting.addChangeListener(
214
210
  () => this.overlayAgent.invoke_setShowScrollBottleneckRects(
215
211
  {show: this.#showScrollBottleneckRectsSetting.get()})),
216
- this.#showHitTestBordersSetting.addChangeListener(
217
- () => this.overlayAgent.invoke_setShowHitTestBorders({show: this.#showHitTestBordersSetting.get()})),
218
212
  this.#showWebVitalsSetting.addChangeListener(
219
213
  () => this.overlayAgent.invoke_setShowWebVitals({show: this.#showWebVitalsSetting.get()})),
220
214
  ];
@@ -237,9 +231,6 @@ export class OverlayModel extends SDKModel<EventTypes> implements ProtocolProxyA
237
231
  if (this.#showScrollBottleneckRectsSetting.get()) {
238
232
  this.overlayAgent.invoke_setShowScrollBottleneckRects({show: true});
239
233
  }
240
- if (this.#showHitTestBordersSetting.get()) {
241
- this.overlayAgent.invoke_setShowHitTestBorders({show: true});
242
- }
243
234
  if (this.#showWebVitalsSetting.get()) {
244
235
  this.overlayAgent.invoke_setShowWebVitals({show: true});
245
236
  }
@@ -152,8 +152,8 @@ export class Resource implements TextUtils.ContentProvider.ContentProvider {
152
152
  }
153
153
 
154
154
  // TODO(crbug.com/1253323): Cast to RawPathString will be removed when migration to branded types is complete.
155
- contentURL(): Platform.DevToolsPath.RawPathString {
156
- return this.#urlInternal as Platform.DevToolsPath.RawPathString;
155
+ contentURL(): string {
156
+ return this.#urlInternal;
157
157
  }
158
158
 
159
159
  contentType(): Common.ResourceType.ResourceType {
@@ -30,7 +30,6 @@
30
30
  import * as Protocol from '../../generated/protocol.js';
31
31
  import * as TextUtils from '../../models/text_utils/text_utils.js';
32
32
  import * as Common from '../common/common.js';
33
- import type * as Platform from '../platform/platform.js';
34
33
  import * as i18n from '../i18n/i18n.js';
35
34
 
36
35
  import type {DebuggerModel} from './DebuggerModel.js';
@@ -165,8 +164,8 @@ export class Script implements TextUtils.ContentProvider.ContentProvider, FrameA
165
164
  }
166
165
 
167
166
  // TODO(crbug.com/1253323): Cast to RawPathString will be removed when migration to branded types is complete.
168
- contentURL(): Platform.DevToolsPath.RawPathString {
169
- return this.sourceURL as Platform.DevToolsPath.RawPathString;
167
+ contentURL(): string {
168
+ return this.sourceURL;
170
169
  }
171
170
 
172
171
  contentType(): Common.ResourceType.ResourceType {
@@ -155,14 +155,6 @@ const UIStrings = {
155
155
  */
156
156
  hideScrollPerformanceBottlenecks: 'Hide scroll performance bottlenecks',
157
157
  /**
158
- *@description Title of a setting under the Rendering category that can be invoked through the Command Menu
159
- */
160
- showHittestBorders: 'Show hit-test borders',
161
- /**
162
- *@description Title of a setting under the Rendering category that can be invoked through the Command Menu
163
- */
164
- hideHittestBorders: 'Hide hit-test borders',
165
- /**
166
158
  *@description Title of a Rendering setting that can be invoked through the Command Menu
167
159
  */
168
160
  emulateAFocusedPage: 'Emulate a focused page',
@@ -665,24 +657,6 @@ Common.Settings.registerSettingExtension({
665
657
  defaultValue: false,
666
658
  });
667
659
 
668
- Common.Settings.registerSettingExtension({
669
- category: Common.Settings.SettingCategory.RENDERING,
670
- settingName: 'showHitTestBorders',
671
- settingType: Common.Settings.SettingType.BOOLEAN,
672
- storageType: Common.Settings.SettingStorageType.Session,
673
- options: [
674
- {
675
- value: true,
676
- title: i18nLazyString(UIStrings.showHittestBorders),
677
- },
678
- {
679
- value: false,
680
- title: i18nLazyString(UIStrings.hideHittestBorders),
681
- },
682
- ],
683
- defaultValue: false,
684
- });
685
-
686
660
  Common.Settings.registerSettingExtension({
687
661
  category: Common.Settings.SettingCategory.RENDERING,
688
662
  title: i18nLazyString(UIStrings.emulateAFocusedPage),
@@ -95,16 +95,6 @@ const UIStrings = {
95
95
  */
96
96
  highlightsFramesRedDetectedToBe: 'Highlights frames (red) detected to be ads.',
97
97
  /**
98
- * @description The name of a checkbox setting in the Rendering tool. This setting shows borders
99
- * around hit-test regions. 'hit-test regions' are areas on the page where the browser is listening
100
- * for mouse clicks.
101
- */
102
- hittestBorders: 'Hit-test borders',
103
- /**
104
- * @description Explanation text for the 'Hit-test borders' setting in the Rendering tool.
105
- */
106
- showsBordersAroundHittestRegions: 'Shows borders around hit-test regions.',
107
- /**
108
98
  * @description The name of a checkbox setting in the Rendering tool. This setting shows an overlay
109
99
  * with Core Web Vitals. Core Web Vitals: https://support.google.com/webmasters/answer/9205520?hl=en
110
100
  */
@@ -246,9 +236,6 @@ export class RenderingOptionsView extends UI.Widget.VBox {
246
236
  this.appendCheckbox(
247
237
  i18nString(UIStrings.highlightAdFrames), i18nString(UIStrings.highlightsFramesRedDetectedToBe),
248
238
  Common.Settings.Settings.instance().moduleSetting('showAdHighlights'));
249
- this.appendCheckbox(
250
- i18nString(UIStrings.hittestBorders), i18nString(UIStrings.showsBordersAroundHittestRegions),
251
- Common.Settings.Settings.instance().moduleSetting('showHitTestBorders'));
252
239
  this.appendCheckbox(
253
240
  i18nString(UIStrings.coreWebVitals), i18nString(UIStrings.showsAnOverlayWithCoreWebVitals),
254
241
  Common.Settings.Settings.instance().moduleSetting('showWebVitals'));
@@ -365,11 +365,15 @@ export class MainImpl {
365
365
  'Enable CSS <length> authoring tool in the Styles pane (https://goo.gle/length-feedback)', undefined,
366
366
  'https://developer.chrome.com/blog/new-in-devtools-96/#length');
367
367
 
368
+ // Display precise changes in the Changes tab.
369
+ Root.Runtime.experiments.register('preciseChanges', 'Display more precise changes in the Changes tab');
370
+
368
371
  Root.Runtime.experiments.enableExperimentsByDefault([
369
372
  'sourceOrderViewer',
370
373
  'hideIssuesFeature',
371
374
  'bfcacheDebugging',
372
375
  'cssTypeComponentLength',
376
+ 'preciseChanges',
373
377
  Root.Runtime.ExperimentName.SYNC_SETTINGS,
374
378
  ]);
375
379
 
@@ -10442,10 +10442,6 @@ declare namespace Protocol {
10442
10442
  * The fantasy font-family.
10443
10443
  */
10444
10444
  fantasy?: string;
10445
- /**
10446
- * The pictograph font-family.
10447
- */
10448
- pictograph?: string;
10449
10445
  }
10450
10446
 
10451
10447
  /**
@@ -32,7 +32,6 @@
32
32
 
33
33
  import * as Common from '../../core/common/common.js';
34
34
  import * as SDK from '../../core/sdk/sdk.js';
35
- import type * as Platform from '../../core/platform/platform.js';
36
35
  import type * as Protocol from '../../generated/protocol.js';
37
36
  import type * as TextUtils from '../text_utils/text_utils.js';
38
37
  import * as Workspace from '../workspace/workspace.js';
@@ -630,7 +629,7 @@ export class ModelBreakpoint {
630
629
  const positions = debuggerLocations.map(loc => {
631
630
  const script = loc.script() as SDK.Script.Script;
632
631
  return {
633
- url: script.sourceURL as Platform.DevToolsPath.RawPathString,
632
+ url: script.sourceURL,
634
633
  scriptId: script.scriptId,
635
634
  scriptHash: script.hash,
636
635
  lineNumber: loc.lineNumber,
@@ -645,7 +644,7 @@ export class ModelBreakpoint {
645
644
  // at least signal a warning to the developer that this #breakpoint wasn't
646
645
  // really resolved.
647
646
  const position = {
648
- url: this.#breakpoint.url() as Platform.DevToolsPath.RawPathString,
647
+ url: this.#breakpoint.url(),
649
648
  scriptId: '' as Protocol.Runtime.ScriptId,
650
649
  scriptHash: '',
651
650
  lineNumber,
@@ -794,7 +793,7 @@ export class ModelBreakpoint {
794
793
  }
795
794
 
796
795
  interface Position {
797
- url: Platform.DevToolsPath.RawPathString;
796
+ url: string;
798
797
  scriptId: Protocol.Runtime.ScriptId;
799
798
  scriptHash: string;
800
799
  lineNumber: number;
@@ -3,7 +3,6 @@
3
3
  // found in the LICENSE file.
4
4
 
5
5
  import * as Common from '../../core/common/common.js';
6
- import type * as Platform from '../../core/platform/platform.js';
7
6
  import * as SDK from '../../core/sdk/sdk.js';
8
7
  import * as TextUtils from '../text_utils/text_utils.js';
9
8
  import * as Workspace from '../workspace/workspace.js';
@@ -421,7 +420,7 @@ class Binding implements TextUtils.ContentProvider.ContentProvider {
421
420
  return this.resources.values().next().value;
422
421
  }
423
422
 
424
- contentURL(): Platform.DevToolsPath.RawPathString {
423
+ contentURL(): string {
425
424
  return this.firstResource().contentURL();
426
425
  }
427
426
 
@@ -29,7 +29,6 @@
29
29
  */
30
30
 
31
31
  import * as Common from '../../core/common/common.js';
32
- import type * as Platform from '../../core/platform/platform.js';
33
32
  import * as SDK from '../../core/sdk/sdk.js';
34
33
  import type * as TextUtils from '../text_utils/text_utils.js';
35
34
  import * as Workspace from '../workspace/workspace.js';
@@ -298,7 +297,7 @@ export class StyleFile implements TextUtils.ContentProvider.ContentProvider {
298
297
  Common.EventTarget.removeEventListeners(this.#eventListeners);
299
298
  }
300
299
 
301
- contentURL(): Platform.DevToolsPath.RawPathString {
300
+ contentURL(): string {
302
301
  console.assert(this.headers.size > 0);
303
302
  return this.headers.values().next().value.originalContentProvider().contentURL();
304
303
  }
@@ -502,14 +502,12 @@ export class EmulatedDevicesList extends Common.ObjectWrapper.ObjectWrapper<Even
502
502
  constructor() {
503
503
  super();
504
504
 
505
- this.#standardSetting = Common.Settings.Settings.instance().createSetting(
506
- 'standardEmulatedDeviceList', [], Common.Settings.SettingStorageType.Synced);
505
+ this.#standardSetting = Common.Settings.Settings.instance().createSetting('standardEmulatedDeviceList', []);
507
506
  this.#standardInternal = new Set();
508
507
  this.listFromJSONV1(this.#standardSetting.get(), this.#standardInternal);
509
508
  this.updateStandardDevices();
510
509
 
511
- this.#customSetting = Common.Settings.Settings.instance().createSetting(
512
- 'customEmulatedDeviceList', [], Common.Settings.SettingStorageType.Synced);
510
+ this.#customSetting = Common.Settings.Settings.instance().createSetting('customEmulatedDeviceList', []);
513
511
  this.#customInternal = new Set();
514
512
  if (!this.listFromJSONV1(this.#customSetting.get(), this.#customInternal)) {
515
513
  this.saveCustomDevices();
@@ -28,6 +28,8 @@
28
28
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
29
  */
30
30
 
31
+ // TODO(crbug.com/1253323): All casts to UrlString will be removed from this file when migration to branded types is complete.
32
+
31
33
  import * as Common from '../../core/common/common.js';
32
34
  import * as Host from '../../core/host/host.js';
33
35
  import * as i18n from '../../core/i18n/i18n.js';
@@ -82,7 +84,7 @@ export class IsolatedFileSystem extends PlatformFileSystem {
82
84
  constructor(
83
85
  manager: IsolatedFileSystemManager, path: string, embedderPath: string, domFileSystem: FileSystem, type: string) {
84
86
  // TODO(crbug.com/1253323): Cast to UrlString will be removed when migration to branded types is complete.
85
- super(path as Platform.DevToolsPath.UrlString, type);
87
+ super(path, type);
86
88
  this.manager = manager;
87
89
  this.embedderPathInternal = embedderPath;
88
90
  this.domFileSystem = domFileSystem;
@@ -174,9 +176,8 @@ export class IsolatedFileSystem extends PlatformFileSystem {
174
176
  this.initialGitFoldersInternal.add(parentFolder);
175
177
  }
176
178
  if (this.isFileExcluded(entry.fullPath + '/')) {
177
- // TODO(crbug.com/1253323): Cast to RawPathString will be removed when migration to branded types is complete.
178
179
  this.excludedEmbedderFolders.push(Common.ParsedURL.ParsedURL.capFilePrefix(
179
- this.path() + entry.fullPath as Platform.DevToolsPath.RawPathString, Host.Platform.isWin()));
180
+ this.path() + entry.fullPath as Platform.DevToolsPath.UrlString, Host.Platform.isWin()));
180
181
  continue;
181
182
  }
182
183
  ++pendingRequests;
@@ -552,9 +553,9 @@ export class IsolatedFileSystem extends PlatformFileSystem {
552
553
  Common.ResourceType.resourceTypes.Document;
553
554
  }
554
555
 
555
- tooltipForURL(url: Platform.DevToolsPath.RawPathString): string {
556
- const path =
557
- Platform.StringUtilities.trimMiddle(Common.ParsedURL.ParsedURL.capFilePrefix(url, Host.Platform.isWin()), 150);
556
+ tooltipForURL(url: string): string {
557
+ const path = Platform.StringUtilities.trimMiddle(
558
+ Common.ParsedURL.ParsedURL.capFilePrefix(url as Platform.DevToolsPath.UrlString, Host.Platform.isWin()), 150);
558
559
  return i18nString(UIStrings.linkedToS, {PH1: path});
559
560
  }
560
561
 
@@ -5,6 +5,7 @@
5
5
  import * as Common from '../../core/common/common.js';
6
6
  import * as Host from '../../core/host/host.js';
7
7
  import * as i18n from '../../core/i18n/i18n.js';
8
+ import type * as Platform from '../../core/platform/platform.js';
8
9
  import * as SDK from '../../core/sdk/sdk.js';
9
10
 
10
11
  import type * as TextUtils from '../text_utils/text_utils.js';
@@ -92,7 +93,9 @@ export class ContextMenuProvider implements UI.ContextMenu.Provider {
92
93
  const binding = uiSourceCode && PersistenceImpl.instance().binding(uiSourceCode);
93
94
  const fileURL = binding ? binding.fileSystem.contentURL() : contentProvider.contentURL();
94
95
  if (fileURL.startsWith('file://')) {
95
- const path = Common.ParsedURL.ParsedURL.capFilePrefix(fileURL, Host.Platform.isWin());
96
+ // TODO(crbug.com/1253323): Cast to UrlString will be removed when migration to branded types is complete.
97
+ const path =
98
+ Common.ParsedURL.ParsedURL.capFilePrefix(fileURL as Platform.DevToolsPath.UrlString, Host.Platform.isWin());
96
99
  contextMenu.revealSection().appendItem(
97
100
  i18nString(UIStrings.openInContainingFolder),
98
101
  () => Host.InspectorFrontendHost.InspectorFrontendHostInstance.showItemInFolder(path));
@@ -3,7 +3,6 @@
3
3
  // found in the LICENSE file.
4
4
 
5
5
  import type * as Common from '../../core/common/common.js';
6
- import type * as Platform from '../../core/platform/platform.js';
7
6
  import * as i18n from '../../core/i18n/i18n.js';
8
7
  import type * as TextUtils from '../text_utils/text_utils.js';
9
8
 
@@ -16,9 +15,9 @@ const UIStrings = {
16
15
  const str_ = i18n.i18n.registerUIStrings('models/persistence/PlatformFileSystem.ts', UIStrings);
17
16
  const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
18
17
  export class PlatformFileSystem {
19
- private readonly pathInternal: Platform.DevToolsPath.UrlString;
18
+ private readonly pathInternal: string;
20
19
  private readonly typeInternal: string;
21
- constructor(path: Platform.DevToolsPath.UrlString, type: string) {
20
+ constructor(path: string, type: string) {
22
21
  this.pathInternal = path;
23
22
  this.typeInternal = type;
24
23
  }
@@ -35,7 +34,7 @@ export class PlatformFileSystem {
35
34
  return [];
36
35
  }
37
36
 
38
- path(): Platform.DevToolsPath.UrlString {
37
+ path(): string {
39
38
  return this.pathInternal;
40
39
  }
41
40
 
@@ -29,10 +29,9 @@
29
29
  */
30
30
 
31
31
  import type * as Common from '../../core/common/common.js';
32
- import type * as Platform from '../../core/platform/platform.js';
33
32
 
34
33
  export abstract class ContentProvider {
35
- abstract contentURL(): Platform.DevToolsPath.RawPathString;
34
+ abstract contentURL(): string;
36
35
  abstract contentType(): Common.ResourceType.ResourceType;
37
36
  abstract contentEncoded(): Promise<boolean>;
38
37
  abstract requestContent(): Promise<DeferredContent>;
@@ -3,7 +3,6 @@
3
3
  // found in the LICENSE file.
4
4
 
5
5
  import type * as Common from '../../core/common/common.js';
6
- import type * as Platform from '../../core/platform/platform.js';
7
6
 
8
7
  import type {ContentProvider, DeferredContent, SearchMatch} from './ContentProvider.js';
9
8
  import {performSearchInContent} from './TextUtils.js';
@@ -30,8 +29,8 @@ export class StaticContentProvider implements ContentProvider {
30
29
  }
31
30
 
32
31
  // TODO(crbug.com/1253323): Cast to PawPathString will be removed when migration to branded types is complete.
33
- contentURL(): Platform.DevToolsPath.RawPathString {
34
- return this.contentURLInternal as Platform.DevToolsPath.RawPathString;
32
+ contentURL(): string {
33
+ return this.contentURLInternal;
35
34
  }
36
35
 
37
36
  contentType(): Common.ResourceType.ResourceType {
@@ -192,8 +192,8 @@ export class UISourceCode extends Common.ObjectWrapper.ObjectWrapper<EventTypes>
192
192
  }
193
193
 
194
194
  // TODO(crbug.com/1253323): Cast to RawPathString will be removed when migration to branded types is complete.
195
- contentURL(): Platform.DevToolsPath.RawPathString {
196
- return this.url() as Platform.DevToolsPath.RawPathString;
195
+ contentURL(): string {
196
+ return this.url();
197
197
  }
198
198
 
199
199
  contentType(): Common.ResourceType.ResourceType {
@@ -5,9 +5,14 @@
5
5
  import * as Common from '../../core/common/common.js';
6
6
  import * as Host from '../../core/host/host.js';
7
7
  import * as Diff from '../../third_party/diff/diff.js';
8
+ import * as FormatterModule from '../formatter/formatter.js';
8
9
  import * as Persistence from '../persistence/persistence.js';
9
10
  import * as Workspace from '../workspace/workspace.js';
10
11
 
12
+ interface DiffRequestOptions {
13
+ shouldFormatDiff: boolean;
14
+ }
15
+
11
16
  export class WorkspaceDiffImpl extends Common.ObjectWrapper.ObjectWrapper<EventTypes> {
12
17
  private readonly uiSourceCodeDiffs: WeakMap<Workspace.UISourceCode.UISourceCode, UISourceCodeDiff>;
13
18
  private readonly loadingUISourceCodes:
@@ -29,8 +34,9 @@ export class WorkspaceDiffImpl extends Common.ObjectWrapper.ObjectWrapper<EventT
29
34
  workspace.uiSourceCodes().forEach(this.updateModifiedState.bind(this));
30
35
  }
31
36
 
32
- requestDiff(uiSourceCode: Workspace.UISourceCode.UISourceCode): Promise<Diff.Diff.DiffArray|null> {
33
- return this.uiSourceCodeDiff(uiSourceCode).requestDiff();
37
+ requestDiff(uiSourceCode: Workspace.UISourceCode.UISourceCode, diffRequestOptions: DiffRequestOptions):
38
+ Promise<Diff.Diff.DiffArray|null> {
39
+ return this.uiSourceCodeDiff(uiSourceCode).requestDiff(diffRequestOptions);
34
40
  }
35
41
 
36
42
  subscribeToDiffChange(uiSourceCode: Workspace.UISourceCode.UISourceCode, callback: () => void, thisObj?: Object):
@@ -212,9 +218,9 @@ export class UISourceCodeDiff extends Common.ObjectWrapper.ObjectWrapper<UISourc
212
218
  }
213
219
  }
214
220
 
215
- requestDiff(): Promise<Diff.Diff.DiffArray|null> {
221
+ requestDiff(diffRequestOptions: DiffRequestOptions): Promise<Diff.Diff.DiffArray|null> {
216
222
  if (!this.requestDiffPromise) {
217
- this.requestDiffPromise = this.innerRequestDiff();
223
+ this.requestDiffPromise = this.innerRequestDiff(diffRequestOptions);
218
224
  }
219
225
  return this.requestDiffPromise;
220
226
  }
@@ -231,12 +237,12 @@ export class UISourceCodeDiff extends Common.ObjectWrapper.ObjectWrapper<UISourc
231
237
  return content.content || ('error' in content && content.error) || '';
232
238
  }
233
239
 
234
- private async innerRequestDiff(): Promise<Diff.Diff.DiffArray|null> {
240
+ private async innerRequestDiff({shouldFormatDiff}: DiffRequestOptions): Promise<Diff.Diff.DiffArray|null> {
235
241
  if (this.dispose) {
236
242
  return null;
237
243
  }
238
244
 
239
- const baseline = await this.originalContent();
245
+ let baseline = await this.originalContent();
240
246
  if (baseline === null) {
241
247
  return null;
242
248
  }
@@ -264,6 +270,14 @@ export class UISourceCodeDiff extends Common.ObjectWrapper.ObjectWrapper<UISourc
264
270
  if (current === null || baseline === null) {
265
271
  return null;
266
272
  }
273
+ if (shouldFormatDiff) {
274
+ baseline = (await FormatterModule.ScriptFormatter.format(
275
+ this.uiSourceCode.contentType(), this.uiSourceCode.mimeType(), baseline))
276
+ .formattedContent;
277
+ current = (await FormatterModule.ScriptFormatter.format(
278
+ this.uiSourceCode.contentType(), this.uiSourceCode.mimeType(), current))
279
+ .formattedContent;
280
+ }
267
281
  return Diff.Diff.DiffWrapper.lineDiff(baseline.split(/\r\n|\n|\r/), current.split(/\r\n|\n|\r/));
268
282
  }
269
283
  }
@@ -24,6 +24,8 @@
24
24
  margin-bottom: -1px;
25
25
  background-color: var(--color-background-elevation-1);
26
26
  display: flex;
27
+ flex-direction: column;
28
+ justify-content: space-around;
27
29
  align-items: center;
28
30
  flex: 0 0 150px;
29
31
  }
@@ -424,66 +424,6 @@ const UIStrings = {
424
424
  * @description Description text for not restored reason ContentMediaPlay.
425
425
  */
426
426
  contentMediaPlay: 'A media player was playing upon navigating away.',
427
- /**
428
- * @description Description text for not restored reason EmbedderPopupBlockerTabHelper.
429
- */
430
- embedderPopupBlockerTabHelper: 'EmbedderPopupBlockerTabHelper',
431
- /**
432
- * @description Description text for not restored reason EmbedderSafeBrowsingTriggeredPopupBlocker.
433
- */
434
- embedderSafeBrowsingTriggeredPopupBlocker: 'EmbedderSafeBrowsingTriggeredPopupBlocker',
435
- /**
436
- * @description Description text for not restored reason EmbedderSafeBrowsingThreatDetails.
437
- */
438
- embedderSafeBrowsingThreatDetails: 'EmbedderSafeBrowsingThreatDetails',
439
- /**
440
- * @description Description text for not restored reason EmbedderAppBannerManager.
441
- */
442
- embedderAppBannerManager: 'EmbedderAppBannerManager',
443
- /**
444
- * @description Description text for not restored reason EmbedderDomDistillerViewerSource.
445
- */
446
- embedderDomDistillerViewerSource: 'EmbedderDomDistillerViewerSource',
447
- /**
448
- * @description Description text for not restored reason EmbedderDomDistillerSelfDeletingRequestDelegate.
449
- */
450
- embedderDomDistillerSelfDeletingRequestDelegate: 'EmbedderDomDistillerSelfDeletingRequestDelegate',
451
- /**
452
- * @description Description text for not restored reason EmbedderOomInterventionTabHelper.
453
- */
454
- embedderOomInterventionTabHelper: 'EmbedderOomInterventionTabHelper',
455
- /**
456
- * @description Description text for not restored reason EmbedderOfflinePage.
457
- */
458
- embedderOfflinePage: 'EmbedderOfflinePage',
459
- /**
460
- * @description Description text for not restored reason EmbedderChromePasswordManagerClientBindCredentialManager.
461
- */
462
- embedderChromePasswordManagerClientBindCredentialManager: 'EmbedderChromePasswordManagerClientBindCredentialManager',
463
- /**
464
- * @description Description text for not restored reason EmbedderPermissionRequestManager.
465
- */
466
- embedderPermissionRequestManager: 'EmbedderPermissionRequestManager',
467
- /**
468
- * @description Description text for not restored reason EmbedderModalDialog.
469
- */
470
- embedderModalDialog: 'EmbedderModalDialog',
471
- /**
472
- * @description Description text for not restored reason EmbedderExtensions.
473
- */
474
- embedderExtensions: 'EmbedderExtensions',
475
- /**
476
- * @description Description text for not restored reason EmbedderExtensionMessaging.
477
- */
478
- embedderExtensionMessaging: 'EmbedderExtensionMessaging',
479
- /**
480
- * @description Description text for not restored reason EmbedderExtensionMessagingForOpenPort.
481
- */
482
- embedderExtensionMessagingForOpenPort: 'EmbedderExtensionMessagingForOpenPort',
483
- /**
484
- * @description Description text for not restored reason EmbedderExtensionSentMessageToCachedFrame.
485
- */
486
- embedderExtensionSentMessageToCachedFrame: 'EmbedderExtensionSentMessageToCachedFrame',
487
427
  };
488
428
 
489
429
  const str_ = i18n.i18n.registerUIStrings('panels/application/BackForwardCacheStrings.ts', UIStrings);
@@ -601,23 +541,23 @@ export const NotRestoredReasonDescription = {
601
541
  'ContentMediaSession': {name: i18nLazyString(UIStrings.contentMediaSession)},
602
542
  'ContentMediaSessionService': {name: i18nLazyString(UIStrings.contentMediaSessionService)},
603
543
  'ContentMediaPlay': {name: i18nLazyString(UIStrings.contentMediaPlay)},
604
- 'EmbedderPopupBlockerTabHelper': {name: i18nLazyString(UIStrings.embedderPopupBlockerTabHelper)},
544
+ 'EmbedderPopupBlockerTabHelper': {name: i18n.i18n.lockedLazyString('EmbedderPopupBlockerTabHelper')},
605
545
  'EmbedderSafeBrowsingTriggeredPopupBlocker':
606
- {name: i18nLazyString(UIStrings.embedderSafeBrowsingTriggeredPopupBlocker)},
607
- 'EmbedderSafeBrowsingThreatDetails': {name: i18nLazyString(UIStrings.embedderSafeBrowsingThreatDetails)},
608
- 'EmbedderAppBannerManager': {name: i18nLazyString(UIStrings.embedderAppBannerManager)},
609
- 'EmbedderDomDistillerViewerSource': {name: i18nLazyString(UIStrings.embedderDomDistillerViewerSource)},
546
+ {name: i18n.i18n.lockedLazyString('EmbedderSafeBrowsingTriggeredPopupBlocker')},
547
+ 'EmbedderSafeBrowsingThreatDetails': {name: i18n.i18n.lockedLazyString('EmbedderSafeBrowsingThreatDetails')},
548
+ 'EmbedderAppBannerManager': {name: i18n.i18n.lockedLazyString('EmbedderAppBannerManager')},
549
+ 'EmbedderDomDistillerViewerSource': {name: i18n.i18n.lockedLazyString('EmbedderDomDistillerViewerSource')},
610
550
  'EmbedderDomDistillerSelfDeletingRequestDelegate':
611
- {name: i18nLazyString(UIStrings.embedderDomDistillerSelfDeletingRequestDelegate)},
612
- 'EmbedderOomInterventionTabHelper': {name: i18nLazyString(UIStrings.embedderOomInterventionTabHelper)},
613
- 'EmbedderOfflinePage': {name: i18nLazyString(UIStrings.embedderOfflinePage)},
551
+ {name: i18n.i18n.lockedLazyString('EmbedderDomDistillerSelfDeletingRequestDelegate')},
552
+ 'EmbedderOomInterventionTabHelper': {name: i18n.i18n.lockedLazyString('EmbedderOomInterventionTabHelper')},
553
+ 'EmbedderOfflinePage': {name: i18n.i18n.lockedLazyString('EmbedderOfflinePage')},
614
554
  'EmbedderChromePasswordManagerClientBindCredentialManager':
615
- {name: i18nLazyString(UIStrings.embedderChromePasswordManagerClientBindCredentialManager)},
616
- 'EmbedderPermissionRequestManager': {name: i18nLazyString(UIStrings.embedderPermissionRequestManager)},
617
- 'EmbedderModalDialog': {name: i18nLazyString(UIStrings.embedderModalDialog)},
618
- 'EmbedderExtensions': {name: i18nLazyString(UIStrings.embedderExtensions)},
619
- 'EmbedderExtensionMessaging': {name: i18nLazyString(UIStrings.embedderExtensionMessaging)},
620
- 'EmbedderExtensionMessagingForOpenPort': {name: i18nLazyString(UIStrings.embedderExtensionMessagingForOpenPort)},
555
+ {name: i18n.i18n.lockedLazyString('EmbedderChromePasswordManagerClientBindCredentialManager')},
556
+ 'EmbedderPermissionRequestManager': {name: i18n.i18n.lockedLazyString('EmbedderPermissionRequestManager')},
557
+ 'EmbedderModalDialog': {name: i18n.i18n.lockedLazyString('EmbedderModalDialog')},
558
+ 'EmbedderExtensions': {name: i18n.i18n.lockedLazyString('EmbedderExtensions')},
559
+ 'EmbedderExtensionMessaging': {name: i18n.i18n.lockedLazyString('EmbedderExtensionMessaging')},
560
+ 'EmbedderExtensionMessagingForOpenPort': {name: i18n.i18n.lockedLazyString('EmbedderExtensionMessagingForOpenPort')},
621
561
  'EmbedderExtensionSentMessageToCachedFrame':
622
- {name: i18nLazyString(UIStrings.embedderExtensionSentMessageToCachedFrame)},
562
+ {name: i18n.i18n.lockedLazyString('EmbedderExtensionSentMessageToCachedFrame')},
623
563
  };
@@ -262,7 +262,14 @@ export class BackForwardCacheView extends UI.ThrottledWidget.ThrottledWidget {
262
262
 
263
263
  private renderReason(explanation: Protocol.Page.BackForwardCacheNotRestoredExplanation): LitHtml.TemplateResult {
264
264
  return LitHtml.html`
265
- <li>${explanation.reason} : ${
265
+ <li>
266
+ <${IconButton.Icon.Icon.litTagName} class="inline-icon" .data=${{
267
+ iconName: 'circled_exclamation_icon',
268
+ color: 'orange',
269
+ width: '16px',
270
+ height: '16px',
271
+ } as IconButton.Icon.IconData}></${IconButton.Icon.Icon.litTagName}>
272
+ ${explanation.reason} : ${
266
273
  (explanation.reason in NotRestoredReasonDescription) ?
267
274
  LitHtml.html`${NotRestoredReasonDescription[explanation.reason].name()}` :
268
275
  LitHtml.nothing} </li>
@@ -5,22 +5,36 @@
5
5
  import * as SDK from '../../core/sdk/sdk.js';
6
6
  import * as UI from '../../ui/legacy/legacy.js';
7
7
  import * as ApplicationComponents from './components/components.js';
8
+ import type * as Protocol from '../../generated/protocol.js';
8
9
 
9
10
  import {ReportingApiReportsView} from './ReportingApiReportsView.js';
10
11
 
11
12
  export class ReportingApiView extends UI.SplitWidget.SplitWidget {
13
+ private readonly endpointsGrid = new ApplicationComponents.EndpointsGrid.EndpointsGrid();
14
+ private endpoints: Map<string, Protocol.Network.ReportingApiEndpoint[]>;
15
+
12
16
  constructor() {
13
17
  super(/* isVertical: */ false, /* secondIsSidebar: */ true);
18
+ this.endpoints = new Map();
14
19
  const mainTarget = SDK.TargetManager.TargetManager.instance().mainTarget();
15
20
  const networkManager = mainTarget && mainTarget.model(SDK.NetworkManager.NetworkManager);
16
21
  if (networkManager) {
22
+ networkManager.addEventListener(
23
+ SDK.NetworkManager.Events.ReportingApiEndpointsChangedForOrigin,
24
+ event => this.onEndpointsChangedForOrigin(event.data), this);
25
+
17
26
  const reportingApiReportsView = new ReportingApiReportsView(networkManager);
18
27
  const reportingApiEndpointsView = new UI.Widget.VBox();
19
28
  reportingApiEndpointsView.setMinimumSize(0, 40);
20
- reportingApiEndpointsView.contentElement.appendChild(new ApplicationComponents.EndpointsGrid.EndpointsGrid());
29
+ reportingApiEndpointsView.contentElement.appendChild(this.endpointsGrid);
21
30
  this.setMainWidget(reportingApiReportsView);
22
31
  this.setSidebarWidget(reportingApiEndpointsView);
23
32
  networkManager.enableReportingApi();
24
33
  }
25
34
  }
35
+
36
+ private onEndpointsChangedForOrigin(data: Protocol.Network.ReportingApiEndpointsChangedForOriginEvent): void {
37
+ this.endpoints.set(data.origin, data.endpoints);
38
+ this.endpointsGrid.data = {endpoints: this.endpoints};
39
+ }
26
40
  }