chrome-devtools-frontend 1.0.944427 → 1.0.945677

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 (327) 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 +3 -1
  6. package/front_end/core/i18n/i18nImpl.ts +7 -4
  7. package/front_end/core/i18n/locales/en-US.json +3 -60
  8. package/front_end/core/i18n/locales/en-XL.json +15 -72
  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/CSSStyleSheetHeader.ts +2 -3
  12. package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +2 -3
  13. package/front_end/core/sdk/Cookie.ts +17 -0
  14. package/front_end/core/sdk/CookieModel.ts +1 -0
  15. package/front_end/core/sdk/DebuggerModel.ts +5 -4
  16. package/front_end/core/sdk/NetworkManager.ts +4 -1
  17. package/front_end/core/sdk/NetworkRequest.ts +2 -2
  18. package/front_end/core/sdk/Resource.ts +2 -2
  19. package/front_end/core/sdk/Script.ts +2 -3
  20. package/front_end/entrypoints/main/MainImpl.ts +6 -0
  21. package/front_end/generated/protocol.d.ts +0 -4
  22. package/front_end/models/bindings/BreakpointManager.ts +3 -4
  23. package/front_end/models/bindings/ResourceMapping.ts +1 -2
  24. package/front_end/models/bindings/StylesSourceMapping.ts +1 -2
  25. package/front_end/models/emulation/EmulatedDevices.ts +2 -4
  26. package/front_end/models/persistence/IsolatedFileSystem.ts +7 -6
  27. package/front_end/models/persistence/PersistenceActions.ts +4 -1
  28. package/front_end/models/persistence/PlatformFileSystem.ts +3 -4
  29. package/front_end/models/text_utils/ContentProvider.ts +1 -2
  30. package/front_end/models/text_utils/StaticContentProvider.ts +2 -3
  31. package/front_end/models/timeline_model/TimelineJSProfile.ts +16 -3
  32. package/front_end/models/timeline_model/TimelineModel.ts +1 -0
  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.ts +1 -1
  36. package/front_end/panels/animation/animationTimeline.css +2 -0
  37. package/front_end/panels/application/BackForwardCacheStrings.ts +15 -75
  38. package/front_end/panels/application/BackForwardCacheView.ts +8 -1
  39. package/front_end/panels/application/ReportingApiView.ts +15 -1
  40. package/front_end/panels/application/components/EndpointsGrid.ts +63 -4
  41. package/front_end/panels/application/components/FrameDetailsView.ts +21 -34
  42. package/front_end/panels/changes/ChangesView.ts +8 -7
  43. package/front_end/panels/elements/StyleEditorWidget.ts +7 -7
  44. package/front_end/panels/elements/StylePropertyTreeElement.ts +8 -15
  45. package/front_end/panels/elements/StylesSidebarPane.ts +35 -9
  46. package/front_end/panels/emulation/DeviceModeView.ts +3 -0
  47. package/front_end/panels/help/ReleaseNoteText.ts +3 -1
  48. package/front_end/panels/network/NetworkItemView.ts +7 -1
  49. package/front_end/panels/profiler/heapProfiler.css +2 -5
  50. package/front_end/panels/snippets/ScriptSnippetFileSystem.ts +1 -1
  51. package/front_end/panels/sources/DebuggerPlugin.ts +1 -1
  52. package/front_end/panels/sources/NavigatorView.ts +1 -1
  53. package/front_end/panels/sources/UISourceCodeFrame.ts +0 -1
  54. package/front_end/panels/timeline/TimelineController.ts +3 -0
  55. package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +3 -34
  56. package/front_end/panels/timeline/TimelineUIUtils.ts +51 -3
  57. package/front_end/panels/webauthn/WebauthnPane.ts +31 -32
  58. package/front_end/services/window_bounds/WindowBoundsService.ts +27 -0
  59. package/front_end/services/window_bounds/window_bounds.ts +9 -0
  60. package/front_end/third_party/acorn/README.chromium +2 -2
  61. package/front_end/third_party/acorn/acorn.ts +1 -1
  62. package/front_end/third_party/acorn/package/CHANGELOG.md +31 -1
  63. package/front_end/third_party/acorn/package/README.md +1 -1
  64. package/front_end/third_party/acorn/package/dist/acorn.d.ts +3 -0
  65. package/front_end/third_party/acorn/package/dist/acorn.js +772 -708
  66. package/front_end/third_party/acorn/package/dist/acorn.mjs +767 -703
  67. package/front_end/third_party/acorn/package/dist/bin.js +47 -21
  68. package/front_end/third_party/acorn/package/package.json +1 -1
  69. package/front_end/third_party/acorn-loose/README.chromium +2 -2
  70. package/front_end/third_party/acorn-loose/package/CHANGELOG.md +12 -0
  71. package/front_end/third_party/acorn-loose/package/dist/acorn-loose.js +27 -7
  72. package/front_end/third_party/acorn-loose/package/dist/acorn-loose.mjs +28 -8
  73. package/front_end/third_party/acorn-loose/package/package.json +2 -2
  74. package/front_end/third_party/codemirror.next/bundle.ts +1 -1
  75. package/front_end/third_party/codemirror.next/chunk/codemirror.js +1 -1
  76. package/front_end/third_party/codemirror.next/codemirror.next.d.ts +8 -1
  77. package/front_end/third_party/codemirror.next/codemirror.next.js +1 -1
  78. package/front_end/third_party/codemirror.next/package.json +1 -1
  79. package/front_end/third_party/i18n/i18n-impl.ts +1 -1
  80. package/front_end/third_party/lit-html/README.chromium +2 -2
  81. package/front_end/third_party/lit-html/package/CHANGELOG.md +216 -28
  82. package/front_end/third_party/lit-html/package/LICENSE +9 -9
  83. package/front_end/third_party/lit-html/package/README.md +12 -162
  84. package/front_end/third_party/lit-html/package/async-directive.d.ts +23 -54
  85. package/front_end/third_party/lit-html/package/async-directive.d.ts.map +1 -1
  86. package/front_end/third_party/lit-html/package/async-directive.js +2 -7
  87. package/front_end/third_party/lit-html/package/async-directive.js.map +1 -1
  88. package/front_end/third_party/lit-html/package/development/async-directive.d.ts +23 -54
  89. package/front_end/third_party/lit-html/package/development/async-directive.d.ts.map +1 -1
  90. package/front_end/third_party/lit-html/package/development/async-directive.js +44 -194
  91. package/front_end/third_party/lit-html/package/development/async-directive.js.map +1 -1
  92. package/front_end/third_party/lit-html/package/development/directive-helpers.d.ts +6 -5
  93. package/front_end/third_party/lit-html/package/development/directive-helpers.d.ts.map +1 -1
  94. package/front_end/third_party/lit-html/package/development/directive-helpers.js +25 -9
  95. package/front_end/third_party/lit-html/package/development/directive-helpers.js.map +1 -1
  96. package/front_end/third_party/lit-html/package/development/directive.d.ts +3 -16
  97. package/front_end/third_party/lit-html/package/development/directive.d.ts.map +1 -1
  98. package/front_end/third_party/lit-html/package/development/directive.js +6 -1
  99. package/front_end/third_party/lit-html/package/development/directive.js.map +1 -1
  100. package/front_end/third_party/lit-html/package/development/directives/async-append.d.ts +7 -14
  101. package/front_end/third_party/lit-html/package/development/directives/async-append.d.ts.map +1 -1
  102. package/front_end/third_party/lit-html/package/development/directives/async-append.js +17 -58
  103. package/front_end/third_party/lit-html/package/development/directives/async-append.js.map +1 -1
  104. package/front_end/third_party/lit-html/package/development/directives/async-replace.d.ts +9 -14
  105. package/front_end/third_party/lit-html/package/development/directives/async-replace.d.ts.map +1 -1
  106. package/front_end/third_party/lit-html/package/development/directives/async-replace.js +57 -37
  107. package/front_end/third_party/lit-html/package/development/directives/async-replace.js.map +1 -1
  108. package/front_end/third_party/lit-html/package/development/directives/cache.d.ts +2 -3
  109. package/front_end/third_party/lit-html/package/development/directives/cache.d.ts.map +1 -1
  110. package/front_end/third_party/lit-html/package/development/directives/cache.js +4 -6
  111. package/front_end/third_party/lit-html/package/development/directives/cache.js.map +1 -1
  112. package/front_end/third_party/lit-html/package/development/directives/class-map.d.ts +2 -2
  113. package/front_end/third_party/lit-html/package/development/directives/class-map.d.ts.map +1 -1
  114. package/front_end/third_party/lit-html/package/development/directives/class-map.js +17 -7
  115. package/front_end/third_party/lit-html/package/development/directives/class-map.js.map +1 -1
  116. package/front_end/third_party/lit-html/package/development/directives/guard.d.ts +3 -2
  117. package/front_end/third_party/lit-html/package/development/directives/guard.d.ts.map +1 -1
  118. package/front_end/third_party/lit-html/package/development/directives/guard.js +3 -2
  119. package/front_end/third_party/lit-html/package/development/directives/guard.js.map +1 -1
  120. package/front_end/third_party/lit-html/package/development/directives/live.d.ts +4 -3
  121. package/front_end/third_party/lit-html/package/development/directives/live.d.ts.map +1 -1
  122. package/front_end/third_party/lit-html/package/development/directives/live.js +5 -7
  123. package/front_end/third_party/lit-html/package/development/directives/live.js.map +1 -1
  124. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.d.ts +58 -0
  125. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.d.ts.map +1 -0
  126. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.js +85 -0
  127. package/front_end/third_party/lit-html/package/development/directives/private-async-helpers.js.map +1 -0
  128. package/front_end/third_party/lit-html/package/development/directives/ref.d.ts +14 -11
  129. package/front_end/third_party/lit-html/package/development/directives/ref.d.ts.map +1 -1
  130. package/front_end/third_party/lit-html/package/development/directives/ref.js +13 -11
  131. package/front_end/third_party/lit-html/package/development/directives/ref.js.map +1 -1
  132. package/front_end/third_party/lit-html/package/development/directives/repeat.d.ts +8 -4
  133. package/front_end/third_party/lit-html/package/development/directives/repeat.d.ts.map +1 -1
  134. package/front_end/third_party/lit-html/package/development/directives/repeat.js +23 -9
  135. package/front_end/third_party/lit-html/package/development/directives/repeat.js.map +1 -1
  136. package/front_end/third_party/lit-html/package/development/directives/style-map.d.ts +1 -2
  137. package/front_end/third_party/lit-html/package/development/directives/style-map.d.ts.map +1 -1
  138. package/front_end/third_party/lit-html/package/development/directives/style-map.js +1 -2
  139. package/front_end/third_party/lit-html/package/development/directives/style-map.js.map +1 -1
  140. package/front_end/third_party/lit-html/package/development/directives/template-content.d.ts +1 -2
  141. package/front_end/third_party/lit-html/package/development/directives/template-content.js +1 -2
  142. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.d.ts +6 -4
  143. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.d.ts.map +1 -1
  144. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.js +7 -5
  145. package/front_end/third_party/lit-html/package/development/directives/unsafe-html.js.map +1 -1
  146. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.d.ts +4 -1
  147. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.d.ts.map +1 -1
  148. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.js +3 -0
  149. package/front_end/third_party/lit-html/package/development/directives/unsafe-svg.js.map +1 -1
  150. package/front_end/third_party/lit-html/package/development/directives/until.d.ts +12 -8
  151. package/front_end/third_party/lit-html/package/development/directives/until.d.ts.map +1 -1
  152. package/front_end/third_party/lit-html/package/development/directives/until.js +63 -23
  153. package/front_end/third_party/lit-html/package/development/directives/until.js.map +1 -1
  154. package/front_end/third_party/lit-html/package/development/experimental-hydrate.d.ts.map +1 -1
  155. package/front_end/third_party/lit-html/package/development/experimental-hydrate.js +9 -8
  156. package/front_end/third_party/lit-html/package/development/experimental-hydrate.js.map +1 -1
  157. package/front_end/third_party/lit-html/package/development/lit-html.d.ts +81 -136
  158. package/front_end/third_party/lit-html/package/development/lit-html.d.ts.map +1 -1
  159. package/front_end/third_party/lit-html/package/development/lit-html.js +249 -76
  160. package/front_end/third_party/lit-html/package/development/lit-html.js.map +1 -1
  161. package/front_end/third_party/lit-html/package/development/polyfill-support.d.ts +1 -41
  162. package/front_end/third_party/lit-html/package/development/polyfill-support.d.ts.map +1 -1
  163. package/front_end/third_party/lit-html/package/development/polyfill-support.js +40 -21
  164. package/front_end/third_party/lit-html/package/development/polyfill-support.js.map +1 -1
  165. package/front_end/third_party/lit-html/package/development/private-ssr-support.d.ts +12 -10
  166. package/front_end/third_party/lit-html/package/development/private-ssr-support.d.ts.map +1 -1
  167. package/front_end/third_party/lit-html/package/development/private-ssr-support.js +11 -3
  168. package/front_end/third_party/lit-html/package/development/private-ssr-support.js.map +1 -1
  169. package/front_end/third_party/lit-html/package/development/static.d.ts.map +1 -1
  170. package/front_end/third_party/lit-html/package/development/static.js +6 -5
  171. package/front_end/third_party/lit-html/package/development/static.js.map +1 -1
  172. package/front_end/third_party/lit-html/package/directive-helpers.d.ts +6 -5
  173. package/front_end/third_party/lit-html/package/directive-helpers.d.ts.map +1 -1
  174. package/front_end/third_party/lit-html/package/directive-helpers.js +2 -2
  175. package/front_end/third_party/lit-html/package/directive-helpers.js.map +1 -1
  176. package/front_end/third_party/lit-html/package/directive.d.ts +3 -16
  177. package/front_end/third_party/lit-html/package/directive.d.ts.map +1 -1
  178. package/front_end/third_party/lit-html/package/directive.js +1 -1
  179. package/front_end/third_party/lit-html/package/directive.js.map +1 -1
  180. package/front_end/third_party/lit-html/package/directives/async-append.d.ts +7 -14
  181. package/front_end/third_party/lit-html/package/directives/async-append.d.ts.map +1 -1
  182. package/front_end/third_party/lit-html/package/directives/async-append.js +2 -6
  183. package/front_end/third_party/lit-html/package/directives/async-append.js.map +1 -1
  184. package/front_end/third_party/lit-html/package/directives/async-replace.d.ts +9 -14
  185. package/front_end/third_party/lit-html/package/directives/async-replace.d.ts.map +1 -1
  186. package/front_end/third_party/lit-html/package/directives/async-replace.js +2 -5
  187. package/front_end/third_party/lit-html/package/directives/async-replace.js.map +1 -1
  188. package/front_end/third_party/lit-html/package/directives/cache.d.ts +2 -3
  189. package/front_end/third_party/lit-html/package/directives/cache.d.ts.map +1 -1
  190. package/front_end/third_party/lit-html/package/directives/cache.js +2 -5
  191. package/front_end/third_party/lit-html/package/directives/cache.js.map +1 -1
  192. package/front_end/third_party/lit-html/package/directives/class-map.d.ts +2 -2
  193. package/front_end/third_party/lit-html/package/directives/class-map.d.ts.map +1 -1
  194. package/front_end/third_party/lit-html/package/directives/class-map.js +2 -4
  195. package/front_end/third_party/lit-html/package/directives/class-map.js.map +1 -1
  196. package/front_end/third_party/lit-html/package/directives/guard.d.ts +3 -2
  197. package/front_end/third_party/lit-html/package/directives/guard.d.ts.map +1 -1
  198. package/front_end/third_party/lit-html/package/directives/guard.js +2 -4
  199. package/front_end/third_party/lit-html/package/directives/guard.js.map +1 -1
  200. package/front_end/third_party/lit-html/package/directives/live.d.ts +4 -3
  201. package/front_end/third_party/lit-html/package/directives/live.d.ts.map +1 -1
  202. package/front_end/third_party/lit-html/package/directives/live.js +1 -4
  203. package/front_end/third_party/lit-html/package/directives/live.js.map +1 -1
  204. package/front_end/third_party/lit-html/package/directives/private-async-helpers.d.ts +58 -0
  205. package/front_end/third_party/lit-html/package/directives/private-async-helpers.d.ts.map +1 -0
  206. package/front_end/third_party/lit-html/package/directives/private-async-helpers.js +7 -0
  207. package/front_end/third_party/lit-html/package/directives/private-async-helpers.js.map +1 -0
  208. package/front_end/third_party/lit-html/package/directives/ref.d.ts +14 -11
  209. package/front_end/third_party/lit-html/package/directives/ref.d.ts.map +1 -1
  210. package/front_end/third_party/lit-html/package/directives/ref.js +2 -5
  211. package/front_end/third_party/lit-html/package/directives/ref.js.map +1 -1
  212. package/front_end/third_party/lit-html/package/directives/repeat.d.ts +8 -4
  213. package/front_end/third_party/lit-html/package/directives/repeat.d.ts.map +1 -1
  214. package/front_end/third_party/lit-html/package/directives/repeat.js +2 -5
  215. package/front_end/third_party/lit-html/package/directives/repeat.js.map +1 -1
  216. package/front_end/third_party/lit-html/package/directives/style-map.d.ts +1 -2
  217. package/front_end/third_party/lit-html/package/directives/style-map.d.ts.map +1 -1
  218. package/front_end/third_party/lit-html/package/directives/style-map.js +2 -4
  219. package/front_end/third_party/lit-html/package/directives/style-map.js.map +1 -1
  220. package/front_end/third_party/lit-html/package/directives/template-content.d.ts +1 -2
  221. package/front_end/third_party/lit-html/package/directives/template-content.js +2 -4
  222. package/front_end/third_party/lit-html/package/directives/template-content.js.map +1 -1
  223. package/front_end/third_party/lit-html/package/directives/unsafe-html.d.ts +6 -4
  224. package/front_end/third_party/lit-html/package/directives/unsafe-html.d.ts.map +1 -1
  225. package/front_end/third_party/lit-html/package/directives/unsafe-html.js +2 -4
  226. package/front_end/third_party/lit-html/package/directives/unsafe-html.js.map +1 -1
  227. package/front_end/third_party/lit-html/package/directives/unsafe-svg.d.ts +4 -1
  228. package/front_end/third_party/lit-html/package/directives/unsafe-svg.d.ts.map +1 -1
  229. package/front_end/third_party/lit-html/package/directives/unsafe-svg.js.map +1 -1
  230. package/front_end/third_party/lit-html/package/directives/until.d.ts +12 -8
  231. package/front_end/third_party/lit-html/package/directives/until.d.ts.map +1 -1
  232. package/front_end/third_party/lit-html/package/directives/until.js +2 -6
  233. package/front_end/third_party/lit-html/package/directives/until.js.map +1 -1
  234. package/front_end/third_party/lit-html/package/experimental-hydrate.d.ts.map +1 -1
  235. package/front_end/third_party/lit-html/package/experimental-hydrate.js +2 -5
  236. package/front_end/third_party/lit-html/package/experimental-hydrate.js.map +1 -1
  237. package/front_end/third_party/lit-html/package/lit-html.d.ts +81 -136
  238. package/front_end/third_party/lit-html/package/lit-html.d.ts.map +1 -1
  239. package/front_end/third_party/lit-html/package/lit-html.js +1 -1
  240. package/front_end/third_party/lit-html/package/lit-html.js.map +1 -1
  241. package/front_end/third_party/lit-html/package/package.json +75 -24
  242. package/front_end/third_party/lit-html/package/polyfill-support.d.ts +1 -41
  243. package/front_end/third_party/lit-html/package/polyfill-support.d.ts.map +1 -1
  244. package/front_end/third_party/lit-html/package/polyfill-support.js +1 -1
  245. package/front_end/third_party/lit-html/package/polyfill-support.js.map +1 -1
  246. package/front_end/third_party/lit-html/package/private-ssr-support.d.ts +12 -10
  247. package/front_end/third_party/lit-html/package/private-ssr-support.d.ts.map +1 -1
  248. package/front_end/third_party/lit-html/package/private-ssr-support.js +2 -2
  249. package/front_end/third_party/lit-html/package/private-ssr-support.js.map +1 -1
  250. package/front_end/third_party/lit-html/package/static.d.ts.map +1 -1
  251. package/front_end/third_party/lit-html/package/static.js +1 -1
  252. package/front_end/third_party/lit-html/package/static.js.map +1 -1
  253. package/front_end/third_party/marked/README.chromium +2 -2
  254. package/front_end/third_party/marked/marked.ts +2 -2
  255. package/front_end/third_party/marked/package/README.md +7 -1
  256. package/front_end/third_party/marked/package/bin/marked.js +214 -0
  257. package/front_end/third_party/marked/package/lib/marked.cjs +2907 -0
  258. package/front_end/third_party/marked/package/lib/marked.esm.d.ts +1 -3
  259. package/front_end/third_party/marked/package/lib/marked.esm.js +627 -586
  260. package/front_end/third_party/marked/package/lib/marked.umd.js +2913 -0
  261. package/front_end/third_party/marked/package/man/marked.1 +5 -24
  262. package/front_end/third_party/marked/package/man/marked.1.txt +21 -31
  263. package/front_end/third_party/marked/package/marked.min.js +1 -1
  264. package/front_end/third_party/marked/package/package.json +41 -32
  265. package/front_end/third_party/marked/package/src/Lexer.js +109 -108
  266. package/front_end/third_party/marked/package/src/Parser.js +38 -15
  267. package/front_end/third_party/marked/package/src/Renderer.js +5 -5
  268. package/front_end/third_party/marked/package/src/Slugger.js +2 -2
  269. package/front_end/third_party/marked/package/src/TextRenderer.js +2 -2
  270. package/front_end/third_party/marked/package/src/Tokenizer.js +215 -190
  271. package/front_end/third_party/marked/package/src/defaults.js +6 -9
  272. package/front_end/third_party/marked/package/src/helpers.js +16 -27
  273. package/front_end/third_party/marked/package/src/marked.js +146 -63
  274. package/front_end/third_party/marked/package/src/rules.js +20 -45
  275. package/front_end/third_party/wasmparser/README.chromium +2 -2
  276. package/front_end/third_party/wasmparser/package/.github/workflows/main.yml +47 -0
  277. package/front_end/third_party/wasmparser/package/CHANGELOG.md +12 -0
  278. package/front_end/third_party/wasmparser/package/dist/cjs/WasmParser.js +53 -53
  279. package/front_end/third_party/wasmparser/package/dist/cjs/WasmParser.js.map +1 -1
  280. package/front_end/third_party/wasmparser/package/dist/esm/WasmParser.js +53 -53
  281. package/front_end/third_party/wasmparser/package/dist/esm/WasmParser.js.map +1 -1
  282. package/front_end/third_party/wasmparser/package/package.json +1 -1
  283. package/front_end/third_party/wasmparser/package/src/WasmParser.ts +53 -53
  284. package/front_end/ui/components/adorners/Adorner.ts +14 -14
  285. package/front_end/ui/components/buttons/Button.ts +133 -42
  286. package/front_end/ui/components/buttons/button.css +31 -0
  287. package/front_end/ui/components/data_grid/DataGrid.ts +131 -122
  288. package/front_end/ui/components/data_grid/DataGridController.ts +42 -42
  289. package/front_end/ui/components/diff_view/DiffView.ts +4 -4
  290. package/front_end/ui/components/docs/button/basic.html +3 -0
  291. package/front_end/ui/components/docs/button/basic.ts +58 -0
  292. package/front_end/ui/components/expandable_list/ExpandableList.ts +11 -11
  293. package/front_end/ui/components/icon_button/Icon.ts +24 -21
  294. package/front_end/ui/components/icon_button/IconButton.ts +31 -31
  295. package/front_end/ui/components/issue_counter/IssueCounter.ts +52 -52
  296. package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +42 -42
  297. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspector.ts +67 -67
  298. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorController.ts +22 -22
  299. package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorPane.ts +36 -36
  300. package/front_end/ui/components/linear_memory_inspector/LinearMemoryNavigator.ts +19 -19
  301. package/front_end/ui/components/linear_memory_inspector/LinearMemoryValueInterpreter.ts +25 -25
  302. package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +52 -52
  303. package/front_end/ui/components/linear_memory_inspector/ValueInterpreterDisplay.ts +21 -21
  304. package/front_end/ui/components/linear_memory_inspector/ValueInterpreterSettings.ts +6 -6
  305. package/front_end/ui/components/markdown_view/MarkdownImage.ts +14 -14
  306. package/front_end/ui/components/markdown_view/MarkdownLink.ts +8 -8
  307. package/front_end/ui/components/markdown_view/MarkdownView.ts +6 -6
  308. package/front_end/ui/components/render_coordinator/RenderCoordinator.ts +33 -33
  309. package/front_end/ui/components/report_view/ReportView.ts +18 -18
  310. package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +53 -53
  311. package/front_end/ui/components/settings/SettingCheckbox.ts +15 -15
  312. package/front_end/ui/components/survey_link/SurveyLink.ts +28 -28
  313. package/front_end/ui/components/text_editor/TextEditor.ts +68 -36
  314. package/front_end/ui/components/text_editor/config.ts +4 -2
  315. package/front_end/ui/components/text_editor/javascript.ts +6 -6
  316. package/front_end/ui/components/text_prompt/TextPrompt.ts +19 -19
  317. package/front_end/ui/components/tree_outline/TreeOutline.ts +56 -56
  318. package/front_end/ui/legacy/Infobar.ts +9 -0
  319. package/front_end/ui/legacy/InspectorView.ts +1 -1
  320. package/front_end/ui/legacy/ListWidget.ts +2 -2
  321. package/front_end/ui/legacy/ViewManager.ts +6 -0
  322. package/front_end/ui/legacy/components/cookie_table/CookiesTable.ts +20 -0
  323. package/front_end/ui/legacy/tabbedPane.css +1 -1
  324. package/inspector_overlay/main.ts +3 -0
  325. package/package.json +1 -1
  326. package/scripts/eslint_rules/lib/l10n_filename_matches.js +17 -4
  327. package/scripts/eslint_rules/tests/l10n_filename_matches_test.js +21 -0
@@ -1877,7 +1877,7 @@ export class BinaryReader {
1877
1877
  shift += 7;
1878
1878
  if ((byte & 0x80) === 0) break;
1879
1879
  }
1880
- return result;
1880
+ return result >>> 0;
1881
1881
  }
1882
1882
  private readVarInt64(): Int64 {
1883
1883
  var result = new Uint8Array(8);
@@ -1951,7 +1951,7 @@ export class BinaryReader {
1951
1951
  return new Type(TypeKind.unspecified, func_index);
1952
1952
  }
1953
1953
  private readStringBytes(): Uint8Array {
1954
- var length = this.readVarUint32() >>> 0;
1954
+ var length = this.readVarUint32();
1955
1955
  return this.readBytes(length);
1956
1956
  }
1957
1957
  private readBytes(length: number): Uint8Array {
@@ -1965,7 +1965,7 @@ export class BinaryReader {
1965
1965
  private hasStringBytes(): boolean {
1966
1966
  if (!this.hasVarIntBytes()) return false;
1967
1967
  var pos = this._pos;
1968
- var length = this.readVarUint32() >>> 0;
1968
+ var length = this.readVarUint32();
1969
1969
  var result = this.hasBytes(length);
1970
1970
  this._pos = pos;
1971
1971
  return result;
@@ -1974,7 +1974,7 @@ export class BinaryReader {
1974
1974
  return this.hasBytes(this._sectionRange.end - this._pos);
1975
1975
  }
1976
1976
  private readFuncType(): ITypeEntry {
1977
- var paramCount = this.readVarUint32() >>> 0;
1977
+ var paramCount = this.readVarUint32();
1978
1978
  var paramTypes = new Array(paramCount);
1979
1979
  for (var i = 0; i < paramCount; i++) paramTypes[i] = this.readType();
1980
1980
  var returnCount = this.readVarUint1();
@@ -1993,7 +1993,7 @@ export class BinaryReader {
1993
1993
  return result;
1994
1994
  }
1995
1995
  private readStructType(): ITypeEntry {
1996
- var fieldCount = this.readVarUint32() >>> 0;
1996
+ var fieldCount = this.readVarUint32();
1997
1997
  var fieldTypes = new Array(fieldCount);
1998
1998
  var fieldMutabilities = new Array(fieldCount);
1999
1999
  for (var i = 0; i < fieldCount; i++) {
@@ -2028,21 +2028,21 @@ export class BinaryReader {
2028
2028
  return result;
2029
2029
  }
2030
2030
  private readResizableLimits(maxPresent: boolean): IResizableLimits {
2031
- var initial = this.readVarUint32() >>> 0;
2031
+ var initial = this.readVarUint32();
2032
2032
  var maximum;
2033
2033
  if (maxPresent) {
2034
- maximum = this.readVarUint32() >>> 0;
2034
+ maximum = this.readVarUint32();
2035
2035
  }
2036
2036
  return { initial: initial, maximum: maximum };
2037
2037
  }
2038
2038
  private readTableType(): ITableType {
2039
2039
  var elementType = this.readType();
2040
- var flags = this.readVarUint32() >>> 0;
2040
+ var flags = this.readVarUint32();
2041
2041
  var limits = this.readResizableLimits(!!(flags & 0x01));
2042
2042
  return { elementType: elementType, limits: limits };
2043
2043
  }
2044
2044
  private readMemoryType(): IMemoryType {
2045
- var flags = this.readVarUint32() >>> 0;
2045
+ var flags = this.readVarUint32();
2046
2046
  var shared = !!(flags & 0x02);
2047
2047
  return {
2048
2048
  limits: this.readResizableLimits(!!(flags & 0x01)),
@@ -2063,8 +2063,8 @@ export class BinaryReader {
2063
2063
  return { contentType: contentType, mutability: mutability };
2064
2064
  }
2065
2065
  private readEventType(): IEventType {
2066
- var attribute = this.readVarUint32() >>> 0;
2067
- var typeIndex = this.readVarUint32() >>> 0;
2066
+ var attribute = this.readVarUint32();
2067
+ var typeIndex = this.readVarUint32();
2068
2068
  return {
2069
2069
  attribute: attribute,
2070
2070
  typeIndex: typeIndex,
@@ -2115,7 +2115,7 @@ export class BinaryReader {
2115
2115
  var type: ITableType | IMemoryType | IGlobalType | IEventType;
2116
2116
  switch (kind) {
2117
2117
  case ExternalKind.Function:
2118
- funcTypeIndex = this.readVarUint32() >>> 0;
2118
+ funcTypeIndex = this.readVarUint32();
2119
2119
  break;
2120
2120
  case ExternalKind.Table:
2121
2121
  type = this.readTableType();
@@ -2147,7 +2147,7 @@ export class BinaryReader {
2147
2147
  }
2148
2148
  var field = this.readStringBytes();
2149
2149
  var kind = this.readUint8();
2150
- var index = this.readVarUint32() >>> 0;
2150
+ var index = this.readVarUint32();
2151
2151
  this.state = BinaryReaderState.EXPORT_SECTION_ENTRY;
2152
2152
  this.result = { field: field, kind: kind, index: index };
2153
2153
  this._sectionEntriesLeft--;
@@ -2158,7 +2158,7 @@ export class BinaryReader {
2158
2158
  this.skipSection();
2159
2159
  return this.read();
2160
2160
  }
2161
- var typeIndex = this.readVarUint32() >>> 0;
2161
+ var typeIndex = this.readVarUint32();
2162
2162
  this.state = BinaryReaderState.FUNCTION_SECTION_ENTRY;
2163
2163
  this.result = { typeIndex: typeIndex };
2164
2164
  this._sectionEntriesLeft--;
@@ -2345,8 +2345,8 @@ export class BinaryReader {
2345
2345
  return true;
2346
2346
  }
2347
2347
  private readMemoryImmediate(): IMemoryAddress {
2348
- var flags = this.readVarUint32() >>> 0;
2349
- var offset = this.readVarUint32() >>> 0;
2348
+ var flags = this.readVarUint32();
2349
+ var offset = this.readVarUint32();
2350
2350
  return { flags: flags, offset: offset };
2351
2351
  }
2352
2352
  private readNameMap(): INaming[] {
@@ -2473,7 +2473,7 @@ export class BinaryReader {
2473
2473
  }
2474
2474
  if (!this.hasVarIntBytes()) return false;
2475
2475
  var pos = this._pos;
2476
- var type: LinkingType = this.readVarUint32() >>> 0;
2476
+ var type: LinkingType = this.readVarUint32();
2477
2477
  var index;
2478
2478
  switch (type) {
2479
2479
  case LinkingType.StackPointer:
@@ -2570,11 +2570,11 @@ export class BinaryReader {
2570
2570
  case OperatorCode.br_on_non_data:
2571
2571
  case OperatorCode.br_on_i31:
2572
2572
  case OperatorCode.br_on_non_i31:
2573
- brDepth = this.readVarUint32() >>> 0;
2573
+ brDepth = this.readVarUint32();
2574
2574
  break;
2575
2575
  case OperatorCode.br_on_cast_static:
2576
2576
  case OperatorCode.br_on_cast_static_fail:
2577
- brDepth = this.readVarUint32() >>> 0;
2577
+ brDepth = this.readVarUint32();
2578
2578
  refType = this.readHeapType();
2579
2579
  break;
2580
2580
  case OperatorCode.array_get:
@@ -2613,7 +2613,7 @@ export class BinaryReader {
2613
2613
  refType = this.readHeapType();
2614
2614
  // This really is the "length" value. Overload "brDepth" to keep the
2615
2615
  // IOperatorInformation interface a little leaner.
2616
- brDepth = this.readVarUint32() >>> 0;
2616
+ brDepth = this.readVarUint32();
2617
2617
  break;
2618
2618
  case OperatorCode.ref_is_func:
2619
2619
  case OperatorCode.ref_is_data:
@@ -2682,25 +2682,25 @@ export class BinaryReader {
2682
2682
  reserved = this.readVarUint1();
2683
2683
  break;
2684
2684
  case OperatorCode.table_init:
2685
- segmentIndex = this.readVarUint32() >>> 0;
2686
- tableIndex = this.readVarUint32() >>> 0;
2685
+ segmentIndex = this.readVarUint32();
2686
+ tableIndex = this.readVarUint32();
2687
2687
  break;
2688
2688
  case OperatorCode.table_copy:
2689
- tableIndex = this.readVarUint32() >>> 0;
2690
- destinationIndex = this.readVarUint32() >>> 0;
2689
+ tableIndex = this.readVarUint32();
2690
+ destinationIndex = this.readVarUint32();
2691
2691
  break;
2692
2692
  case OperatorCode.table_grow:
2693
2693
  case OperatorCode.table_size:
2694
2694
  case OperatorCode.table_fill:
2695
- tableIndex = this.readVarUint32() >>> 0;
2695
+ tableIndex = this.readVarUint32();
2696
2696
  break;
2697
2697
  case OperatorCode.memory_init:
2698
- segmentIndex = this.readVarUint32() >>> 0;
2698
+ segmentIndex = this.readVarUint32();
2699
2699
  reserved = this.readVarUint1();
2700
2700
  break;
2701
2701
  case OperatorCode.data_drop:
2702
2702
  case OperatorCode.elem_drop:
2703
- segmentIndex = this.readVarUint32() >>> 0;
2703
+ segmentIndex = this.readVarUint32();
2704
2704
  break;
2705
2705
  default:
2706
2706
  this.error = new Error(
@@ -3218,10 +3218,10 @@ export class BinaryReader {
3218
3218
  case OperatorCode.br_if:
3219
3219
  case OperatorCode.br_on_null:
3220
3220
  case OperatorCode.br_on_non_null:
3221
- brDepth = this.readVarUint32() >>> 0;
3221
+ brDepth = this.readVarUint32();
3222
3222
  break;
3223
3223
  case OperatorCode.br_table:
3224
- var tableCount = this.readVarUint32() >>> 0;
3224
+ var tableCount = this.readVarUint32();
3225
3225
  if (!this.hasBytes(tableCount + 1)) {
3226
3226
  // We need at least (tableCount + 1) bytes
3227
3227
  this._pos = pos;
@@ -3234,12 +3234,12 @@ export class BinaryReader {
3234
3234
  this._pos = pos;
3235
3235
  return false;
3236
3236
  }
3237
- brTable.push(this.readVarUint32() >>> 0);
3237
+ brTable.push(this.readVarUint32());
3238
3238
  }
3239
3239
  break;
3240
3240
  case OperatorCode.rethrow:
3241
3241
  case OperatorCode.delegate:
3242
- relativeDepth = this.readVarUint32() >>> 0;
3242
+ relativeDepth = this.readVarUint32();
3243
3243
  break;
3244
3244
  case OperatorCode.catch:
3245
3245
  case OperatorCode.throw:
@@ -3251,25 +3251,25 @@ export class BinaryReader {
3251
3251
  case OperatorCode.call:
3252
3252
  case OperatorCode.return_call:
3253
3253
  case OperatorCode.ref_func:
3254
- funcIndex = this.readVarUint32() >>> 0;
3254
+ funcIndex = this.readVarUint32();
3255
3255
  break;
3256
3256
  case OperatorCode.call_indirect:
3257
3257
  case OperatorCode.return_call_indirect:
3258
- typeIndex = this.readVarUint32() >>> 0;
3258
+ typeIndex = this.readVarUint32();
3259
3259
  reserved = this.readVarUint1();
3260
3260
  break;
3261
3261
  case OperatorCode.local_get:
3262
3262
  case OperatorCode.local_set:
3263
3263
  case OperatorCode.local_tee:
3264
- localIndex = this.readVarUint32() >>> 0;
3264
+ localIndex = this.readVarUint32();
3265
3265
  break;
3266
3266
  case OperatorCode.global_get:
3267
3267
  case OperatorCode.global_set:
3268
- globalIndex = this.readVarUint32() >>> 0;
3268
+ globalIndex = this.readVarUint32();
3269
3269
  break;
3270
3270
  case OperatorCode.table_get:
3271
3271
  case OperatorCode.table_set:
3272
- tableIndex = this.readVarUint32() >>> 0;
3272
+ tableIndex = this.readVarUint32();
3273
3273
  break;
3274
3274
  case OperatorCode.i32_load:
3275
3275
  case OperatorCode.i64_load:
@@ -3532,20 +3532,20 @@ export class BinaryReader {
3532
3532
  }
3533
3533
  if (!this.hasVarIntBytes()) return false;
3534
3534
  var pos = this._pos;
3535
- var size = this.readVarUint32() >>> 0;
3535
+ var size = this.readVarUint32();
3536
3536
  var bodyEnd = this._pos + size;
3537
3537
  if (!this.hasVarIntBytes()) {
3538
3538
  this._pos = pos;
3539
3539
  return false;
3540
3540
  }
3541
- var localCount = this.readVarUint32() >>> 0;
3541
+ var localCount = this.readVarUint32();
3542
3542
  var locals: Array<ILocals> = [];
3543
3543
  for (var i = 0; i < localCount; i++) {
3544
3544
  if (!this.hasVarIntBytes()) {
3545
3545
  this._pos = pos;
3546
3546
  return false;
3547
3547
  }
3548
- var count = this.readVarUint32() >>> 0;
3548
+ var count = this.readVarUint32();
3549
3549
  if (!this.hasVarIntBytes()) {
3550
3550
  this._pos = pos;
3551
3551
  return false;
@@ -3588,7 +3588,7 @@ export class BinaryReader {
3588
3588
  this._pos = sectionStart;
3589
3589
  return false;
3590
3590
  }
3591
- var payloadLength = this.readVarUint32() >>> 0;
3591
+ var payloadLength = this.readVarUint32();
3592
3592
  var name = null;
3593
3593
  var payloadEnd = this._pos + payloadLength;
3594
3594
  if (id == 0) {
@@ -3625,31 +3625,31 @@ export class BinaryReader {
3625
3625
  switch (currentSection.id) {
3626
3626
  case SectionCode.Type:
3627
3627
  if (!this.hasSectionPayload()) return false;
3628
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3628
+ this._sectionEntriesLeft = this.readVarUint32();
3629
3629
  return this.readTypeEntry();
3630
3630
  case SectionCode.Import:
3631
3631
  if (!this.hasSectionPayload()) return false;
3632
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3632
+ this._sectionEntriesLeft = this.readVarUint32();
3633
3633
  return this.readImportEntry();
3634
3634
  case SectionCode.Export:
3635
3635
  if (!this.hasSectionPayload()) return false;
3636
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3636
+ this._sectionEntriesLeft = this.readVarUint32();
3637
3637
  return this.readExportEntry();
3638
3638
  case SectionCode.Function:
3639
3639
  if (!this.hasSectionPayload()) return false;
3640
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3640
+ this._sectionEntriesLeft = this.readVarUint32();
3641
3641
  return this.readFunctionEntry();
3642
3642
  case SectionCode.Table:
3643
3643
  if (!this.hasSectionPayload()) return false;
3644
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3644
+ this._sectionEntriesLeft = this.readVarUint32();
3645
3645
  return this.readTableEntry();
3646
3646
  case SectionCode.Memory:
3647
3647
  if (!this.hasSectionPayload()) return false;
3648
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3648
+ this._sectionEntriesLeft = this.readVarUint32();
3649
3649
  return this.readMemoryEntry();
3650
3650
  case SectionCode.Global:
3651
3651
  if (!this.hasVarIntBytes()) return false;
3652
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3652
+ this._sectionEntriesLeft = this.readVarUint32();
3653
3653
  return this.readGlobalEntry();
3654
3654
  case SectionCode.Start:
3655
3655
  if (!this.hasVarIntBytes()) return false;
@@ -3658,20 +3658,20 @@ export class BinaryReader {
3658
3658
  return true;
3659
3659
  case SectionCode.Code:
3660
3660
  if (!this.hasVarIntBytes()) return false;
3661
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3661
+ this._sectionEntriesLeft = this.readVarUint32();
3662
3662
  this.state = BinaryReaderState.READING_FUNCTION_HEADER;
3663
3663
  return this.readFunctionBody();
3664
3664
  case SectionCode.Element:
3665
3665
  if (!this.hasVarIntBytes()) return false;
3666
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3666
+ this._sectionEntriesLeft = this.readVarUint32();
3667
3667
  return this.readElementEntry();
3668
3668
  case SectionCode.Data:
3669
3669
  if (!this.hasVarIntBytes()) return false;
3670
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3670
+ this._sectionEntriesLeft = this.readVarUint32();
3671
3671
  return this.readDataEntry();
3672
3672
  case SectionCode.Event:
3673
3673
  if (!this.hasVarIntBytes()) return false;
3674
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3674
+ this._sectionEntriesLeft = this.readVarUint32();
3675
3675
  return this.readEventEntry();
3676
3676
  case SectionCode.Custom:
3677
3677
  var customSectionName = bytesToString(currentSection.name);
@@ -3683,7 +3683,7 @@ export class BinaryReader {
3683
3683
  }
3684
3684
  if (customSectionName === "linking") {
3685
3685
  if (!this.hasVarIntBytes()) return false;
3686
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3686
+ this._sectionEntriesLeft = this.readVarUint32();
3687
3687
  return this.readLinkingEntry();
3688
3688
  }
3689
3689
  if (customSectionName === "sourceMappingURL") {
@@ -3827,7 +3827,7 @@ export class BinaryReader {
3827
3827
  return this.readNameEntry();
3828
3828
  case BinaryReaderState.RELOC_SECTION_HEADER:
3829
3829
  if (!this.hasVarIntBytes()) return false;
3830
- this._sectionEntriesLeft = this.readVarUint32() >>> 0;
3830
+ this._sectionEntriesLeft = this.readVarUint32();
3831
3831
  return this.readRelocEntry();
3832
3832
  case BinaryReaderState.LINKING_SECTION_ENTRY:
3833
3833
  return this.readLinkingEntry();
@@ -19,18 +19,18 @@ export class Adorner extends HTMLElement {
19
19
  static readonly litTagName = LitHtml.literal`devtools-adorner`;
20
20
  name = '';
21
21
 
22
- private readonly shadow = this.attachShadow({mode: 'open'});
23
- private isToggle = false;
24
- private ariaLabelDefault?: string;
25
- private ariaLabelActive?: string;
26
- private content?: HTMLElement;
22
+ readonly #shadow = this.attachShadow({mode: 'open'});
23
+ #isToggle = false;
24
+ #ariaLabelDefault?: string;
25
+ #ariaLabelActive?: string;
26
+ #content?: HTMLElement;
27
27
 
28
28
  set data(data: AdornerData) {
29
29
  this.name = data.name;
30
30
  data.content.slot = 'content';
31
- this.content?.remove();
31
+ this.#content?.remove();
32
32
  this.append(data.content);
33
- this.content = data.content;
33
+ this.#content = data.content;
34
34
  this.render();
35
35
  }
36
36
 
@@ -38,7 +38,7 @@ export class Adorner extends HTMLElement {
38
38
  if (!this.getAttribute('aria-label')) {
39
39
  this.setAttribute('aria-label', this.name);
40
40
  }
41
- this.shadow.adoptedStyleSheets = [adornerStyles];
41
+ this.#shadow.adoptedStyleSheets = [adornerStyles];
42
42
  }
43
43
 
44
44
  isActive(): boolean {
@@ -50,12 +50,12 @@ export class Adorner extends HTMLElement {
50
50
  * an active state; pass `false` to force-set an inactive state.
51
51
  */
52
52
  toggle(forceActiveState?: boolean): void {
53
- if (!this.isToggle) {
53
+ if (!this.#isToggle) {
54
54
  return;
55
55
  }
56
56
  const shouldBecomeActive = forceActiveState === undefined ? !this.isActive() : forceActiveState;
57
57
  this.setAttribute('aria-pressed', Boolean(shouldBecomeActive).toString());
58
- this.setAttribute('aria-label', (shouldBecomeActive ? this.ariaLabelActive : this.ariaLabelDefault) || this.name);
58
+ this.setAttribute('aria-label', (shouldBecomeActive ? this.#ariaLabelActive : this.#ariaLabelDefault) || this.name);
59
59
  }
60
60
 
61
61
  show(): void {
@@ -78,9 +78,9 @@ export class Adorner extends HTMLElement {
78
78
  }): void {
79
79
  const {isToggle = false, shouldPropagateOnKeydown = false, ariaLabelDefault, ariaLabelActive} = options;
80
80
 
81
- this.isToggle = isToggle;
82
- this.ariaLabelDefault = ariaLabelDefault;
83
- this.ariaLabelActive = ariaLabelActive;
81
+ this.#isToggle = isToggle;
82
+ this.#ariaLabelDefault = ariaLabelDefault;
83
+ this.#ariaLabelActive = ariaLabelActive;
84
84
  this.setAttribute('aria-label', ariaLabelDefault);
85
85
 
86
86
  if (isToggle) {
@@ -111,7 +111,7 @@ export class Adorner extends HTMLElement {
111
111
  // clang-format off
112
112
  render(html`
113
113
  <slot name="content"></slot>
114
- `, this.shadow, {
114
+ `, this.#shadow, {
115
115
  host: this,
116
116
  });
117
117
  }