@browserless.io/browserless 2.2.0-beta-6 → 2.2.0

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 (1313) hide show
  1. package/CHANGELOG.md +21 -2
  2. package/bin/browserless.js +1 -1
  3. package/bin/scaffold/README.md +8 -7
  4. package/build/browserless.js +7 -6
  5. package/build/browsers/chrome.cdp.d.ts +6 -0
  6. package/build/browsers/chrome.cdp.js +6 -0
  7. package/build/browsers/chrome.playwright.d.ts +6 -0
  8. package/build/browsers/chrome.playwright.js +6 -0
  9. package/build/browsers/{cdp-chromium.d.ts → chromium.cdp.d.ts} +3 -2
  10. package/build/browsers/{cdp-chromium.js → chromium.cdp.js} +16 -10
  11. package/build/browsers/{playwright-chromium.d.ts → chromium.playwright.d.ts} +3 -2
  12. package/build/browsers/{playwright-chromium.js → chromium.playwright.js} +6 -5
  13. package/build/browsers/{playwright-firefox.d.ts → firefox.playwright.d.ts} +2 -2
  14. package/build/browsers/{playwright-firefox.js → firefox.playwright.js} +4 -4
  15. package/build/browsers/index.d.ts +20 -10
  16. package/build/browsers/index.js +110 -11
  17. package/build/browsers/{playwright-webkit.d.ts → webkit.playwright.d.ts} +2 -2
  18. package/build/browsers/{playwright-webkit.js → webkit.playwright.js} +4 -4
  19. package/build/data/selectors.json +1 -1
  20. package/build/exports.d.ts +6 -4
  21. package/build/exports.js +6 -4
  22. package/build/http.d.ts +22 -1
  23. package/build/http.js +21 -0
  24. package/build/router.js +19 -3
  25. package/build/routes/{chromium/http/content-post.body.json → chrome/http/content.post.body.json} +8 -8
  26. package/build/routes/chrome/http/content.post.d.ts +7 -0
  27. package/build/routes/chrome/http/content.post.js +6 -0
  28. package/build/routes/chrome/http/download.post.d.ts +7 -0
  29. package/build/routes/chrome/http/download.post.js +6 -0
  30. package/build/routes/chrome/http/function.post.d.ts +7 -0
  31. package/build/routes/chrome/http/function.post.js +6 -0
  32. package/build/routes/chrome/http/json-list.get.d.ts +1 -0
  33. package/build/routes/chrome/http/json-list.get.js +1 -0
  34. package/build/routes/chrome/http/json-new.put.d.ts +1 -0
  35. package/build/routes/chrome/http/json-new.put.js +1 -0
  36. package/build/routes/chrome/http/json-protocol.get.d.ts +1 -0
  37. package/build/routes/chrome/http/json-protocol.get.js +1 -0
  38. package/build/routes/chrome/http/json-version.get.d.ts +1 -0
  39. package/build/routes/chrome/http/json-version.get.js +1 -0
  40. package/build/routes/chrome/http/json-version.get.response.json +44 -0
  41. package/build/routes/{chromium/http/pdf-post.body.json → chrome/http/pdf.post.body.json} +8 -8
  42. package/build/routes/chrome/http/pdf.post.d.ts +7 -0
  43. package/build/routes/chrome/http/pdf.post.js +6 -0
  44. package/build/routes/chrome/http/performance.post.d.ts +7 -0
  45. package/build/routes/chrome/http/performance.post.js +6 -0
  46. package/build/routes/{chromium/http/scrape-post.body.json → chrome/http/scrape.post.body.json} +8 -8
  47. package/build/routes/chrome/http/scrape.post.d.ts +7 -0
  48. package/build/routes/chrome/http/scrape.post.js +6 -0
  49. package/build/routes/{chromium/http/screenshot-post.body.json → chrome/http/screenshot.post.body.json} +8 -8
  50. package/build/routes/chrome/http/screenshot.post.d.ts +7 -0
  51. package/build/routes/chrome/http/screenshot.post.js +6 -0
  52. package/build/routes/chrome/tests/content.spec.js +311 -0
  53. package/build/routes/chrome/tests/download.spec.js +67 -0
  54. package/build/routes/chrome/tests/function.spec.d.ts +1 -0
  55. package/build/routes/chrome/tests/function.spec.js +245 -0
  56. package/build/routes/chrome/tests/json-version.spec.d.ts +1 -0
  57. package/build/routes/chrome/tests/json-version.spec.js +37 -0
  58. package/build/routes/chrome/tests/page-websocket.spec.d.ts +1 -0
  59. package/build/routes/chrome/tests/page-websocket.spec.js +97 -0
  60. package/build/routes/chrome/tests/pdf.spec.d.ts +1 -0
  61. package/build/routes/chrome/tests/pdf.spec.js +333 -0
  62. package/build/routes/chrome/tests/performance.spec.d.ts +1 -0
  63. package/build/routes/chrome/tests/performance.spec.js +124 -0
  64. package/build/routes/chrome/tests/scrape.spec.d.ts +1 -0
  65. package/build/routes/chrome/tests/scrape.spec.js +354 -0
  66. package/build/routes/chrome/tests/screenshot.spec.d.ts +1 -0
  67. package/build/routes/chrome/tests/screenshot.spec.js +339 -0
  68. package/build/routes/chrome/tests/websocket.spec.d.ts +1 -0
  69. package/build/routes/chrome/tests/websocket.spec.js +371 -0
  70. package/build/routes/chrome/ws/browser.d.ts +6 -0
  71. package/build/routes/chrome/ws/browser.js +5 -0
  72. package/build/routes/chrome/ws/cdp.d.ts +7 -0
  73. package/build/routes/chrome/ws/cdp.js +6 -0
  74. package/build/routes/chrome/ws/cdp.query.json +120 -0
  75. package/build/routes/chrome/ws/page.d.ts +6 -0
  76. package/build/routes/chrome/ws/page.js +5 -0
  77. package/build/routes/chrome/ws/page.query.json +120 -0
  78. package/build/routes/chrome/ws/playwright.d.ts +7 -0
  79. package/build/routes/chrome/ws/playwright.js +6 -0
  80. package/build/routes/chromium/http/content.post.body.json +510 -0
  81. package/build/routes/chromium/http/content.post.d.ts +1 -0
  82. package/build/routes/chromium/http/content.post.js +1 -0
  83. package/build/routes/chromium/http/content.post.query.json +183 -0
  84. package/build/routes/chromium/http/content.post.response.json +5 -0
  85. package/build/routes/chromium/http/download.post.body.json +32 -0
  86. package/build/routes/chromium/http/download.post.d.ts +1 -0
  87. package/build/routes/chromium/http/download.post.js +1 -0
  88. package/build/routes/chromium/http/download.post.query.json +120 -0
  89. package/build/routes/chromium/http/download.post.response.json +4 -0
  90. package/build/routes/chromium/http/function.post.body.json +32 -0
  91. package/build/routes/chromium/http/function.post.d.ts +1 -0
  92. package/build/routes/chromium/http/function.post.js +1 -0
  93. package/build/routes/chromium/http/function.post.query.json +120 -0
  94. package/build/routes/chromium/http/function.post.response.json +4 -0
  95. package/build/routes/chromium/http/json-list.get.d.ts +1 -0
  96. package/build/routes/chromium/http/json-list.get.js +1 -0
  97. package/build/routes/chromium/http/json-list.get.response.json +52 -0
  98. package/build/routes/chromium/http/json-new.put.d.ts +1 -0
  99. package/build/routes/chromium/http/json-new.put.js +1 -0
  100. package/build/routes/chromium/http/json-new.put.response.json +44 -0
  101. package/build/routes/chromium/http/json-protocol.get.d.ts +1 -0
  102. package/build/routes/chromium/http/json-protocol.get.js +1 -0
  103. package/build/routes/chromium/http/json-protocol.get.response.json +6 -0
  104. package/build/routes/chromium/http/json-version.get.d.ts +1 -0
  105. package/build/routes/chromium/http/json-version.get.js +1 -0
  106. package/build/routes/chromium/http/json-version.get.response.json +44 -0
  107. package/build/routes/chromium/http/pdf.post.body.json +654 -0
  108. package/build/routes/chromium/http/pdf.post.d.ts +1 -0
  109. package/build/routes/chromium/http/pdf.post.js +1 -0
  110. package/build/routes/chromium/http/pdf.post.query.json +120 -0
  111. package/build/routes/chromium/http/pdf.post.response.json +5 -0
  112. package/build/routes/chromium/http/performance.post.body.json +26 -0
  113. package/build/routes/chromium/http/performance.post.d.ts +1 -0
  114. package/build/routes/chromium/http/performance.post.js +1 -0
  115. package/build/routes/chromium/http/performance.post.query.json +120 -0
  116. package/build/routes/chromium/http/performance.post.response.json +7 -0
  117. package/build/routes/chromium/http/scrape.post.body.json +557 -0
  118. package/build/routes/chromium/http/scrape.post.d.ts +1 -0
  119. package/build/routes/chromium/http/scrape.post.js +1 -0
  120. package/build/routes/chromium/http/scrape.post.query.json +183 -0
  121. package/build/routes/chromium/http/scrape.post.response.json +309 -0
  122. package/build/routes/chromium/http/screenshot.post.body.json +600 -0
  123. package/build/routes/chromium/http/screenshot.post.d.ts +1 -0
  124. package/build/routes/chromium/http/screenshot.post.js +1 -0
  125. package/build/routes/chromium/http/screenshot.post.query.json +120 -0
  126. package/build/routes/chromium/http/screenshot.post.response.json +5 -0
  127. package/build/routes/chromium/tests/content.spec.js +16 -16
  128. package/build/routes/chromium/tests/download.spec.js +3 -3
  129. package/build/routes/chromium/tests/function.spec.js +10 -10
  130. package/build/routes/chromium/tests/page-websocket.spec.d.ts +1 -0
  131. package/build/routes/chromium/tests/page-websocket.spec.js +97 -0
  132. package/build/routes/chromium/tests/pdf.spec.js +16 -16
  133. package/build/routes/chromium/tests/performance.spec.js +7 -7
  134. package/build/routes/chromium/tests/scrape.spec.js +15 -15
  135. package/build/routes/chromium/tests/screenshot.spec.js +17 -17
  136. package/build/routes/chromium/tests/websocket.spec.js +31 -37
  137. package/build/routes/chromium/ws/browser.d.ts +1 -16
  138. package/build/routes/chromium/ws/browser.js +1 -10
  139. package/build/routes/chromium/ws/cdp.d.ts +1 -0
  140. package/build/routes/chromium/ws/cdp.js +1 -0
  141. package/build/routes/chromium/ws/cdp.query.json +120 -0
  142. package/build/routes/chromium/ws/page.d.ts +1 -16
  143. package/build/routes/chromium/ws/page.js +1 -10
  144. package/build/routes/chromium/ws/playwright.d.ts +1 -0
  145. package/build/routes/chromium/ws/playwright.js +1 -0
  146. package/build/routes/firefox/ws/{playwright-firefox.d.ts → playwright.d.ts} +5 -5
  147. package/build/routes/firefox/ws/{playwright-firefox.js → playwright.js} +4 -4
  148. package/build/routes/management/http/{sessions-get.response.json → sessions.get.response.json} +11 -1
  149. package/build/routes/management/http/{static-get.js → static.get.js} +2 -2
  150. package/build/routes/webkit/ws/{playwright-webkit.d.ts → playwright.d.ts} +5 -5
  151. package/build/routes/webkit/ws/{playwright-webkit.js → playwright.js} +4 -4
  152. package/build/routes/webkit/ws/playwright.query.json +100 -0
  153. package/build/{routes/chromium/ws/cdp-chromium.d.ts → shared/browser.ws.d.ts} +4 -4
  154. package/build/shared/browser.ws.js +12 -0
  155. package/build/{routes/chromium/ws/playwright-chromium.d.ts → shared/chromium.playwright.ws.d.ts} +4 -4
  156. package/build/{routes/chromium/ws/playwright-chromium.js → shared/chromium.playwright.ws.js} +6 -3
  157. package/build/shared/chromium.ws.d.ts +16 -0
  158. package/build/shared/chromium.ws.js +10 -0
  159. package/build/{routes/chromium/http/content-post.d.ts → shared/content.http.d.ts} +3 -3
  160. package/build/{routes/chromium/http/content-post.js → shared/content.http.js} +3 -3
  161. package/build/{routes/chromium/http/download-post.d.ts → shared/download.http.d.ts} +3 -3
  162. package/build/{routes/chromium/http/download-post.js → shared/download.http.js} +4 -4
  163. package/build/{routes/chromium/http/function-post.d.ts → shared/function.http.d.ts} +3 -3
  164. package/build/{routes/chromium/http/function-post.js → shared/function.http.js} +4 -4
  165. package/build/{routes/chromium/http/json-new.d.ts → shared/json-list.http.d.ts} +2 -3
  166. package/build/{routes/chromium/http/json-list.js → shared/json-list.http.js} +5 -8
  167. package/build/{routes/chromium/http/json-list.d.ts → shared/json-new.http.d.ts} +2 -3
  168. package/build/shared/json-new.http.js +34 -0
  169. package/build/{routes/chromium/http/json-protocol-get.js → shared/json-protocol.http.js} +2 -2
  170. package/build/{routes/chromium/http/json-version-get.js → shared/json-version.http.js} +3 -3
  171. package/build/shared/page.ws.d.ts +16 -0
  172. package/build/shared/page.ws.js +13 -0
  173. package/build/{routes/chromium/http/pdf-post.d.ts → shared/pdf.http.d.ts} +3 -3
  174. package/build/{routes/chromium/http/pdf-post.js → shared/pdf.http.js} +3 -3
  175. package/build/{routes/chromium/http/performance.d.ts → shared/performance.http.d.ts} +3 -3
  176. package/build/{routes/chromium/http/performance.js → shared/performance.http.js} +4 -4
  177. package/build/{routes/chromium/http/scrape-post.d.ts → shared/scrape.http.d.ts} +3 -3
  178. package/build/{routes/chromium/http/scrape-post.js → shared/scrape.http.js} +3 -3
  179. package/build/{routes/chromium/http/screenshot-post.d.ts → shared/screenshot.http.d.ts} +3 -3
  180. package/build/{routes/chromium/http/screenshot-post.js → shared/screenshot.http.js} +3 -3
  181. package/build/shared/utils/performance/child.d.ts +1 -0
  182. package/build/{routes/chromium → shared}/utils/performance/main.js +1 -1
  183. package/build/shared/utils/performance/types.js +1 -0
  184. package/build/shim.js +2 -1
  185. package/build/types.d.ts +10 -8
  186. package/build/utils.d.ts +8 -3
  187. package/build/utils.js +24 -11
  188. package/docker/base/Dockerfile +1 -1
  189. package/docker/chrome/Dockerfile +4 -4
  190. package/docker/chromium/.dockerignore +16 -0
  191. package/docker/chromium/Dockerfile +40 -0
  192. package/docker/firefox/Dockerfile +1 -1
  193. package/docker/multi/Dockerfile +13 -1
  194. package/docker/webkit/Dockerfile +1 -1
  195. package/extensions/ublock/3p-filters.html +1 -1
  196. package/extensions/ublock/_locales/ar/messages.json +4 -0
  197. package/extensions/ublock/_locales/az/messages.json +4 -0
  198. package/extensions/ublock/_locales/be/messages.json +4 -0
  199. package/extensions/ublock/_locales/bg/messages.json +5 -1
  200. package/extensions/ublock/_locales/bn/messages.json +4 -0
  201. package/extensions/ublock/_locales/br_FR/messages.json +6 -2
  202. package/extensions/ublock/_locales/bs/messages.json +4 -0
  203. package/extensions/ublock/_locales/ca/messages.json +4 -0
  204. package/extensions/ublock/_locales/cs/messages.json +4 -0
  205. package/extensions/ublock/_locales/cv/messages.json +4 -0
  206. package/extensions/ublock/_locales/cy/messages.json +1294 -0
  207. package/extensions/ublock/_locales/da/messages.json +4 -0
  208. package/extensions/ublock/_locales/de/messages.json +5 -1
  209. package/extensions/ublock/_locales/el/messages.json +4 -0
  210. package/extensions/ublock/_locales/en/messages.json +4 -0
  211. package/extensions/ublock/_locales/en_GB/messages.json +4 -0
  212. package/extensions/ublock/_locales/eo/messages.json +9 -5
  213. package/extensions/ublock/_locales/es/messages.json +4 -0
  214. package/extensions/ublock/_locales/et/messages.json +4 -0
  215. package/extensions/ublock/_locales/eu/messages.json +8 -4
  216. package/extensions/ublock/_locales/fa/messages.json +4 -0
  217. package/extensions/ublock/_locales/fi/messages.json +4 -0
  218. package/extensions/ublock/_locales/fil/messages.json +4 -0
  219. package/extensions/ublock/_locales/fr/messages.json +4 -0
  220. package/extensions/ublock/_locales/fy/messages.json +4 -0
  221. package/extensions/ublock/_locales/gl/messages.json +4 -0
  222. package/extensions/ublock/_locales/gu/messages.json +4 -0
  223. package/extensions/ublock/_locales/he/messages.json +4 -0
  224. package/extensions/ublock/_locales/hi/messages.json +4 -0
  225. package/extensions/ublock/_locales/hr/messages.json +4 -0
  226. package/extensions/ublock/_locales/hu/messages.json +4 -0
  227. package/extensions/ublock/_locales/hy/messages.json +4 -0
  228. package/extensions/ublock/_locales/id/messages.json +5 -1
  229. package/extensions/ublock/_locales/it/messages.json +4 -0
  230. package/extensions/ublock/_locales/ja/messages.json +4 -0
  231. package/extensions/ublock/_locales/ka/messages.json +34 -30
  232. package/extensions/ublock/_locales/kk/messages.json +4 -0
  233. package/extensions/ublock/_locales/kn/messages.json +4 -0
  234. package/extensions/ublock/_locales/ko/messages.json +4 -0
  235. package/extensions/ublock/_locales/ku/messages.json +4 -0
  236. package/extensions/ublock/_locales/lt/messages.json +4 -0
  237. package/extensions/ublock/_locales/lv/messages.json +4 -0
  238. package/extensions/ublock/_locales/mk/messages.json +4 -0
  239. package/extensions/ublock/_locales/ml/messages.json +4 -0
  240. package/extensions/ublock/_locales/mr/messages.json +4 -0
  241. package/extensions/ublock/_locales/ms/messages.json +13 -9
  242. package/extensions/ublock/_locales/nb/messages.json +4 -0
  243. package/extensions/ublock/_locales/nl/messages.json +4 -0
  244. package/extensions/ublock/_locales/no/messages.json +4 -0
  245. package/extensions/ublock/_locales/oc/messages.json +4 -0
  246. package/extensions/ublock/_locales/pa/messages.json +4 -0
  247. package/extensions/ublock/_locales/pl/messages.json +5 -1
  248. package/extensions/ublock/_locales/pt_BR/messages.json +4 -0
  249. package/extensions/ublock/_locales/pt_PT/messages.json +4 -0
  250. package/extensions/ublock/_locales/ro/messages.json +5 -1
  251. package/extensions/ublock/_locales/ru/messages.json +4 -0
  252. package/extensions/ublock/_locales/si/messages.json +4 -0
  253. package/extensions/ublock/_locales/sk/messages.json +4 -0
  254. package/extensions/ublock/_locales/sl/messages.json +4 -0
  255. package/extensions/ublock/_locales/so/messages.json +4 -0
  256. package/extensions/ublock/_locales/sq/messages.json +4 -0
  257. package/extensions/ublock/_locales/sr/messages.json +4 -0
  258. package/extensions/ublock/_locales/sv/messages.json +4 -0
  259. package/extensions/ublock/_locales/sw/messages.json +4 -0
  260. package/extensions/ublock/_locales/ta/messages.json +4 -0
  261. package/extensions/ublock/_locales/te/messages.json +4 -0
  262. package/extensions/ublock/_locales/th/messages.json +12 -8
  263. package/extensions/ublock/_locales/tr/messages.json +4 -0
  264. package/extensions/ublock/_locales/uk/messages.json +4 -0
  265. package/extensions/ublock/_locales/ur/messages.json +4 -0
  266. package/extensions/ublock/_locales/vi/messages.json +4 -0
  267. package/extensions/ublock/_locales/zh_CN/messages.json +6 -2
  268. package/extensions/ublock/_locales/zh_TW/messages.json +6 -2
  269. package/extensions/ublock/assets/assets.json +11 -11
  270. package/extensions/ublock/assets/resources/scriptlets.js +660 -378
  271. package/extensions/ublock/assets/thirdparties/easylist/easylist.txt +7173 -3455
  272. package/extensions/ublock/assets/thirdparties/easylist/easyprivacy.txt +18829 -1918
  273. package/extensions/ublock/assets/thirdparties/pgl.yoyo.org/as/serverlist +21 -26
  274. package/extensions/ublock/assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat +118 -46
  275. package/extensions/ublock/assets/thirdparties/urlhaus-filter/urlhaus-filter-online.txt +710 -1117
  276. package/extensions/ublock/assets/ublock/badlists.txt +0 -4
  277. package/extensions/ublock/assets/ublock/badware.min.txt +116 -105
  278. package/extensions/ublock/assets/ublock/filters.min.txt +1443 -1097
  279. package/extensions/ublock/assets/ublock/privacy.min.txt +50 -31
  280. package/extensions/ublock/assets/ublock/quick-fixes.min.txt +97 -108
  281. package/extensions/ublock/assets/ublock/unbreak.min.txt +64 -21
  282. package/extensions/ublock/css/1p-filters.css +4 -0
  283. package/extensions/ublock/css/3p-filters.css +6 -4
  284. package/extensions/ublock/css/common.css +1 -1
  285. package/extensions/ublock/css/fa-icons.css +1 -0
  286. package/extensions/ublock/css/logger-ui.css +72 -52
  287. package/extensions/ublock/css/popup-fenix.css +1 -1
  288. package/extensions/ublock/img/fontawesome/fontawesome-defs.svg +1 -0
  289. package/extensions/ublock/js/3p-filters.js +3 -3
  290. package/extensions/ublock/js/assets.js +7 -4
  291. package/extensions/ublock/js/background.js +1 -3
  292. package/extensions/ublock/js/benchmarks.js +1 -0
  293. package/extensions/ublock/js/broadcast.js +12 -0
  294. package/extensions/ublock/js/click2load.js +2 -3
  295. package/extensions/ublock/js/codemirror/ubo-static-filtering.js +1 -0
  296. package/extensions/ublock/js/commands.js +10 -0
  297. package/extensions/ublock/js/contentscript-extra.js +13 -11
  298. package/extensions/ublock/js/contentscript.js +0 -31
  299. package/extensions/ublock/js/contextmenu.js +5 -1
  300. package/extensions/ublock/js/dyna-rules.js +83 -52
  301. package/extensions/ublock/js/fa-icons.js +1 -0
  302. package/extensions/ublock/js/filtering-context.js +0 -2
  303. package/extensions/ublock/js/i18n.js +1 -5
  304. package/extensions/ublock/js/logger-ui.js +71 -38
  305. package/extensions/ublock/js/logger.js +18 -14
  306. package/extensions/ublock/js/messaging.js +17 -5
  307. package/extensions/ublock/js/popup-fenix.js +6 -6
  308. package/extensions/ublock/js/scriptlet-filtering-core.js +14 -12
  309. package/extensions/ublock/js/scriptlet-filtering.js +149 -53
  310. package/extensions/ublock/js/scriptlets/scriptlet-loglevel-1.js +49 -0
  311. package/extensions/ublock/js/scriptlets/scriptlet-loglevel-2.js +49 -0
  312. package/extensions/ublock/js/scriptlets/should-inject-contentscript.js +1 -1
  313. package/extensions/ublock/js/static-dnr-filtering.js +4 -2
  314. package/extensions/ublock/js/static-filtering-parser.js +14 -8
  315. package/extensions/ublock/js/static-net-filtering.js +32 -30
  316. package/extensions/ublock/js/storage.js +18 -4
  317. package/extensions/ublock/js/traffic.js +3 -3
  318. package/extensions/ublock/js/ublock.js +1 -1
  319. package/extensions/ublock/js/vapi-background.js +15 -7
  320. package/extensions/ublock/logger-ui.html +18 -10
  321. package/extensions/ublock/manifest.json +4 -1
  322. package/extensions/ublock/web_accessible_resources/chartbeat.js +3 -0
  323. package/package.json +12 -11
  324. package/scripts/build-function.js +1 -1
  325. package/scripts/build-open-api.js +3 -2
  326. package/scripts/clean.js +6 -1
  327. package/scripts/install-debugger.js +20 -0
  328. package/scripts/install-devtools.js +40 -0
  329. package/src/browserless.ts +11 -9
  330. package/src/browsers/chrome.cdp.ts +10 -0
  331. package/src/browsers/chrome.playwright.ts +10 -0
  332. package/src/browsers/{cdp-chromium.ts → chromium.cdp.ts} +20 -13
  333. package/src/browsers/{playwright-chromium.ts → chromium.playwright.ts} +7 -6
  334. package/src/browsers/{playwright-firefox.ts → firefox.playwright.ts} +5 -5
  335. package/src/browsers/index.ts +160 -23
  336. package/src/browsers/{playwright-webkit.ts → webkit.playwright.ts} +5 -5
  337. package/src/exports.ts +6 -4
  338. package/src/http.ts +21 -0
  339. package/src/router.ts +21 -5
  340. package/src/routes/chrome/http/content.post.ts +14 -0
  341. package/src/routes/chrome/http/download.post.ts +14 -0
  342. package/src/routes/chrome/http/function.post.ts +14 -0
  343. package/src/routes/chrome/http/json-list.get.ts +1 -0
  344. package/src/routes/chrome/http/json-new.put.ts +1 -0
  345. package/src/routes/chrome/http/json-protocol.get.ts +1 -0
  346. package/src/routes/chrome/http/json-version.get.ts +1 -0
  347. package/src/routes/chrome/http/pdf.post.ts +14 -0
  348. package/src/routes/chrome/http/performance.post.ts +14 -0
  349. package/src/routes/chrome/http/scrape.post.ts +14 -0
  350. package/src/routes/chrome/http/screenshot.post.ts +14 -0
  351. package/src/routes/chrome/tests/content.spec.ts +375 -0
  352. package/src/routes/chrome/tests/download.spec.ts +77 -0
  353. package/src/routes/chrome/tests/function.spec.ts +282 -0
  354. package/src/routes/chrome/tests/json-version.spec.ts +52 -0
  355. package/src/routes/chrome/tests/page-websocket.spec.ts +129 -0
  356. package/src/routes/chrome/tests/pdf.spec.ts +380 -0
  357. package/src/routes/chrome/tests/performance.spec.ts +155 -0
  358. package/src/routes/chrome/tests/scrape.spec.ts +417 -0
  359. package/src/routes/chrome/tests/screenshot.spec.ts +387 -0
  360. package/src/routes/chrome/tests/websocket.spec.ts +491 -0
  361. package/src/routes/chrome/ws/browser.ts +8 -0
  362. package/src/routes/chrome/ws/cdp.ts +12 -0
  363. package/src/routes/chrome/ws/page.ts +8 -0
  364. package/src/routes/chrome/ws/playwright.ts +12 -0
  365. package/src/routes/chromium/http/content.post.ts +6 -0
  366. package/src/routes/chromium/http/download.post.ts +6 -0
  367. package/src/routes/chromium/http/function.post.ts +6 -0
  368. package/src/routes/chromium/http/json-list.get.ts +1 -0
  369. package/src/routes/chromium/http/json-new.put.ts +1 -0
  370. package/src/routes/chromium/http/json-protocol.get.ts +1 -0
  371. package/src/routes/chromium/http/json-version.get.ts +1 -0
  372. package/src/routes/chromium/http/pdf.post.ts +6 -0
  373. package/src/routes/chromium/http/performance.post.ts +6 -0
  374. package/src/routes/chromium/http/scrape.post.ts +6 -0
  375. package/src/routes/chromium/http/screenshot.post.ts +6 -0
  376. package/src/routes/chromium/tests/content.spec.ts +36 -28
  377. package/src/routes/chromium/tests/download.spec.ts +3 -3
  378. package/src/routes/chromium/tests/function.spec.ts +18 -15
  379. package/src/routes/chromium/tests/page-websocket.spec.ts +129 -0
  380. package/src/routes/chromium/tests/pdf.spec.ts +31 -26
  381. package/src/routes/chromium/tests/performance.spec.ts +46 -34
  382. package/src/routes/chromium/tests/scrape.spec.ts +23 -20
  383. package/src/routes/chromium/tests/screenshot.spec.ts +24 -24
  384. package/src/routes/chromium/tests/websocket.spec.ts +31 -40
  385. package/src/routes/chromium/ws/browser.ts +1 -29
  386. package/src/routes/chromium/ws/cdp.ts +1 -0
  387. package/src/routes/chromium/ws/page.ts +1 -29
  388. package/src/routes/chromium/ws/playwright.ts +4 -0
  389. package/src/routes/firefox/ws/{playwright-firefox.ts → playwright.ts} +5 -5
  390. package/src/routes/management/http/{static-get.ts → static.get.ts} +2 -2
  391. package/src/routes/webkit/ws/{playwright-webkit.ts → playwright.ts} +5 -5
  392. package/src/shared/browser.ws.ts +34 -0
  393. package/src/{routes/chromium/ws/playwright-chromium.ts → shared/chromium.playwright.ws.ts} +7 -4
  394. package/src/{routes/chromium/ws/cdp-chromium.ts → shared/chromium.ws.ts} +6 -6
  395. package/src/{routes/chromium/http/content-post.ts → shared/content.http.ts} +4 -4
  396. package/src/{routes/chromium/http/download-post.ts → shared/download.http.ts} +4 -4
  397. package/src/{routes/chromium/http/function-post.ts → shared/function.http.ts} +4 -4
  398. package/src/shared/json-list.http.ts +35 -0
  399. package/src/{routes/chromium/http/json-new.ts → shared/json-new.http.ts} +23 -7
  400. package/src/{routes/chromium/http/json-protocol-get.ts → shared/json-protocol.http.ts} +3 -5
  401. package/src/{routes/chromium/http/json-version-get.ts → shared/json-version.http.ts} +4 -5
  402. package/src/shared/page.ws.ts +35 -0
  403. package/src/{routes/chromium/http/pdf-post.ts → shared/pdf.http.ts} +4 -4
  404. package/src/{routes/chromium/http/performance.ts → shared/performance.http.ts} +4 -4
  405. package/src/{routes/chromium/http/scrape-post.ts → shared/scrape.http.ts} +4 -4
  406. package/src/{routes/chromium/http/screenshot-post.ts → shared/screenshot.http.ts} +4 -4
  407. package/src/{routes/chromium → shared}/utils/function/handler.ts +2 -2
  408. package/src/{routes/chromium → shared}/utils/performance/main.ts +1 -2
  409. package/src/shim.ts +2 -1
  410. package/src/types.ts +27 -20
  411. package/src/utils.ts +32 -14
  412. package/static/devtools/Images/accelerometer-back.svg +1 -0
  413. package/static/devtools/Images/accelerometer-bottom.png +0 -0
  414. package/static/devtools/Images/accelerometer-front.svg +1 -0
  415. package/static/devtools/Images/accelerometer-left.png +0 -0
  416. package/static/devtools/Images/accelerometer-right.png +0 -0
  417. package/static/devtools/Images/accelerometer-top.png +0 -0
  418. package/static/devtools/Images/baseline-icon.svg +1 -0
  419. package/static/devtools/Images/breaking_change_icon.svg +1 -0
  420. package/static/devtools/Images/checkboxCheckmark.svg +1 -0
  421. package/static/devtools/Images/checker.png +0 -0
  422. package/static/devtools/Images/chevrons.svg +1 -0
  423. package/static/devtools/Images/chromeDisabledSelect.png +0 -0
  424. package/static/devtools/Images/chromeDisabledSelect_2x.png +0 -0
  425. package/static/devtools/Images/chromeLeft.avif +0 -0
  426. package/static/devtools/Images/chromeMiddle.avif +0 -0
  427. package/static/devtools/Images/chromeRight.avif +0 -0
  428. package/static/devtools/Images/chromeSelect.svg +1 -0
  429. package/static/devtools/Images/chromeSelectDark.svg +1 -0
  430. package/static/devtools/Images/cssoverview_icons_2x.avif +0 -0
  431. package/static/devtools/Images/dropdown_7x6_icon.svg +1 -0
  432. package/static/devtools/Images/elements_panel_icon.svg +1 -0
  433. package/static/devtools/Images/errorWave.svg +1 -0
  434. package/static/devtools/Images/error_icon.svg +1 -0
  435. package/static/devtools/Images/feedback_thin_16x16_icon.svg +1 -0
  436. package/static/devtools/Images/flex-align-content-center-icon.svg +1 -0
  437. package/static/devtools/Images/flex-align-content-end-icon.svg +1 -0
  438. package/static/devtools/Images/flex-align-content-space-around-icon.svg +1 -0
  439. package/static/devtools/Images/flex-align-content-space-between-icon.svg +1 -0
  440. package/static/devtools/Images/flex-align-content-space-evenly-icon.svg +1 -0
  441. package/static/devtools/Images/flex-align-content-start-icon.svg +1 -0
  442. package/static/devtools/Images/flex-align-content-stretch-icon.svg +1 -0
  443. package/static/devtools/Images/flex-align-items-center-icon.svg +1 -0
  444. package/static/devtools/Images/flex-align-items-flex-end-icon.svg +1 -0
  445. package/static/devtools/Images/flex-align-items-flex-start-icon.svg +1 -0
  446. package/static/devtools/Images/flex-align-items-stretch-icon.svg +1 -0
  447. package/static/devtools/Images/flex-align-self-center-icon.svg +1 -0
  448. package/static/devtools/Images/flex-align-self-flex-end-icon.svg +1 -0
  449. package/static/devtools/Images/flex-align-self-flex-start-icon.svg +1 -0
  450. package/static/devtools/Images/flex-align-self-stretch-icon.svg +1 -0
  451. package/static/devtools/Images/flex-direction-icon.svg +1 -0
  452. package/static/devtools/Images/flex-justify-content-center-icon.svg +1 -0
  453. package/static/devtools/Images/flex-justify-content-flex-end-icon.svg +1 -0
  454. package/static/devtools/Images/flex-justify-content-flex-start-icon.svg +1 -0
  455. package/static/devtools/Images/flex-justify-content-space-around-icon.svg +1 -0
  456. package/static/devtools/Images/flex-justify-content-space-between-icon.svg +1 -0
  457. package/static/devtools/Images/flex-justify-content-space-evenly-icon.svg +1 -0
  458. package/static/devtools/Images/ic_checkmark_16x16.svg +3 -0
  459. package/static/devtools/Images/ic_delete_filter.svg +1 -0
  460. package/static/devtools/Images/ic_delete_list.svg +1 -0
  461. package/static/devtools/Images/ic_info_black_18dp.svg +1 -0
  462. package/static/devtools/Images/ic_page_next_16x16_icon.svg +1 -0
  463. package/static/devtools/Images/ic_page_prev_16x16_icon.svg +1 -0
  464. package/static/devtools/Images/ic_redo_16x16_icon.svg +1 -0
  465. package/static/devtools/Images/ic_show_node_16x16.svg +4 -0
  466. package/static/devtools/Images/ic_suggest_color.svg +6 -0
  467. package/static/devtools/Images/ic_undo_16x16_icon.svg +1 -0
  468. package/static/devtools/Images/ic_warning_black_18dp.svg +1 -0
  469. package/static/devtools/Images/issue-text-icon.svg +1 -0
  470. package/static/devtools/Images/largeIcons.svg +1 -0
  471. package/static/devtools/Images/lighthouse_logo.svg +1 -0
  472. package/static/devtools/Images/link_icon.svg +1 -0
  473. package/static/devtools/Images/mediumIcons.svg +1 -0
  474. package/static/devtools/Images/navigationControls.png +0 -0
  475. package/static/devtools/Images/navigationControls_2x.png +0 -0
  476. package/static/devtools/Images/network_panel_icon.svg +1 -0
  477. package/static/devtools/Images/nodeIcon.avif +0 -0
  478. package/static/devtools/Images/node_search_icon.svg +1 -0
  479. package/static/devtools/Images/popoverArrows.png +0 -0
  480. package/static/devtools/Images/profileGroupIcon.png +0 -0
  481. package/static/devtools/Images/profileIcon.png +0 -0
  482. package/static/devtools/Images/profileSmallIcon.png +0 -0
  483. package/static/devtools/Images/radioDot-dark-theme.png +0 -0
  484. package/static/devtools/Images/radioDot.png +0 -0
  485. package/static/devtools/Images/refresh_12x12_icon.svg +1 -0
  486. package/static/devtools/Images/resizeDiagonal.svg +1 -0
  487. package/static/devtools/Images/resizeHorizontal.svg +1 -0
  488. package/static/devtools/Images/resizeVertical.svg +1 -0
  489. package/static/devtools/Images/resourceCSSIcon.png +0 -0
  490. package/static/devtools/Images/resourceDocumentIcon.png +0 -0
  491. package/static/devtools/Images/resourceDocumentIconSmall.png +0 -0
  492. package/static/devtools/Images/resourceJSIcon.png +0 -0
  493. package/static/devtools/Images/resourcePlainIcon.png +0 -0
  494. package/static/devtools/Images/resourcePlainIconSmall.png +0 -0
  495. package/static/devtools/Images/resourcesTimeGraphIcon.avif +0 -0
  496. package/static/devtools/Images/searchNext.png +0 -0
  497. package/static/devtools/Images/searchPrev.png +0 -0
  498. package/static/devtools/Images/securityIcons.svg +1 -0
  499. package/static/devtools/Images/settings_14x14_icon.svg +1 -0
  500. package/static/devtools/Images/smallIcons.svg +1 -0
  501. package/static/devtools/Images/sources_panel_icon.svg +1 -0
  502. package/static/devtools/Images/speech.png +0 -0
  503. package/static/devtools/Images/toolbarResizerVertical.png +0 -0
  504. package/static/devtools/Images/touchCursor.png +0 -0
  505. package/static/devtools/Images/touchCursor_2x.png +0 -0
  506. package/static/devtools/Images/treeoutlineTriangles.svg +1 -0
  507. package/static/devtools/Images/warning_icon.svg +1 -0
  508. package/static/devtools/Images/whatsnew.avif +0 -0
  509. package/static/devtools/Tests.js +1654 -0
  510. package/static/devtools/accessibility/accessibility-legacy.js +1 -0
  511. package/static/devtools/accessibility/accessibility-meta.js +1 -0
  512. package/static/devtools/accessibility/accessibility.js +1 -0
  513. package/static/devtools/accessibility/accessibility_module.js +1 -0
  514. package/static/devtools/accessibility_test_runner/accessibility_test_runner.js +77 -0
  515. package/static/devtools/accessibility_test_runner/accessibility_test_runner_module.js +0 -0
  516. package/static/devtools/animation/animation-legacy.js +1 -0
  517. package/static/devtools/animation/animation-meta.js +1 -0
  518. package/static/devtools/animation/animation.js +1 -0
  519. package/static/devtools/animation/animation_module.js +1 -0
  520. package/static/devtools/application_test_runner/AppcacheTestRunner.js +220 -0
  521. package/static/devtools/application_test_runner/CacheStorageTestRunner.js +286 -0
  522. package/static/devtools/application_test_runner/IndexedDBTestRunner.js +476 -0
  523. package/static/devtools/application_test_runner/ResourceTreeTestRunner.js +99 -0
  524. package/static/devtools/application_test_runner/ResourcesTestRunner.js +167 -0
  525. package/static/devtools/application_test_runner/ServiceWorkersTestRunner.js +131 -0
  526. package/static/devtools/application_test_runner/application_test_runner.js +10 -0
  527. package/static/devtools/application_test_runner/application_test_runner_module.js +0 -0
  528. package/static/devtools/axe_core_test_runner/axe_core_test_runner.js +174 -0
  529. package/static/devtools/axe_core_test_runner/axe_core_test_runner_module.js +0 -0
  530. package/static/devtools/bindings/bindings-legacy.js +1 -0
  531. package/static/devtools/bindings/bindings.js +1 -0
  532. package/static/devtools/bindings_test_runner/AutomappingTestRunner.js +130 -0
  533. package/static/devtools/bindings_test_runner/BindingsTestRunner.js +238 -0
  534. package/static/devtools/bindings_test_runner/IsolatedFilesystemTestRunner.js +287 -0
  535. package/static/devtools/bindings_test_runner/OverridesTestRunner.js +26 -0
  536. package/static/devtools/bindings_test_runner/PersistenceTestRunner.js +109 -0
  537. package/static/devtools/bindings_test_runner/bindings_test_runner.js +9 -0
  538. package/static/devtools/bindings_test_runner/bindings_test_runner_module.js +0 -0
  539. package/static/devtools/browser_debugger/browser_debugger-legacy.js +1 -0
  540. package/static/devtools/browser_debugger/browser_debugger-meta.js +1 -0
  541. package/static/devtools/browser_debugger/browser_debugger.js +1 -0
  542. package/static/devtools/browser_debugger/browser_debugger_module.js +1 -0
  543. package/static/devtools/browser_sdk/browser_sdk-meta.js +1 -0
  544. package/static/devtools/browser_sdk/browser_sdk.js +1 -0
  545. package/static/devtools/changes/changes-legacy.js +1 -0
  546. package/static/devtools/changes/changes-meta.js +1 -0
  547. package/static/devtools/changes/changes.js +1 -0
  548. package/static/devtools/changes/changes_module.js +1 -0
  549. package/static/devtools/client_variations/client_variations.js +1 -0
  550. package/static/devtools/client_variations/client_variations_module.js +0 -0
  551. package/static/devtools/cm/cm.js +1 -0
  552. package/static/devtools/cm/cm_module.js +1 -0
  553. package/static/devtools/cm_headless/cm_headless.js +1 -0
  554. package/static/devtools/color_picker/color_picker-legacy.js +1 -0
  555. package/static/devtools/color_picker/color_picker.js +1 -0
  556. package/static/devtools/color_picker/color_picker_module.js +1 -0
  557. package/static/devtools/common/common-legacy.js +1 -0
  558. package/static/devtools/common/common.js +1 -0
  559. package/static/devtools/component_helpers/component_helpers.js +1 -0
  560. package/static/devtools/components/components-legacy.js +1 -0
  561. package/static/devtools/components/components.js +1 -0
  562. package/static/devtools/console/console-legacy.js +1 -0
  563. package/static/devtools/console/console-meta.js +1 -0
  564. package/static/devtools/console/console.js +6 -0
  565. package/static/devtools/console/console_module.js +1 -0
  566. package/static/devtools/console_counters/console_counters-legacy.js +1 -0
  567. package/static/devtools/console_counters/console_counters.js +1 -0
  568. package/static/devtools/console_test_runner/console_test_runner.js +696 -0
  569. package/static/devtools/console_test_runner/console_test_runner_module.js +0 -0
  570. package/static/devtools/cookie_table/cookie_table-legacy.js +1 -0
  571. package/static/devtools/cookie_table/cookie_table.js +1 -0
  572. package/static/devtools/cookie_table/cookie_table_module.js +1 -0
  573. package/static/devtools/coverage/coverage-legacy.js +1 -0
  574. package/static/devtools/coverage/coverage-meta.js +1 -0
  575. package/static/devtools/coverage/coverage.js +1 -0
  576. package/static/devtools/coverage/coverage_module.js +1 -0
  577. package/static/devtools/coverage_test_runner/coverage_test_runner.js +151 -0
  578. package/static/devtools/coverage_test_runner/coverage_test_runner_module.js +0 -0
  579. package/static/devtools/cpu_profiler_test_runner/cpu_profiler_test_runner.js +72 -0
  580. package/static/devtools/cpu_profiler_test_runner/cpu_profiler_test_runner_module.js +0 -0
  581. package/static/devtools/css_overview/css_overview-meta.js +1 -0
  582. package/static/devtools/css_overview/css_overview.js +146 -0
  583. package/static/devtools/css_overview/css_overview_module.js +1 -0
  584. package/static/devtools/data_grid/data_grid-legacy.js +1 -0
  585. package/static/devtools/data_grid/data_grid.js +1 -0
  586. package/static/devtools/data_grid/data_grid_module.js +1 -0
  587. package/static/devtools/data_grid_test_runner/data_grid_test_runner.js +78 -0
  588. package/static/devtools/data_grid_test_runner/data_grid_test_runner_module.js +0 -0
  589. package/static/devtools/developer_resources/developer_resources-legacy.js +1 -0
  590. package/static/devtools/developer_resources/developer_resources-meta.js +1 -0
  591. package/static/devtools/developer_resources/developer_resources.js +1 -0
  592. package/static/devtools/developer_resources/developer_resources_module.js +1 -0
  593. package/static/devtools/device_mode_test_runner/device_mode_test_runner.js +45 -0
  594. package/static/devtools/device_mode_test_runner/device_mode_test_runner_module.js +0 -0
  595. package/static/devtools/devtools_app.html +20 -0
  596. package/static/devtools/devtools_app.js +1 -0
  597. package/static/devtools/devtools_compatibility.js +1546 -0
  598. package/static/devtools/diff/diff-legacy.js +1 -0
  599. package/static/devtools/diff/diff.js +1 -0
  600. package/static/devtools/diff/diff_module.js +0 -0
  601. package/static/devtools/dom_extension/dom_extension.js +1 -0
  602. package/static/devtools/elements/elements-legacy.js +1 -0
  603. package/static/devtools/elements/elements-meta.js +1 -0
  604. package/static/devtools/elements/elements.js +469 -0
  605. package/static/devtools/elements/elements_module.js +1 -0
  606. package/static/devtools/elements_test_runner/EditDOMTestRunner.js +78 -0
  607. package/static/devtools/elements_test_runner/ElementsPanelShadowSelectionOnRefreshTestRunner.js +39 -0
  608. package/static/devtools/elements_test_runner/ElementsTestRunner.js +1280 -0
  609. package/static/devtools/elements_test_runner/SetOuterHTMLTestRunner.js +115 -0
  610. package/static/devtools/elements_test_runner/StylesUpdateLinksTestRunner.js +134 -0
  611. package/static/devtools/elements_test_runner/elements_test_runner.js +9 -0
  612. package/static/devtools/elements_test_runner/elements_test_runner_module.js +0 -0
  613. package/static/devtools/emulated_devices/emulated_devices_module.js +0 -0
  614. package/static/devtools/emulated_devices/optimized/MotoG4-landscape.avif +0 -0
  615. package/static/devtools/emulated_devices/optimized/MotoG4-portrait.avif +0 -0
  616. package/static/devtools/emulated_devices/optimized/Nexus5X-landscape.avif +0 -0
  617. package/static/devtools/emulated_devices/optimized/Nexus5X-portrait.avif +0 -0
  618. package/static/devtools/emulated_devices/optimized/Nexus6P-landscape.avif +0 -0
  619. package/static/devtools/emulated_devices/optimized/Nexus6P-portrait.avif +0 -0
  620. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-default-1x.avif +0 -0
  621. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-default-2x.avif +0 -0
  622. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-1x.avif +0 -0
  623. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-keyboard-2x.avif +0 -0
  624. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-navigation-1x.avif +0 -0
  625. package/static/devtools/emulated_devices/optimized/google-nexus-5-horizontal-navigation-2x.avif +0 -0
  626. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-default-1x.avif +0 -0
  627. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-default-2x.avif +0 -0
  628. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-keyboard-1x.avif +0 -0
  629. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-keyboard-2x.avif +0 -0
  630. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-navigation-1x.avif +0 -0
  631. package/static/devtools/emulated_devices/optimized/google-nexus-5-vertical-navigation-2x.avif +0 -0
  632. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-default-1x.avif +0 -0
  633. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-default-2x.avif +0 -0
  634. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-1x.avif +0 -0
  635. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-keyboard-2x.avif +0 -0
  636. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-1x.avif +0 -0
  637. package/static/devtools/emulated_devices/optimized/google-nexus-5x-horizontal-navigation-2x.avif +0 -0
  638. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-default-1x.avif +0 -0
  639. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-default-2x.avif +0 -0
  640. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-1x.avif +0 -0
  641. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-keyboard-2x.avif +0 -0
  642. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-navigation-1x.avif +0 -0
  643. package/static/devtools/emulated_devices/optimized/google-nexus-5x-vertical-navigation-2x.avif +0 -0
  644. package/static/devtools/emulated_devices/optimized/iPad-landscape.avif +0 -0
  645. package/static/devtools/emulated_devices/optimized/iPad-portrait.avif +0 -0
  646. package/static/devtools/emulated_devices/optimized/iPhone5-landscape.avif +0 -0
  647. package/static/devtools/emulated_devices/optimized/iPhone5-portrait.avif +0 -0
  648. package/static/devtools/emulated_devices/optimized/iPhone6-landscape.avif +0 -0
  649. package/static/devtools/emulated_devices/optimized/iPhone6-portrait.avif +0 -0
  650. package/static/devtools/emulated_devices/optimized/iPhone6Plus-landscape.avif +0 -0
  651. package/static/devtools/emulated_devices/optimized/iPhone6Plus-portrait.avif +0 -0
  652. package/static/devtools/emulation/emulation-legacy.js +1 -0
  653. package/static/devtools/emulation/emulation-meta.js +1 -0
  654. package/static/devtools/emulation/emulation.js +1 -0
  655. package/static/devtools/event_listeners/event_listeners-legacy.js +1 -0
  656. package/static/devtools/event_listeners/event_listeners.js +1 -0
  657. package/static/devtools/event_listeners/event_listeners_module.js +1 -0
  658. package/static/devtools/extensions/extensions-legacy.js +1 -0
  659. package/static/devtools/extensions/extensions.js +1 -0
  660. package/static/devtools/extensions_test_runner/ExtensionsNetworkTestRunner.js +27 -0
  661. package/static/devtools/extensions_test_runner/ExtensionsTestRunner.js +68 -0
  662. package/static/devtools/extensions_test_runner/extensions_test_runner.js +6 -0
  663. package/static/devtools/extensions_test_runner/extensions_test_runner_module.js +0 -0
  664. package/static/devtools/formatter/formatter-legacy.js +1 -0
  665. package/static/devtools/formatter/formatter.js +1 -0
  666. package/static/devtools/formatter/formatter_module.js +0 -0
  667. package/static/devtools/formatter_worker/FormatterActions.js +1 -0
  668. package/static/devtools/formatter_worker/formatter_worker-entrypoint.js +1 -0
  669. package/static/devtools/formatter_worker/formatter_worker.js +1 -0
  670. package/static/devtools/har_importer/har_importer-legacy.js +1 -0
  671. package/static/devtools/har_importer/har_importer.js +1 -0
  672. package/static/devtools/har_importer/har_importer_module.js +0 -0
  673. package/static/devtools/heap_profiler_test_runner/heap_profiler_test_runner.js +740 -0
  674. package/static/devtools/heap_profiler_test_runner/heap_profiler_test_runner_module.js +0 -0
  675. package/static/devtools/heap_snapshot_model/heap_snapshot_model-legacy.js +1 -0
  676. package/static/devtools/heap_snapshot_model/heap_snapshot_model.js +1 -0
  677. package/static/devtools/heap_snapshot_model/heap_snapshot_model_module.js +0 -0
  678. package/static/devtools/heap_snapshot_worker/heap_snapshot_worker-entrypoint.js +1 -0
  679. package/static/devtools/heap_snapshot_worker/heap_snapshot_worker-legacy.js +1 -0
  680. package/static/devtools/heap_snapshot_worker/heap_snapshot_worker.js +1 -0
  681. package/static/devtools/heap_snapshot_worker/heap_snapshot_worker_module.js +0 -0
  682. package/static/devtools/help/help-legacy.js +1 -0
  683. package/static/devtools/help/help-meta.js +1 -0
  684. package/static/devtools/help/help.js +1 -0
  685. package/static/devtools/help/help_module.js +1 -0
  686. package/static/devtools/host/host-legacy.js +1 -0
  687. package/static/devtools/host/host.js +1 -0
  688. package/static/devtools/i18n/i18n.js +1 -0
  689. package/static/devtools/i18n/i18n_locales-tsconfig.json +8 -0
  690. package/static/devtools/i18n/locales/en-US.json +3566 -0
  691. package/static/devtools/inline_editor/inline_editor-legacy.js +1 -0
  692. package/static/devtools/inline_editor/inline_editor.js +203 -0
  693. package/static/devtools/inline_editor/inline_editor_module.js +1 -0
  694. package/static/devtools/input/input-legacy.js +1 -0
  695. package/static/devtools/input/input-meta.js +1 -0
  696. package/static/devtools/input/input.js +1 -0
  697. package/static/devtools/input/input_module.js +1 -0
  698. package/static/devtools/inspector.html +20 -0
  699. package/static/devtools/inspector.js +1 -0
  700. package/static/devtools/inspector_main/inspector_main-legacy.js +1 -0
  701. package/static/devtools/inspector_main/inspector_main-meta.js +1 -0
  702. package/static/devtools/inspector_main/inspector_main.js +1 -0
  703. package/static/devtools/integration_test_runner.html +14 -0
  704. package/static/devtools/integration_test_runner.js +2 -0
  705. package/static/devtools/issues/issues-legacy.js +1 -0
  706. package/static/devtools/issues/issues-meta.js +1 -0
  707. package/static/devtools/issues/issues.js +67 -0
  708. package/static/devtools/issues/issues_module.js +1 -0
  709. package/static/devtools/javascript_metadata/javascript_metadata-legacy.js +1 -0
  710. package/static/devtools/javascript_metadata/javascript_metadata.js +1 -0
  711. package/static/devtools/javascript_metadata/javascript_metadata_module.js +0 -0
  712. package/static/devtools/js_app.html +20 -0
  713. package/static/devtools/js_app.js +1 -0
  714. package/static/devtools/js_main/js_main-legacy.js +1 -0
  715. package/static/devtools/js_main/js_main.js +1 -0
  716. package/static/devtools/js_profiler/js_profiler-meta.js +1 -0
  717. package/static/devtools/js_profiler/js_profiler.js +1 -0
  718. package/static/devtools/js_profiler/js_profiler_module.js +0 -0
  719. package/static/devtools/layer_viewer/layer_viewer-legacy.js +1 -0
  720. package/static/devtools/layer_viewer/layer_viewer.js +1 -0
  721. package/static/devtools/layer_viewer/layer_viewer_module.js +1 -0
  722. package/static/devtools/layers/layers-legacy.js +1 -0
  723. package/static/devtools/layers/layers-meta.js +1 -0
  724. package/static/devtools/layers/layers.js +1 -0
  725. package/static/devtools/layers/layers_module.js +0 -0
  726. package/static/devtools/layers_test_runner/layers_test_runner.js +156 -0
  727. package/static/devtools/layers_test_runner/layers_test_runner_module.js +0 -0
  728. package/static/devtools/lighthouse/lighthouse-legacy.js +1 -0
  729. package/static/devtools/lighthouse/lighthouse-meta.js +1 -0
  730. package/static/devtools/lighthouse/lighthouse.js +70 -0
  731. package/static/devtools/lighthouse/lighthouse_module.js +1 -0
  732. package/static/devtools/lighthouse_test_runner/lighthouse_test_runner.js +136 -0
  733. package/static/devtools/lighthouse_test_runner/lighthouse_test_runner_module.js +0 -0
  734. package/static/devtools/lighthouse_worker/LighthouseService.js +195 -0
  735. package/static/devtools/lighthouse_worker/lighthouse_worker.js +6 -0
  736. package/static/devtools/lighthouse_worker.js +1 -0
  737. package/static/devtools/linear_memory_inspector/linear_memory_inspector-legacy.js +1 -0
  738. package/static/devtools/linear_memory_inspector/linear_memory_inspector-meta.js +1 -0
  739. package/static/devtools/linear_memory_inspector/linear_memory_inspector.js +399 -0
  740. package/static/devtools/linear_memory_inspector/linear_memory_inspector_module.js +0 -0
  741. package/static/devtools/main/main-legacy.js +1 -0
  742. package/static/devtools/main/main.js +1 -0
  743. package/static/devtools/media/media-legacy.js +1 -0
  744. package/static/devtools/media/media-meta.js +1 -0
  745. package/static/devtools/media/media.js +1 -0
  746. package/static/devtools/media/media_module.js +1 -0
  747. package/static/devtools/mobile_throttling/mobile_throttling-legacy.js +1 -0
  748. package/static/devtools/mobile_throttling/mobile_throttling-meta.js +1 -0
  749. package/static/devtools/mobile_throttling/mobile_throttling.js +1 -0
  750. package/static/devtools/ndb_app.html +20 -0
  751. package/static/devtools/ndb_app.js +1 -0
  752. package/static/devtools/network/network-legacy.js +1 -0
  753. package/static/devtools/network/network-meta.js +1 -0
  754. package/static/devtools/network/network.js +72 -0
  755. package/static/devtools/network/network_module.js +1 -0
  756. package/static/devtools/network_test_runner/network_test_runner.js +280 -0
  757. package/static/devtools/network_test_runner/network_test_runner_module.js +0 -0
  758. package/static/devtools/node_app.html +20 -0
  759. package/static/devtools/node_app.js +1 -0
  760. package/static/devtools/node_debugger/node_debugger-meta.js +1 -0
  761. package/static/devtools/node_debugger/node_debugger.js +1 -0
  762. package/static/devtools/node_debugger/node_debugger_module.js +0 -0
  763. package/static/devtools/node_main/node_main-legacy.js +1 -0
  764. package/static/devtools/node_main/node_main-meta.js +1 -0
  765. package/static/devtools/node_main/node_main.js +1 -0
  766. package/static/devtools/object_ui/object_ui-legacy.js +1 -0
  767. package/static/devtools/object_ui/object_ui.js +3 -0
  768. package/static/devtools/object_ui/object_ui_module.js +1 -0
  769. package/static/devtools/perf_ui/perf_ui-legacy.js +1 -0
  770. package/static/devtools/perf_ui/perf_ui.js +152 -0
  771. package/static/devtools/perf_ui/perf_ui_module.js +1 -0
  772. package/static/devtools/performance_monitor/performance_monitor-legacy.js +1 -0
  773. package/static/devtools/performance_monitor/performance_monitor-meta.js +1 -0
  774. package/static/devtools/performance_monitor/performance_monitor.js +1 -0
  775. package/static/devtools/performance_monitor/performance_monitor_module.js +1 -0
  776. package/static/devtools/performance_test_runner/TimelineDataTestRunner.js +5375 -0
  777. package/static/devtools/performance_test_runner/TimelineTestRunner.js +446 -0
  778. package/static/devtools/performance_test_runner/performance_test_runner.js +6 -0
  779. package/static/devtools/performance_test_runner/performance_test_runner_module.js +0 -0
  780. package/static/devtools/persistence/persistence-legacy.js +1 -0
  781. package/static/devtools/persistence/persistence-meta.js +1 -0
  782. package/static/devtools/persistence/persistence.js +1 -0
  783. package/static/devtools/platform/platform.js +1 -0
  784. package/static/devtools/profiler/profiler-legacy.js +1 -0
  785. package/static/devtools/profiler/profiler-meta.js +1 -0
  786. package/static/devtools/profiler/profiler.js +8 -0
  787. package/static/devtools/profiler/profiler_module.js +1 -0
  788. package/static/devtools/protocol_client/protocol_client-legacy.js +1 -0
  789. package/static/devtools/protocol_client/protocol_client.js +1 -0
  790. package/static/devtools/protocol_monitor/protocol_monitor-legacy.js +1 -0
  791. package/static/devtools/protocol_monitor/protocol_monitor-meta.js +1 -0
  792. package/static/devtools/protocol_monitor/protocol_monitor.js +1 -0
  793. package/static/devtools/protocol_monitor/protocol_monitor_module.js +1 -0
  794. package/static/devtools/quick_open/quick_open-legacy.js +1 -0
  795. package/static/devtools/quick_open/quick_open.js +1 -0
  796. package/static/devtools/quick_open/quick_open_module.js +1 -0
  797. package/static/devtools/recorder/recorder.js +1 -0
  798. package/static/devtools/resources/resources-legacy.js +1 -0
  799. package/static/devtools/resources/resources-meta.js +1 -0
  800. package/static/devtools/resources/resources.js +28 -0
  801. package/static/devtools/resources/resources_module.js +1 -0
  802. package/static/devtools/root/root-legacy.js +1 -0
  803. package/static/devtools/root/root.js +1 -0
  804. package/static/devtools/screencast/screencast-legacy.js +1 -0
  805. package/static/devtools/screencast/screencast.js +1 -0
  806. package/static/devtools/sdk/sdk-legacy.js +1 -0
  807. package/static/devtools/sdk/sdk.js +2 -0
  808. package/static/devtools/sdk_test_runner/sdk_test_runner.js +297 -0
  809. package/static/devtools/sdk_test_runner/sdk_test_runner_module.js +0 -0
  810. package/static/devtools/search/search-legacy.js +1 -0
  811. package/static/devtools/search/search.js +1 -0
  812. package/static/devtools/search/search_module.js +1 -0
  813. package/static/devtools/security/security-legacy.js +1 -0
  814. package/static/devtools/security/security-meta.js +1 -0
  815. package/static/devtools/security/security.js +1 -0
  816. package/static/devtools/security/security_module.js +1 -0
  817. package/static/devtools/security_test_runner/security_test_runner.js +32 -0
  818. package/static/devtools/security_test_runner/security_test_runner_module.js +0 -0
  819. package/static/devtools/services/services-legacy.js +1 -0
  820. package/static/devtools/services/services.js +1 -0
  821. package/static/devtools/settings/settings-legacy.js +1 -0
  822. package/static/devtools/settings/settings-meta.js +1 -0
  823. package/static/devtools/settings/settings.js +1 -0
  824. package/static/devtools/settings/settings_module.js +1 -0
  825. package/static/devtools/shell.js +1 -0
  826. package/static/devtools/snippets/snippets-legacy.js +1 -0
  827. package/static/devtools/snippets/snippets.js +1 -0
  828. package/static/devtools/snippets/snippets_module.js +0 -0
  829. package/static/devtools/source_frame/source_frame-legacy.js +1 -0
  830. package/static/devtools/source_frame/source_frame.js +1 -0
  831. package/static/devtools/source_frame/source_frame_module.js +1 -0
  832. package/static/devtools/sources/sources-legacy.js +1 -0
  833. package/static/devtools/sources/sources-meta.js +1 -0
  834. package/static/devtools/sources/sources.js +13 -0
  835. package/static/devtools/sources/sources_module.js +1 -0
  836. package/static/devtools/sources_test_runner/AutocompleteTestRunner.js +46 -0
  837. package/static/devtools/sources_test_runner/DebuggerTestRunner.js +895 -0
  838. package/static/devtools/sources_test_runner/EditorTestRunner.js +237 -0
  839. package/static/devtools/sources_test_runner/LiveEditTestRunner.js +33 -0
  840. package/static/devtools/sources_test_runner/SearchTestRunner.js +158 -0
  841. package/static/devtools/sources_test_runner/SourcesTestRunner.js +173 -0
  842. package/static/devtools/sources_test_runner/sources_test_runner.js +10 -0
  843. package/static/devtools/sources_test_runner/sources_test_runner_module.js +0 -0
  844. package/static/devtools/startup/startup.js +1 -0
  845. package/static/devtools/test_runner/test_runner.js +1 -0
  846. package/static/devtools/text_editor/text_editor-legacy.js +1 -0
  847. package/static/devtools/text_editor/text_editor.js +1 -0
  848. package/static/devtools/text_editor/text_editor_module.js +1 -0
  849. package/static/devtools/text_utils/text_utils-legacy.js +1 -0
  850. package/static/devtools/text_utils/text_utils.js +1 -0
  851. package/static/devtools/theme_support/theme_support.js +1 -0
  852. package/static/devtools/third_party/acorn/acorn-tsconfig.json +8 -0
  853. package/static/devtools/third_party/acorn/acorn.js +1 -0
  854. package/static/devtools/third_party/acorn/package/dist/acorn.d.ts +209 -0
  855. package/static/devtools/third_party/acorn/package/dist/acorn.mjs +5261 -0
  856. package/static/devtools/third_party/acorn/package/dist/acorn.mjs.d.ts +2 -0
  857. package/static/devtools/third_party/acorn/package/dist/acorn.mjs.map +1 -0
  858. package/static/devtools/third_party/acorn-loose/acorn-loose-tsconfig.json +8 -0
  859. package/static/devtools/third_party/acorn-loose/package/dist/acorn-loose.d.ts +16 -0
  860. package/static/devtools/third_party/acorn-loose/package/dist/acorn-loose.mjs +1418 -0
  861. package/static/devtools/third_party/axe-core/axe.js +16423 -0
  862. package/static/devtools/third_party/chromium/chromium-tsconfig.json +8 -0
  863. package/static/devtools/third_party/chromium/client-variations/ClientVariations.d.ts +13 -0
  864. package/static/devtools/third_party/chromium/client-variations/ClientVariations.js +27 -0
  865. package/static/devtools/third_party/codemirror/codemirror-tsconfig.json +72 -0
  866. package/static/devtools/third_party/codemirror/package/addon/comment/comment.d.ts +4 -0
  867. package/static/devtools/third_party/codemirror/package/addon/comment/comment.js +211 -0
  868. package/static/devtools/third_party/codemirror/package/addon/edit/closebrackets.d.ts +1 -0
  869. package/static/devtools/third_party/codemirror/package/addon/edit/closebrackets.js +201 -0
  870. package/static/devtools/third_party/codemirror/package/addon/edit/matchbrackets.d.ts +1 -0
  871. package/static/devtools/third_party/codemirror/package/addon/edit/matchbrackets.js +158 -0
  872. package/static/devtools/third_party/codemirror/package/addon/fold/brace-fold.d.ts +1 -0
  873. package/static/devtools/third_party/codemirror/package/addon/fold/brace-fold.js +105 -0
  874. package/static/devtools/third_party/codemirror/package/addon/fold/foldcode.d.ts +1 -0
  875. package/static/devtools/third_party/codemirror/package/addon/fold/foldcode.js +157 -0
  876. package/static/devtools/third_party/codemirror/package/addon/fold/foldgutter.d.ts +1 -0
  877. package/static/devtools/third_party/codemirror/package/addon/fold/foldgutter.js +163 -0
  878. package/static/devtools/third_party/codemirror/package/addon/mode/multiplex.d.ts +1 -0
  879. package/static/devtools/third_party/codemirror/package/addon/mode/multiplex.js +131 -0
  880. package/static/devtools/third_party/codemirror/package/addon/mode/overlay.d.ts +1 -0
  881. package/static/devtools/third_party/codemirror/package/addon/mode/overlay.js +90 -0
  882. package/static/devtools/third_party/codemirror/package/addon/mode/simple.d.ts +1 -0
  883. package/static/devtools/third_party/codemirror/package/addon/mode/simple.js +216 -0
  884. package/static/devtools/third_party/codemirror/package/addon/runmode/runmode-standalone.d.ts +1 -0
  885. package/static/devtools/third_party/codemirror/package/addon/runmode/runmode-standalone.js +333 -0
  886. package/static/devtools/third_party/codemirror/package/addon/selection/active-line.d.ts +1 -0
  887. package/static/devtools/third_party/codemirror/package/addon/selection/active-line.js +72 -0
  888. package/static/devtools/third_party/codemirror/package/addon/selection/mark-selection.d.ts +1 -0
  889. package/static/devtools/third_party/codemirror/package/addon/selection/mark-selection.js +119 -0
  890. package/static/devtools/third_party/codemirror/package/lib/codemirror.d.ts +1 -0
  891. package/static/devtools/third_party/codemirror/package/lib/codemirror.js +9800 -0
  892. package/static/devtools/third_party/codemirror/package/mode/clike/clike.d.ts +4 -0
  893. package/static/devtools/third_party/codemirror/package/mode/clike/clike.js +935 -0
  894. package/static/devtools/third_party/codemirror/package/mode/clojure/clojure.d.ts +4 -0
  895. package/static/devtools/third_party/codemirror/package/mode/clojure/clojure.js +292 -0
  896. package/static/devtools/third_party/codemirror/package/mode/coffeescript/coffeescript.d.ts +4 -0
  897. package/static/devtools/third_party/codemirror/package/mode/coffeescript/coffeescript.js +359 -0
  898. package/static/devtools/third_party/codemirror/package/mode/css/css.d.ts +1 -0
  899. package/static/devtools/third_party/codemirror/package/mode/css/css.js +864 -0
  900. package/static/devtools/third_party/codemirror/package/mode/htmlembedded/htmlembedded.d.ts +1 -0
  901. package/static/devtools/third_party/codemirror/package/mode/htmlembedded/htmlembedded.js +37 -0
  902. package/static/devtools/third_party/codemirror/package/mode/htmlmixed/htmlmixed.d.ts +1 -0
  903. package/static/devtools/third_party/codemirror/package/mode/htmlmixed/htmlmixed.js +153 -0
  904. package/static/devtools/third_party/codemirror/package/mode/javascript/javascript.d.ts +1 -0
  905. package/static/devtools/third_party/codemirror/package/mode/javascript/javascript.js +942 -0
  906. package/static/devtools/third_party/codemirror/package/mode/jsx/jsx.d.ts +4 -0
  907. package/static/devtools/third_party/codemirror/package/mode/jsx/jsx.js +148 -0
  908. package/static/devtools/third_party/codemirror/package/mode/livescript/livescript.d.ts +4 -0
  909. package/static/devtools/third_party/codemirror/package/mode/livescript/livescript.js +280 -0
  910. package/static/devtools/third_party/codemirror/package/mode/markdown/markdown.d.ts +1 -0
  911. package/static/devtools/third_party/codemirror/package/mode/markdown/markdown.js +886 -0
  912. package/static/devtools/third_party/codemirror/package/mode/php/php.d.ts +1 -0
  913. package/static/devtools/third_party/codemirror/package/mode/php/php.js +234 -0
  914. package/static/devtools/third_party/codemirror/package/mode/python/python.d.ts +1 -0
  915. package/static/devtools/third_party/codemirror/package/mode/python/python.js +399 -0
  916. package/static/devtools/third_party/codemirror/package/mode/shell/shell.d.ts +1 -0
  917. package/static/devtools/third_party/codemirror/package/mode/shell/shell.js +168 -0
  918. package/static/devtools/third_party/codemirror/package/mode/wast/wast.d.ts +1 -0
  919. package/static/devtools/third_party/codemirror/package/mode/wast/wast.js +41 -0
  920. package/static/devtools/third_party/codemirror/package/mode/xml/xml.d.ts +1 -0
  921. package/static/devtools/third_party/codemirror/package/mode/xml/xml.js +413 -0
  922. package/static/devtools/third_party/i18n/bundle-tsconfig.json +8 -0
  923. package/static/devtools/third_party/i18n/i18n.d.ts +108 -0
  924. package/static/devtools/third_party/i18n/i18n.js +4336 -0
  925. package/static/devtools/third_party/lighthouse/lighthouse-dt-bundle.d.ts +1 -0
  926. package/static/devtools/third_party/lighthouse/lighthouse-dt-bundle.js +1140 -0
  927. package/static/devtools/third_party/lighthouse/lighthouse-tsconfig.json +10 -0
  928. package/static/devtools/third_party/lighthouse/locales/ar-XB.json +2066 -0
  929. package/static/devtools/third_party/lighthouse/locales/ar.json +2066 -0
  930. package/static/devtools/third_party/lighthouse/locales/bg.json +2066 -0
  931. package/static/devtools/third_party/lighthouse/locales/ca.json +2066 -0
  932. package/static/devtools/third_party/lighthouse/locales/cs.json +2066 -0
  933. package/static/devtools/third_party/lighthouse/locales/da.json +2066 -0
  934. package/static/devtools/third_party/lighthouse/locales/de.json +2066 -0
  935. package/static/devtools/third_party/lighthouse/locales/el.json +2066 -0
  936. package/static/devtools/third_party/lighthouse/locales/en-GB.json +2066 -0
  937. package/static/devtools/third_party/lighthouse/locales/en-US.json +2297 -0
  938. package/static/devtools/third_party/lighthouse/locales/en-XA.json +2066 -0
  939. package/static/devtools/third_party/lighthouse/locales/en-XL.json +2297 -0
  940. package/static/devtools/third_party/lighthouse/locales/es-419.json +2066 -0
  941. package/static/devtools/third_party/lighthouse/locales/es.json +2066 -0
  942. package/static/devtools/third_party/lighthouse/locales/fi.json +2066 -0
  943. package/static/devtools/third_party/lighthouse/locales/fil.json +2066 -0
  944. package/static/devtools/third_party/lighthouse/locales/fr.json +2066 -0
  945. package/static/devtools/third_party/lighthouse/locales/he.json +2066 -0
  946. package/static/devtools/third_party/lighthouse/locales/hi.json +2066 -0
  947. package/static/devtools/third_party/lighthouse/locales/hr.json +2066 -0
  948. package/static/devtools/third_party/lighthouse/locales/hu.json +2066 -0
  949. package/static/devtools/third_party/lighthouse/locales/id.json +2066 -0
  950. package/static/devtools/third_party/lighthouse/locales/it.json +2066 -0
  951. package/static/devtools/third_party/lighthouse/locales/ja.json +2066 -0
  952. package/static/devtools/third_party/lighthouse/locales/ko.json +2066 -0
  953. package/static/devtools/third_party/lighthouse/locales/lt.json +2066 -0
  954. package/static/devtools/third_party/lighthouse/locales/lv.json +2066 -0
  955. package/static/devtools/third_party/lighthouse/locales/nl.json +2066 -0
  956. package/static/devtools/third_party/lighthouse/locales/no.json +2066 -0
  957. package/static/devtools/third_party/lighthouse/locales/pl.json +2066 -0
  958. package/static/devtools/third_party/lighthouse/locales/pt-PT.json +2066 -0
  959. package/static/devtools/third_party/lighthouse/locales/pt.json +2066 -0
  960. package/static/devtools/third_party/lighthouse/locales/ro.json +2066 -0
  961. package/static/devtools/third_party/lighthouse/locales/ru.json +2066 -0
  962. package/static/devtools/third_party/lighthouse/locales/sk.json +2066 -0
  963. package/static/devtools/third_party/lighthouse/locales/sl.json +2066 -0
  964. package/static/devtools/third_party/lighthouse/locales/sr-Latn.json +2066 -0
  965. package/static/devtools/third_party/lighthouse/locales/sr.json +2066 -0
  966. package/static/devtools/third_party/lighthouse/locales/sv.json +2066 -0
  967. package/static/devtools/third_party/lighthouse/locales/ta.json +2066 -0
  968. package/static/devtools/third_party/lighthouse/locales/te.json +2066 -0
  969. package/static/devtools/third_party/lighthouse/locales/th.json +2066 -0
  970. package/static/devtools/third_party/lighthouse/locales/tr.json +2066 -0
  971. package/static/devtools/third_party/lighthouse/locales/uk.json +2066 -0
  972. package/static/devtools/third_party/lighthouse/locales/vi.json +2066 -0
  973. package/static/devtools/third_party/lighthouse/locales/zh-HK.json +2066 -0
  974. package/static/devtools/third_party/lighthouse/locales/zh-TW.json +2066 -0
  975. package/static/devtools/third_party/lighthouse/locales/zh.json +2066 -0
  976. package/static/devtools/third_party/lighthouse/report-assets/report-generator.d.ts +1 -0
  977. package/static/devtools/third_party/lighthouse/report-assets/report-generator.js +167 -0
  978. package/static/devtools/third_party/lighthouse/report-assets/report.d.ts +1 -0
  979. package/static/devtools/third_party/lighthouse/report-assets/report.js +5032 -0
  980. package/static/devtools/third_party/lit-html/lit-html-tsconfig.json +22 -0
  981. package/static/devtools/third_party/lit-html/lit-html.js +120 -0
  982. package/static/devtools/third_party/lit-html/package/directives/class-map.d.ts +28 -0
  983. package/static/devtools/third_party/lit-html/package/directives/class-map.js +101 -0
  984. package/static/devtools/third_party/lit-html/package/directives/class-map.js.map +1 -0
  985. package/static/devtools/third_party/lit-html/package/directives/if-defined.d.ts +22 -0
  986. package/static/devtools/third_party/lit-html/package/directives/if-defined.js +37 -0
  987. package/static/devtools/third_party/lit-html/package/directives/if-defined.js.map +1 -0
  988. package/static/devtools/third_party/lit-html/package/directives/live.d.ts +38 -0
  989. package/static/devtools/third_party/lit-html/package/directives/live.js +73 -0
  990. package/static/devtools/third_party/lit-html/package/directives/live.js.map +1 -0
  991. package/static/devtools/third_party/lit-html/package/directives/repeat.d.ts +37 -0
  992. package/static/devtools/third_party/lit-html/package/directives/repeat.js +415 -0
  993. package/static/devtools/third_party/lit-html/package/directives/repeat.js.map +1 -0
  994. package/static/devtools/third_party/lit-html/package/directives/style-map.d.ts +36 -0
  995. package/static/devtools/third_party/lit-html/package/directives/style-map.js +78 -0
  996. package/static/devtools/third_party/lit-html/package/directives/style-map.js.map +1 -0
  997. package/static/devtools/third_party/lit-html/package/lib/default-template-processor.d.ts +39 -0
  998. package/static/devtools/third_party/lit-html/package/lib/default-template-processor.js +52 -0
  999. package/static/devtools/third_party/lit-html/package/lib/default-template-processor.js.map +1 -0
  1000. package/static/devtools/third_party/lit-html/package/lib/directive.d.ts +59 -0
  1001. package/static/devtools/third_party/lit-html/package/lib/directive.js +63 -0
  1002. package/static/devtools/third_party/lit-html/package/lib/directive.js.map +1 -0
  1003. package/static/devtools/third_party/lit-html/package/lib/dom.d.ts +29 -0
  1004. package/static/devtools/third_party/lit-html/package/lib/dom.js +44 -0
  1005. package/static/devtools/third_party/lit-html/package/lib/dom.js.map +1 -0
  1006. package/static/devtools/third_party/lit-html/package/lib/part.d.ts +46 -0
  1007. package/static/devtools/third_party/lit-html/package/lib/part.js +23 -0
  1008. package/static/devtools/third_party/lit-html/package/lib/part.js.map +1 -0
  1009. package/static/devtools/third_party/lit-html/package/lib/parts.d.ts +148 -0
  1010. package/static/devtools/third_party/lit-html/package/lib/parts.js +476 -0
  1011. package/static/devtools/third_party/lit-html/package/lib/parts.js.map +1 -0
  1012. package/static/devtools/third_party/lit-html/package/lib/render.d.ts +33 -0
  1013. package/static/devtools/third_party/lit-html/package/lib/render.js +43 -0
  1014. package/static/devtools/third_party/lit-html/package/lib/render.js.map +1 -0
  1015. package/static/devtools/third_party/lit-html/package/lib/template-factory.d.ts +57 -0
  1016. package/static/devtools/third_party/lit-html/package/lib/template-factory.js +48 -0
  1017. package/static/devtools/third_party/lit-html/package/lib/template-factory.js.map +1 -0
  1018. package/static/devtools/third_party/lit-html/package/lib/template-instance.d.ts +30 -0
  1019. package/static/devtools/third_party/lit-html/package/lib/template-instance.js +134 -0
  1020. package/static/devtools/third_party/lit-html/package/lib/template-instance.js.map +1 -0
  1021. package/static/devtools/third_party/lit-html/package/lib/template-result.d.ts +42 -0
  1022. package/static/devtools/third_party/lit-html/package/lib/template-result.js +131 -0
  1023. package/static/devtools/third_party/lit-html/package/lib/template-result.js.map +1 -0
  1024. package/static/devtools/third_party/lit-html/package/lib/template.d.ts +92 -0
  1025. package/static/devtools/third_party/lit-html/package/lib/template.js +215 -0
  1026. package/static/devtools/third_party/lit-html/package/lib/template.js.map +1 -0
  1027. package/static/devtools/third_party/lit-html/package/lit-html.d.ts +42 -0
  1028. package/static/devtools/third_party/lit-html/package/lit-html.js +59 -0
  1029. package/static/devtools/third_party/lit-html/package/lit-html.js.map +1 -0
  1030. package/static/devtools/third_party/marked/marked-tsconfig.json +8 -0
  1031. package/static/devtools/third_party/marked/marked.js +1 -0
  1032. package/static/devtools/third_party/marked/package/lib/marked.esm.d.ts +1 -0
  1033. package/static/devtools/third_party/marked/package/lib/marked.esm.js +2584 -0
  1034. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.d.ts +53 -0
  1035. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.d.ts.map +1 -0
  1036. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.js +64 -0
  1037. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.d.ts +176 -0
  1038. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.d.ts.map +1 -0
  1039. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.js +356 -0
  1040. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.d.ts +21 -0
  1041. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.d.ts.map +1 -0
  1042. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js +81 -0
  1043. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts +423 -0
  1044. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts.map +1 -0
  1045. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.js +516 -0
  1046. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts +39 -0
  1047. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts.map +1 -0
  1048. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.js +76 -0
  1049. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.d.ts +26 -0
  1050. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.d.ts.map +1 -0
  1051. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.js +30 -0
  1052. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts +120 -0
  1053. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts.map +1 -0
  1054. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.js +266 -0
  1055. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectionTransport.d.ts +22 -0
  1056. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectionTransport.d.ts.map +1 -0
  1057. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConnectionTransport.js +15 -0
  1058. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.d.ts +72 -0
  1059. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.d.ts.map +1 -0
  1060. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.js +60 -0
  1061. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.d.ts +181 -0
  1062. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.d.ts.map +1 -0
  1063. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.js +316 -0
  1064. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts +174 -0
  1065. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts.map +1 -0
  1066. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js +647 -0
  1067. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts +53 -0
  1068. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts.map +1 -0
  1069. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js +77 -0
  1070. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.d.ts +33 -0
  1071. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.d.ts.map +1 -0
  1072. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.js +873 -0
  1073. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.d.ts +76 -0
  1074. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.d.ts.map +1 -0
  1075. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.js +92 -0
  1076. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.d.ts +25 -0
  1077. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.d.ts.map +1 -0
  1078. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.js +33 -0
  1079. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts +34 -0
  1080. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts.map +1 -0
  1081. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.js +37 -0
  1082. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.d.ts +59 -0
  1083. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.d.ts.map +1 -0
  1084. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.js +15 -0
  1085. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.d.ts +89 -0
  1086. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.d.ts.map +1 -0
  1087. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.js +109 -0
  1088. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.d.ts +82 -0
  1089. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.d.ts.map +1 -0
  1090. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.js +83 -0
  1091. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.d.ts +189 -0
  1092. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.d.ts.map +1 -0
  1093. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.js +313 -0
  1094. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts +60 -0
  1095. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts.map +1 -0
  1096. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.js +66 -0
  1097. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts +735 -0
  1098. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts.map +1 -0
  1099. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js +962 -0
  1100. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts +276 -0
  1101. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts.map +1 -0
  1102. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js +421 -0
  1103. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts +128 -0
  1104. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts.map +1 -0
  1105. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js +150 -0
  1106. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts +322 -0
  1107. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts.map +1 -0
  1108. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.js +463 -0
  1109. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts +439 -0
  1110. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts.map +1 -0
  1111. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js +724 -0
  1112. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts +62 -0
  1113. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts.map +1 -0
  1114. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.js +145 -0
  1115. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts +80 -0
  1116. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts.map +1 -0
  1117. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js +262 -0
  1118. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts +152 -0
  1119. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts.map +1 -0
  1120. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js +31 -0
  1121. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts +910 -0
  1122. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts.map +1 -0
  1123. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js +1343 -0
  1124. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Product.d.ts +21 -0
  1125. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Product.d.ts.map +1 -0
  1126. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Product.js +15 -0
  1127. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.d.ts +135 -0
  1128. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.d.ts.map +1 -0
  1129. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.js +133 -0
  1130. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PuppeteerViewport.d.ts +24 -0
  1131. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PuppeteerViewport.d.ts.map +1 -0
  1132. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/PuppeteerViewport.js +0 -0
  1133. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts +66 -0
  1134. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts.map +1 -0
  1135. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js +157 -0
  1136. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.d.ts +61 -0
  1137. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.d.ts.map +1 -0
  1138. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.js +72 -0
  1139. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts +98 -0
  1140. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts.map +1 -0
  1141. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.js +137 -0
  1142. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.d.ts +28 -0
  1143. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.d.ts.map +1 -0
  1144. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.js +43 -0
  1145. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.d.ts +47 -0
  1146. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.d.ts.map +1 -0
  1147. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.js +94 -0
  1148. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.d.ts +40 -0
  1149. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.d.ts.map +1 -0
  1150. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.js +403 -0
  1151. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.d.ts +102 -0
  1152. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.d.ts.map +1 -0
  1153. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.js +109 -0
  1154. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.d.ts +22 -0
  1155. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.d.ts.map +1 -0
  1156. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.js +24 -0
  1157. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.d.ts +17 -0
  1158. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.d.ts.map +1 -0
  1159. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.js +20 -0
  1160. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.d.ts +66 -0
  1161. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.d.ts.map +1 -0
  1162. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.js +288 -0
  1163. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts +17 -0
  1164. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts.map +1 -0
  1165. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/environment.js +16 -0
  1166. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.d.ts +18 -0
  1167. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.d.ts.map +1 -0
  1168. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js +39 -0
  1169. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.d.ts +18 -0
  1170. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.d.ts.map +1 -0
  1171. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.js +22 -0
  1172. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts +132 -0
  1173. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts.map +1 -0
  1174. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js +468 -0
  1175. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts +40 -0
  1176. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts.map +1 -0
  1177. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js +197 -0
  1178. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts +42 -0
  1179. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts.map +1 -0
  1180. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.js +0 -0
  1181. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts +16 -0
  1182. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts.map +1 -0
  1183. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js +469 -0
  1184. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts +29 -0
  1185. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts.map +1 -0
  1186. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.js +34 -0
  1187. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts +31 -0
  1188. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts.map +1 -0
  1189. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js +61 -0
  1190. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.d.ts +156 -0
  1191. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.d.ts.map +1 -0
  1192. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.js +183 -0
  1193. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/install.d.ts +18 -0
  1194. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/install.d.ts.map +1 -0
  1195. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js +151 -0
  1196. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.d.ts +18 -0
  1197. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.d.ts.map +1 -0
  1198. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.js +23 -0
  1199. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node.d.ts +18 -0
  1200. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node.d.ts.map +1 -0
  1201. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/node.js +22 -0
  1202. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +22 -0
  1203. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts.map +1 -0
  1204. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +19 -0
  1205. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/web.d.ts +18 -0
  1206. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/web.d.ts.map +1 -0
  1207. package/static/devtools/third_party/puppeteer/package/lib/esm/puppeteer/web.js +22 -0
  1208. package/static/devtools/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.d.ts +22 -0
  1209. package/static/devtools/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.d.ts.map +1 -0
  1210. package/static/devtools/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.js +53 -0
  1211. package/static/devtools/third_party/puppeteer/puppeteer-tsconfig.json +58 -0
  1212. package/static/devtools/third_party/puppeteer/puppeteer.js +1 -0
  1213. package/static/devtools/third_party/wasmparser/package/dist/esm/WasmDis.js +1595 -0
  1214. package/static/devtools/third_party/wasmparser/package/dist/esm/WasmParser.js +3120 -0
  1215. package/static/devtools/third_party/wasmparser/wasmparser-tsconfig.json +9 -0
  1216. package/static/devtools/timeline/timeline-legacy.js +1 -0
  1217. package/static/devtools/timeline/timeline-meta.js +1 -0
  1218. package/static/devtools/timeline/timeline.js +1 -0
  1219. package/static/devtools/timeline/timeline_module.js +1 -0
  1220. package/static/devtools/timeline_model/timeline_model-legacy.js +1 -0
  1221. package/static/devtools/timeline_model/timeline_model.js +1 -0
  1222. package/static/devtools/timeline_model/timeline_model_module.js +0 -0
  1223. package/static/devtools/toolbox.html +20 -0
  1224. package/static/devtools/toolbox.js +1 -0
  1225. package/static/devtools/toolbox_bootstrap/toolbox_bootstrap.js +1 -0
  1226. package/static/devtools/ui/components/components.js +378 -0
  1227. package/static/devtools/ui/ui-legacy.js +1 -0
  1228. package/static/devtools/ui/ui.js +3 -0
  1229. package/static/devtools/ui/utils/utils.js +1 -0
  1230. package/static/devtools/wasmparser_worker/wasmparser_worker-entrypoint.js +1 -0
  1231. package/static/devtools/wasmparser_worker/wasmparser_worker.js +1 -0
  1232. package/static/devtools/web_audio/graph_visualizer/graph_visualizer.js +1 -0
  1233. package/static/devtools/web_audio/web_audio-legacy.js +1 -0
  1234. package/static/devtools/web_audio/web_audio-meta.js +1 -0
  1235. package/static/devtools/web_audio/web_audio.js +23 -0
  1236. package/static/devtools/web_audio/web_audio_module.js +1 -0
  1237. package/static/devtools/webauthn/webauthn-legacy.js +1 -0
  1238. package/static/devtools/webauthn/webauthn-meta.js +1 -0
  1239. package/static/devtools/webauthn/webauthn.js +6 -0
  1240. package/static/devtools/webauthn/webauthn_module.js +1 -0
  1241. package/static/devtools/worker_app.html +20 -0
  1242. package/static/devtools/worker_app.js +1 -0
  1243. package/static/devtools/worker_main/worker_main-legacy.js +1 -0
  1244. package/static/devtools/worker_main/worker_main.js +1 -0
  1245. package/static/devtools/worker_service/worker_service.js +1 -0
  1246. package/static/devtools/workspace/workspace-legacy.js +1 -0
  1247. package/static/devtools/workspace/workspace.js +1 -0
  1248. package/static/devtools/workspace_diff/workspace_diff-legacy.js +1 -0
  1249. package/static/devtools/workspace_diff/workspace_diff.js +1 -0
  1250. package/static/devtools/workspace_diff/workspace_diff_module.js +0 -0
  1251. package/static/docs/swagger.json +2337 -279
  1252. package/static/function/client.js +1037 -992
  1253. package/build/routes/chromium/http/json-new.js +0 -23
  1254. package/build/routes/chromium/http/json-version-get.response.json +0 -37
  1255. package/build/routes/chromium/utils/cdp.d.ts +0 -2
  1256. package/build/routes/chromium/utils/cdp.js +0 -14
  1257. package/build/routes/chromium/ws/cdp-chromium.js +0 -10
  1258. package/src/routes/chromium/http/json-list.ts +0 -50
  1259. package/src/routes/chromium/utils/cdp.ts +0 -19
  1260. package/build/routes/{chromium/http/content-post.query.json → chrome/http/content.post.query.json} +0 -0
  1261. package/build/routes/{chromium/http/content-post.response.json → chrome/http/content.post.response.json} +0 -0
  1262. package/build/routes/{chromium/http/download-post.body.json → chrome/http/download.post.body.json} +0 -0
  1263. package/build/routes/{chromium/http/download-post.query.json → chrome/http/download.post.query.json} +0 -0
  1264. package/build/routes/{chromium/http/download-post.response.json → chrome/http/download.post.response.json} +0 -0
  1265. package/build/routes/{chromium/http/function-post.body.json → chrome/http/function.post.body.json} +0 -0
  1266. package/build/routes/{chromium/http/function-post.query.json → chrome/http/function.post.query.json} +0 -0
  1267. package/build/routes/{chromium/http/function-post.response.json → chrome/http/function.post.response.json} +0 -0
  1268. package/build/routes/{chromium/http/json-list.response.json → chrome/http/json-list.get.response.json} +0 -0
  1269. package/build/routes/{chromium/http/json-new.response.json → chrome/http/json-new.put.response.json} +0 -0
  1270. package/build/routes/{chromium/http/json-protocol-get.response.json → chrome/http/json-protocol.get.response.json} +0 -0
  1271. package/build/routes/{chromium/http/pdf-post.query.json → chrome/http/pdf.post.query.json} +0 -0
  1272. package/build/routes/{chromium/http/pdf-post.response.json → chrome/http/pdf.post.response.json} +0 -0
  1273. package/build/routes/{chromium/http/performance.body.json → chrome/http/performance.post.body.json} +0 -0
  1274. package/build/routes/{chromium/http/performance.query.json → chrome/http/performance.post.query.json} +0 -0
  1275. package/build/routes/{chromium/http/performance.response.json → chrome/http/performance.post.response.json} +0 -0
  1276. package/build/routes/{chromium/http/scrape-post.query.json → chrome/http/scrape.post.query.json} +0 -0
  1277. package/build/routes/{chromium/http/scrape-post.response.json → chrome/http/scrape.post.response.json} +0 -0
  1278. package/build/routes/{chromium/http/screenshot-post.query.json → chrome/http/screenshot.post.query.json} +0 -0
  1279. package/build/routes/{chromium/http/screenshot-post.response.json → chrome/http/screenshot.post.response.json} +0 -0
  1280. package/build/routes/{chromium/utils/performance/child.d.ts → chrome/tests/content.spec.d.ts} +0 -0
  1281. package/build/routes/{chromium/utils/performance/types.js → chrome/tests/download.spec.d.ts} +0 -0
  1282. package/build/routes/{chromium/ws/cdp-chromium.query.json → chrome/ws/browser.query.json} +0 -0
  1283. package/build/routes/{chromium/ws/playwright-chromium.query.json → chrome/ws/playwright.query.json} +0 -0
  1284. package/build/routes/{firefox/ws/playwright-firefox.query.json → chromium/ws/playwright.query.json} +0 -0
  1285. package/build/routes/{webkit/ws/playwright-webkit.query.json → firefox/ws/playwright.query.json} +0 -0
  1286. package/build/routes/management/http/{config-get.d.ts → config.get.d.ts} +0 -0
  1287. package/build/routes/management/http/{config-get.js → config.get.js} +0 -0
  1288. package/build/routes/management/http/{config-get.response.json → config.get.response.json} +0 -0
  1289. package/build/routes/management/http/{metrics-total-get.d.ts → metrics-total.get.d.ts} +0 -0
  1290. package/build/routes/management/http/{metrics-total-get.js → metrics-total.get.js} +0 -0
  1291. package/build/routes/management/http/{metrics-total-get.response.json → metrics-total.get.response.json} +0 -0
  1292. package/build/routes/management/http/{metrics-get.d.ts → metrics.get.d.ts} +0 -0
  1293. package/build/routes/management/http/{metrics-get.js → metrics.get.js} +0 -0
  1294. package/build/routes/management/http/{metrics-get.response.json → metrics.get.response.json} +0 -0
  1295. package/build/routes/management/http/{sessions-get.d.ts → sessions.get.d.ts} +0 -0
  1296. package/build/routes/management/http/{sessions-get.js → sessions.get.js} +0 -0
  1297. package/build/routes/management/http/{static-get.d.ts → static.get.d.ts} +0 -0
  1298. package/build/{routes/chromium/http/json-protocol-get.d.ts → shared/json-protocol.http.d.ts} +1 -1
  1299. package/build/{routes/chromium/http/json-version-get.d.ts → shared/json-version.http.d.ts} +1 -1
  1300. /package/build/{routes/chromium → shared}/utils/function/client.d.ts +0 -0
  1301. /package/build/{routes/chromium → shared}/utils/function/client.js +0 -0
  1302. /package/build/{routes/chromium → shared}/utils/function/handler.d.ts +0 -0
  1303. /package/build/{routes/chromium → shared}/utils/function/handler.js +0 -0
  1304. /package/build/{routes/chromium → shared}/utils/performance/child.js +0 -0
  1305. /package/build/{routes/chromium → shared}/utils/performance/main.d.ts +0 -0
  1306. /package/build/{routes/chromium → shared}/utils/performance/types.d.ts +0 -0
  1307. /package/src/routes/management/http/{config-get.ts → config.get.ts} +0 -0
  1308. /package/src/routes/management/http/{metrics-total-get.ts → metrics-total.get.ts} +0 -0
  1309. /package/src/routes/management/http/{metrics-get.ts → metrics.get.ts} +0 -0
  1310. /package/src/routes/management/http/{sessions-get.ts → sessions.get.ts} +0 -0
  1311. /package/src/{routes/chromium → shared}/utils/function/client.ts +0 -0
  1312. /package/src/{routes/chromium → shared}/utils/performance/child.ts +0 -0
  1313. /package/src/{routes/chromium → shared}/utils/performance/types.ts +0 -0
@@ -0,0 +1 @@
1
+ import*as RootModule from'../root/root.js';RootModule.Runtime.cachedResources.set("settings/frameworkIgnoreListSettingsTab.css","/*\n * Copyright 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n:host {\n overflow: hidden;\n}\n\n.header {\n padding: 0 0 6px;\n border-bottom: 1px solid #eee;\n font-size: 18px;\n font-weight: normal;\n flex: none;\n}\n\n.intro {\n margin-top: 10px;\n}\n\n.ignore-list-content-scripts {\n margin-top: 10px;\n flex: none;\n}\n\n.add-button {\n margin: 10px 2px;\n align-self: flex-start;\n flex: none;\n}\n\n.ignore-list {\n margin-top: 10px;\n max-width: 500px;\n flex: 0 1 auto;\n min-height: 30px;\n}\n\n.ignore-list-empty {\n flex: auto;\n height: 30px;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.ignore-list-item {\n padding: 3px 5px 3px 5px;\n height: 30px;\n display: flex;\n align-items: center;\n position: relative;\n flex: auto 1 1;\n}\n\n.ignore-list-pattern {\n flex: auto;\n min-width: 100px;\n}\n\n.ignore-list-item .ignore-list-pattern {\n white-space: nowrap;\n text-overflow: ellipsis;\n user-select: none;\n color: #222;\n overflow: hidden;\n}\n\n.ignore-list-item.ignore-list-disabled .ignore-list-pattern {\n text-decoration: line-through;\n}\n\n.ignore-list-behavior {\n flex: 0 0 100px;\n padding-left: 10px;\n}\n\n.ignore-list-behavior > select {\n margin-left: -10px;\n}\n\n.ignore-list-separator {\n flex: 0 0 1px;\n background-color: rgb(231 231 231);\n height: 30px;\n margin: 0 4px;\n}\n\n.ignore-list-separator-invisible {\n visibility: hidden;\n height: 100% !important;\n}\n\n.ignore-list-edit-row {\n flex: none;\n display: flex;\n flex-direction: row;\n margin: 6px 5px;\n align-items: center;\n}\n\n.ignore-list-edit-row input,\n.ignore-list-edit-row select {\n width: 100%;\n text-align: inherit;\n}\n\n/*# sourceURL=settings/frameworkIgnoreListSettingsTab.css */");RootModule.Runtime.cachedResources.set("settings/settingsScreen.css","/*\n * Copyright (c) 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.settings-window-main {\n color: rgb(48 57 66);\n background-color: var(--color-background);\n padding: 11px 0 0 0;\n}\n\n.settings-content {\n overflow-y: auto;\n overflow-x: hidden;\n margin: 8px 8px 8px 0;\n padding: 0 4px;\n flex: auto;\n}\n\n.settings-footnote {\n border-top: 1px solid #eee;\n margin: 0;\n padding: 12px;\n}\n\n.settings-container {\n width: 100%;\n column-width: 288px;\n}\n\n.settings-block {\n display: block;\n padding-bottom: 9px;\n width: 288px;\n break-inside: avoid;\n}\n\n.settings-tab.settings-container {\n column-width: 308px;\n}\n\n.settings-tab .settings-block {\n margin-left: 20px;\n}\n\n.settings-line {\n padding-bottom: 5px;\n margin-bottom: 5px;\n}\n\n.settings-key-cell {\n display: inline-block;\n width: 153px;\n white-space: nowrap;\n text-align: right;\n vertical-align: middle;\n padding-right: 6px;\n}\n\n.settings-cell {\n display: inline-block;\n width: 135px;\n vertical-align: middle;\n}\n\n.settings-section-title {\n font-size: 120%;\n text-align: left;\n}\n\n.settings-key {\n padding: 0.1em 0.6em;\n border: 1px solid #ccc;\n font-size: 11px;\n background-color: #f7f7f7;\n color: #333;\n box-shadow: 0 1px 0 rgb(0 0 0 / 20%), 0 0 0 2px #fff inset;\n border-radius: 3px;\n display: inline-block;\n margin: 0 0.1em;\n text-shadow: 0 1px 0 #fff;\n line-height: 1.5;\n white-space: nowrap;\n}\n\n.settings-combine-keys,\n.settings-key-delimiter {\n font-size: 9px;\n}\n\n.settings-combine-keys {\n margin: 0 0.3em;\n}\n\n.settings-key-delimiter {\n margin: 0 0.5em;\n display: none;\n}\n\nfieldset {\n margin: 0;\n padding: 0;\n border: none;\n}\n\n.settings-tab label {\n padding-right: 4px;\n display: inline-flex;\n flex-shrink: 0;\n}\n\n.settings-tab p {\n margin: 12px 0;\n}\n\n.settings-block p p {\n padding-left: 30px;\n}\n\n.settings-experiments-warning-subsection-warning {\n color: rgb(200 0 0);\n}\n\n.settings-experiments-warning-subsection-message {\n color: inherit;\n}\n\n.settings-content input[type=checkbox] {\n margin: 1px 7px 1px 2px;\n}\n\n.settings-window-title {\n font-size: 18px;\n color: rgb(48 57 66);\n padding: 0 0 5px 13px;\n}\n\n.settings-container-wrapper {\n position: absolute;\n top: 31px;\n left: 0;\n right: 0;\n bottom: 0;\n overflow: auto;\n padding-top: 9px;\n border-top: 1px solid #eee;\n}\n\n.settings-tab.settings-content {\n margin: 0;\n padding: 0;\n}\n\n.settings-tab-container {\n flex: auto;\n overflow: hidden;\n}\n\n.settings-tab-container header {\n padding: 0 0 6px;\n}\n\n#experiments-tab-content .settings-container {\n column-width: 470px;\n}\n\n#experiments-tab-content .settings-block {\n width: 470px;\n margin-left: 0;\n}\n\n.settings-tab-container header > h1 {\n font-size: 18px;\n font-weight: normal;\n margin: 0;\n padding-bottom: 3px;\n white-space: nowrap;\n}\n\n.settings-tab .settings-section-title {\n margin-left: -20px;\n color: #222;\n}\n\n.settings-tab .settings-block label:hover {\n color: #222;\n}\n\n.settings-tab .settings-block fieldset:disabled label:hover {\n color: inherit;\n}\n\n.settings-tab select {\n margin-left: 10px;\n}\n\n.settings-experiment-unstable {\n display: block;\n color: #888;\n}\n\n/*# sourceURL=settings/settingsScreen.css */");RootModule.Runtime.cachedResources.set("settings/keybindsSettingsTab.css","/*\n * Copyright 2020 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\nheader {\n padding: 0 0 6px;\n border-bottom: 1px solid #eee;\n flex: none;\n margin-bottom: 25px;\n}\n\nh1 {\n font-size: 18px;\n font-weight: normal;\n padding-bottom: 3px;\n margin: 0;\n}\n\n[role=\"list\"],\n.widget.vbox {\n min-width: 300px;\n}\n\n.keybinds-key {\n padding: 0.1em 0.6em;\n border: 1px solid #ccc;\n font-size: 11px;\n background-color: #f7f7f7;\n color: #333;\n box-shadow: 0 1px 0 rgb(0 0 0 / 20%), 0 0 0 2px #fff inset;\n border-radius: 3px;\n display: inline-block;\n margin: 0 0.1em;\n text-shadow: 0 1px 0 #fff;\n line-height: 1.5;\n white-space: nowrap;\n}\n\n.keybinds-list-item {\n min-height: 30px;\n display: grid;\n grid-template-rows: repeat(auto-fit, 30px);\n grid-template-columns: 1fr 30px 1fr 30px 30px;\n flex: auto 1 1;\n}\n\n.keybinds-list-item:focus-visible {\n background-color: var(--focus-bg-color);\n}\n\n.keybinds-list-item:not(.keybinds-category-header) {\n padding-left: 20px;\n}\n\n.keybinds-list-item.keybinds-editing {\n background-color: rgb(0 0 0 / 5%);\n}\n\n.keybinds-action-name {\n grid-row: 1 / span 1;\n grid-column: 1 / span 1;\n}\n\n.keybinds-shortcut,\n.keybinds-info {\n grid-row: auto;\n grid-column: 3 / span 1;\n}\n\n.keybinds-info .devtools-link {\n padding-top: 6px;\n}\n\n.keybinds-error {\n color: var(--input-validation-error);\n}\n\n:host-context(.-theme-with-dark-background) .keybinds-error {\n color: #ff6161;\n}\n\n.keybinds-list-item.keybinds-editing .keybinds-shortcut {\n display: flex;\n}\n\n.keybinds-modified {\n grid-column: 2 / span 1;\n}\n\n.keybinds-list-item button {\n border: none;\n padding: 0;\n background: transparent;\n}\n\n.keybinds-list-item button:hover .icon-mask {\n background-color: #333;\n}\n\n.keybinds-list-item button:focus-visible {\n background-color: var(--focus-bg-color);\n}\n\n.keybinds-list-item button[disabled] {\n opacity: 40%;\n}\n\n.keybinds-confirm-button {\n grid-column: -2 / span 1;\n}\n\n.keybinds-cancel-button {\n grid-column: -1 / span 1;\n}\n\n.keybinds-edit-button {\n display: none;\n grid-row: 1 / span 1;\n grid-column: 4 / span 1;\n}\n\n.keybinds-list-item:not(.keybinds-editing):hover .keybinds-edit-button,\n.keybinds-list-item:not(.keybinds-editing):focus-within .keybinds-edit-button {\n display: inline-block;\n}\n\n.keybinds-list-text {\n padding: 3px 0;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n user-select: none;\n color: #222;\n text-align: start;\n position: relative;\n margin-right: 0;\n}\n\n.keybinds-category-header {\n font-weight: bold;\n line-height: 30px;\n white-space: nowrap;\n}\n\n.keybinds-category-header:not(:nth-child(2)) {\n border-top: 1px solid rgb(231 231 231);\n}\n\n.keybinds-list-item:not(.keybinds-category-header):hover {\n background: hsl(0deg 0% 96%);\n}\n\n.keybinds-set-select {\n text-align: right;\n margin-bottom: 25px;\n}\n\n.keybinds-set-select label p {\n display: inline;\n color: #222;\n}\n\n.keybinds-set-select select {\n margin-left: 6px;\n}\n\nbutton.text-button {\n width: fit-content;\n align-self: flex-end;\n}\n\n.keybinds-list-text input {\n margin: 0 2px;\n}\n\n.docs-link.devtools-link {\n align-self: flex-start;\n min-height: 2em;\n line-height: 2em;\n}\n\n.keybinds-footer {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n min-height: fit-content;\n margin-top: 10px;\n}\n\n/*# sourceURL=settings/keybindsSettingsTab.css */");
@@ -0,0 +1 @@
1
+ Root.allDescriptors.push(...[{"extensions":[{"className":"TextEditor.CodeMirrorUtils.TokenizerFactory","type":"@TextUtils.TokenizerFactory"},{"className":"TextEditor.CodeMirrorTextEditorFactory","type":"@UI.TextEditorFactory"}],"dependencies":["cm","common","i18n","platform","ui"],"modules":["text_editor_module.js","text_editor-legacy.js"],"name":"text_editor"},{"modules":["cm_module.js"],"name":"cm"},{"modules":["linear_memory_inspector-legacy.js"],"name":"linear_memory_inspector"},{"extensions":[{"className":"Sources.SourcesPanel","contextTypes":["Workspace.UISourceCode","Workspace.UILocation","SDK.RemoteObject","SDK.NetworkRequest","Sources.UISourceCodeFrame"],"type":"@UI.ContextMenu.Provider"},{"category":"Debugger","iconClass":"largeicon-pause","toggledIconClass":"largeicon-resume","className":"Sources.SourcesPanel.RevealingActionDelegate","contextTypes":["Sources.SourcesView","UI.ShortcutRegistry.ForwardedShortcut"],"actionId":"debugger.toggle-pause","toggleable":true,"bindings":[{"keybindSets":["devToolsDefault"],"shortcut":"F8"},{"platform":"windows,linux","shortcut":"Ctrl+\\"},{"keybindSets":["vsCode"],"shortcut":"F5"},{"keybindSets":["vsCode"],"shortcut":"Shift+F5"},{"platform":"mac","shortcut":"Meta+\\"}],"type":"action","options":[{"value":true,"title":"Pause script execution"},{"value":false,"title":"Resume script execution"}]},{"category":"Debugger","iconClass":"largeicon-step-over","title":"Step over next function call","className":"Sources.SourcesPanel.DebuggingActionDelegate","contextTypes":["SDK.DebuggerPausedDetails"],"actionId":"debugger.step-over","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"shortcut":"F10"},{"platform":"windows,linux","shortcut":"Ctrl+'"},{"platform":"mac","shortcut":"Meta+'"}],"type":"action"},{"category":"Debugger","iconClass":"largeicon-step-into","title":"Step into next function call","className":"Sources.SourcesPanel.DebuggingActionDelegate","contextTypes":["SDK.DebuggerPausedDetails"],"actionId":"debugger.step-into","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"shortcut":"F11"},{"platform":"windows,linux","shortcut":"Ctrl+;"},{"platform":"mac","shortcut":"Meta+;"}],"type":"action"},{"category":"Debugger","iconClass":"largeicon-step","title":"Step","className":"Sources.SourcesPanel.DebuggingActionDelegate","contextTypes":["SDK.DebuggerPausedDetails"],"actionId":"debugger.step","bindings":[{"keybindSets":["devToolsDefault"],"shortcut":"F9"}],"type":"action"},{"category":"Debugger","iconClass":"largeicon-step-out","title":"Step out of current function","className":"Sources.SourcesPanel.DebuggingActionDelegate","contextTypes":["SDK.DebuggerPausedDetails"],"actionId":"debugger.step-out","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"shortcut":"Shift+F11"},{"platform":"windows,linux","shortcut":"Shift+Ctrl+;"},{"platform":"mac","shortcut":"Shift+Meta+;"}],"type":"action"},{"category":"Debugger","iconClass":"largeicon-play","title":"Run snippet","className":"Sources.SourcesPanel.DebuggingActionDelegate","contextTypes":["Sources.SourcesView"],"actionId":"debugger.run-snippet","bindings":[{"platform":"windows,linux","shortcut":"Ctrl+Enter"},{"platform":"mac","shortcut":"Meta+Enter"}],"type":"action"},{"category":"Recorder","iconClass":"largeicon-start-recording","title":"Start Recording","className":"Sources.SourcesPanel.DebuggingActionDelegate","experiment":"recorder","toggleWithRedColor":true,"actionId":"recorder.toggle-recording","toggleable":true,"contextTypes":["Sources.SourcesView"],"bindings":[{"platform":"windows,linux","shortcut":"Ctrl+E"},{"platform":"mac","shortcut":"Meta+E"}],"toggledIconClass":"largeicon-stop-recording","type":"action","options":[{"value":true,"title":"Record"},{"value":false,"title":"Stop"}]},{"category":"Debugger","iconClass":"largeicon-deactivate-breakpoints","className":"Sources.SourcesPanel.DebuggingActionDelegate","contextTypes":["Sources.SourcesView"],"actionId":"debugger.toggle-breakpoints-active","toggleable":true,"bindings":[{"platform":"windows,linux","shortcut":"Ctrl+F8"},{"platform":"mac","shortcut":"Meta+F8"}],"type":"action","options":[{"value":true,"title":"Deactivate breakpoints"},{"value":false,"title":"Activate breakpoints"}]},{"category":"Debugger","title":"Add selected text to watches","className":"Sources.WatchExpressionsSidebarPane","contextTypes":["Sources.UISourceCodeFrame"],"actionId":"sources.add-to-watch","bindings":[{"shortcut":"Ctrl+Shift+A"}],"type":"action"},{"className":"Sources.WatchExpressionsSidebarPane","contextTypes":["ObjectUI.ObjectPropertyTreeElement"],"type":"@UI.ContextMenu.Provider","actionId":"sources.add-to-watch","title":"Add to watch"},{"className":"Sources.WatchExpressionsSidebarPane","contextTypes":["TextEditor.CodeMirrorTextEditor"],"type":"@UI.ContextMenu.Provider"},{"className":"Sources.GutterDiffPlugin.ContextMenuProvider","contextTypes":["Workspace.UISourceCode"],"type":"@UI.ContextMenu.Provider"},{"category":"Debugger","title":"Evaluate selected text in console","className":"Sources.SourcesPanel.DebuggingActionDelegate","contextTypes":["Sources.UISourceCodeFrame"],"actionId":"debugger.evaluate-selection","bindings":[{"shortcut":"Ctrl+Shift+E"}],"type":"action"},{"className":"Sources.OpenFileQuickOpen","prefix":"","type":"@QuickOpen.FilteredListWidget.Provider","title":"Open file"},{"className":"Sources.GoToLineQuickOpen","prefix":":","type":"@QuickOpen.FilteredListWidget.Provider","title":"Go to line"},{"className":"Sources.OutlineQuickOpen","prefix":"@","type":"@QuickOpen.FilteredListWidget.Provider","title":"Go to symbol"},{"type":"context-menu-item","location":"navigatorMenu/default","actionId":"quickOpen.show"},{"className":"Sources.SourcesPanel.UILocationRevealer","contextTypes":["Workspace.UILocation"],"destination":"Sources panel","type":"@Common.Revealer"},{"className":"Sources.SourcesPanel.DebuggerLocationRevealer","contextTypes":["SDK.DebuggerModel.Location"],"destination":"Sources panel","type":"@Common.Revealer"},{"className":"Sources.SourcesPanel.UISourceCodeRevealer","contextTypes":["Workspace.UISourceCode"],"destination":"Sources panel","type":"@Common.Revealer"},{"className":"Sources.SourcesPanel.DebuggerPausedDetailsRevealer","contextTypes":["SDK.DebuggerPausedDetails"],"destination":"Sources panel","type":"@Common.Revealer"},{"className":"Sources.InplaceFormatterEditorAction","type":"@Sources.SourcesView.EditorAction"},{"className":"Sources.ScriptFormatterEditorAction","type":"@Sources.SourcesView.EditorAction"},{"className":"Sources.NetworkNavigatorView","viewId":"navigator-network","type":"@Sources.NavigatorView"},{"className":"Sources.FilesNavigatorView","viewId":"navigator-files","type":"@Sources.NavigatorView"},{"className":"Sources.SnippetsNavigatorView","viewId":"navigator-snippets","type":"@Sources.NavigatorView"},{"className":"Sources.RecordingsNavigatorView","viewId":"navigator-recordings","experiment":"recorder","type":"@Sources.NavigatorView"},{"category":"Sources","title":"Switch file","className":"Sources.SourcesView.SwitchFileActionDelegate","contextTypes":["Sources.SourcesView"],"actionId":"sources.switch-file","bindings":[{"shortcut":"Alt+O"}],"type":"action"},{"category":"Sources","bindings":[{"platform":"windows,linux","shortcut":"F2"},{"platform":"mac","shortcut":"Enter"}],"type":"action","actionId":"sources.rename","title":"Rename"},{"defaultValue":"true","type":"setting","settingName":"navigatorGroupByFolder","settingType":"boolean"},{"category":"Sources","title":"Search in anonymous and content scripts","defaultValue":false,"settingName":"searchInAnonymousAndContentScripts","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Search in anonymous and content scripts"},{"value":false,"title":"Do not search in anonymous and content scripts"}]},{"category":"Sources","title":"Automatically reveal files in sidebar","defaultValue":false,"settingName":"autoRevealInNavigator","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Automatically reveal files in sidebar"},{"value":false,"title":"Do not automatically reveal files in sidebar"}]},{"category":"Sources","title":"Enable JavaScript source maps","defaultValue":true,"settingName":"jsSourceMapsEnabled","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Enable JavaScript source maps"},{"value":false,"title":"Disable JavaScript source maps"}]},{"category":"Sources","title":"Enable tab moves focus","defaultValue":false,"settingName":"textEditorTabMovesFocus","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Enable tab moves focus"},{"value":false,"title":"Disable tab moves focus"}]},{"category":"Sources","title":"Detect indentation","defaultValue":true,"settingName":"textEditorAutoDetectIndent","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Detect indentation"},{"value":false,"title":"Do not detect indentation"}]},{"category":"Sources","title":"Autocompletion","defaultValue":true,"settingName":"textEditorAutocompletion","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Enable autocompletion"},{"value":false,"title":"Disable autocompletion"}]},{"category":"Sources","title":"Bracket matching","defaultValue":true,"settingName":"textEditorBracketMatching","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Enable bracket matching"},{"value":false,"title":"Disable bracket matching"}]},{"category":"Sources","title":"Code folding","defaultValue":false,"settingName":"textEditorCodeFolding","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Enable code folding"},{"value":false,"title":"Disable code folding"}]},{"category":"Sources","title":"Show whitespace characters:","defaultValue":"original","settingName":"showWhitespacesInEditor","settingType":"enum","type":"setting","options":[{"text":"None","value":"none","title":"Do not show whitespace characters"},{"text":"All","value":"all","title":"Show all whitespace characters"},{"text":"Trailing","value":"trailing","title":"Show trailing whitespace characters"}]},{"category":"Sources","title":"Display variable values inline while debugging","defaultValue":true,"settingName":"inlineVariableValues","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Display variable values inline while debugging"},{"value":false,"title":"Do not display variable values inline while debugging"}]},{"category":"Sources","title":"Enable CSS source maps","defaultValue":true,"settingName":"cssSourceMapsEnabled","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Enable CSS source maps"},{"value":false,"title":"Disable CSS source maps"}]},{"category":"Sources","title":"Allow scrolling past end of file","defaultValue":true,"settingName":"allowScrollPastEof","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Allow scrolling past end of file"},{"value":false,"title":"Disallow scrolling past end of file"}]},{"category":"Sources","className":"Sources.SourcesView.ActionDelegate","type":"action","actionId":"sources.close-all","title":"Close All"},{"category":"Sources","title":"Jump to previous editing location","className":"Sources.SourcesView.ActionDelegate","contextTypes":["Sources.SourcesView"],"actionId":"sources.jump-to-previous-location","bindings":[{"shortcut":"Alt+Minus"}],"type":"action"},{"category":"Sources","title":"Jump to next editing location","className":"Sources.SourcesView.ActionDelegate","contextTypes":["Sources.SourcesView"],"actionId":"sources.jump-to-next-location","bindings":[{"shortcut":"Alt+Plus"}],"type":"action"},{"category":"Sources","title":"Close the active tab","className":"Sources.SourcesView.ActionDelegate","contextTypes":["Sources.SourcesView"],"actionId":"sources.close-editor-tab","bindings":[{"shortcut":"Alt+w"},{"keybindSets":["vsCode"],"shortcut":"Ctrl+W"},{"keybindSets":["vsCode"],"platform":"windows","shortcut":"Ctrl+F4"}],"type":"action"},{"category":"Sources","title":"Go to line","className":"Sources.SourcesView.ActionDelegate","contextTypes":["Sources.SourcesView"],"actionId":"sources.go-to-line","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"shortcut":"Ctrl+g"}],"type":"action"},{"category":"Sources","title":"Go to a function declaration/rule set","className":"Sources.SourcesView.ActionDelegate","contextTypes":["Sources.SourcesView"],"actionId":"sources.go-to-member","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"Ctrl+Shift+o"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"mac","shortcut":"Meta+Shift+o"},{"keybindSets":["vsCode"],"platform":"mac","shortcut":"Meta+T"},{"keybindSets":["vsCode"],"platform":"windows,linux","shortcut":"Ctrl+T"},{"keybindSets":["vsCode"],"shortcut":"F12"}],"type":"action"},{"category":"Debugger","bindings":[{"platform":"windows,linux","shortcut":"Ctrl+b"},{"platform":"mac","shortcut":"Meta+b"},{"keybindSets":["vsCode"],"shortcut":"F9"}],"type":"action","actionId":"debugger.toggle-breakpoint","title":"Toggle breakpoint"},{"category":"Debugger","bindings":[{"platform":"windows,linux","shortcut":"Ctrl+Shift+b"},{"platform":"mac","shortcut":"Meta+Shift+b"}],"type":"action","actionId":"debugger.toggle-breakpoint-enabled","title":"Toggle breakpoint enabled"},{"category":"Debugger","bindings":[{"platform":"windows,linux","shortcut":"Ctrl+Alt+b"},{"platform":"mac","shortcut":"Meta+Alt+b"}],"type":"action","actionId":"debugger.breakpoint-input-window","title":"Toggle breakpoint input window"},{"category":"Sources","title":"Save","className":"Sources.SourcesView.ActionDelegate","contextTypes":["Sources.SourcesView"],"actionId":"sources.save","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"Ctrl+s"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"mac","shortcut":"Meta+s"}],"type":"action"},{"category":"Sources","title":"Save all","className":"Sources.SourcesView.ActionDelegate","contextTypes":["Sources.SourcesView"],"actionId":"sources.save-all","bindings":[{"platform":"windows,linux","shortcut":"Ctrl+Shift+s"},{"platform":"mac","shortcut":"Meta+Alt+s"},{"keybindSets":["vsCode"],"platform":"windows,linux","shortcut":"Ctrl+K S"},{"keybindSets":["vsCode"],"platform":"mac","shortcut":"Meta+Alt+S"}],"type":"action"},{"category":"Sources","className":"Sources.ActionDelegate","type":"action","actionId":"sources.create-snippet","title":"Create new snippet"},{"category":"Sources","iconClass":"largeicon-add","title":"Add folder to workspace","className":"Sources.ActionDelegate","actionId":"sources.add-folder-to-workspace","type":"action","condition":"!sources.hide_add_folder"},{"showLabel":true,"type":"@UI.ToolbarItem.Provider","actionId":"sources.add-folder-to-workspace","condition":"!sources.hide_add_folder","location":"files-navigator-toolbar"},{"category":"Sources","className":"Sources.SourcesPanel","type":"@UI.ViewLocationResolver","name":"navigator-view"},{"category":"Sources","className":"Sources.SourcesPanel","type":"@UI.ViewLocationResolver","name":"sources.sidebar-top"},{"category":"Sources","className":"Sources.SourcesPanel","type":"@UI.ViewLocationResolver","name":"sources.sidebar-bottom"},{"category":"Sources","className":"Sources.SourcesPanel","type":"@UI.ViewLocationResolver","name":"sources.sidebar-tabs"},{"title":"Open memory inspector","className":"Sources.ScopeChainSidebarPane.OpenLinearMemoryInspector","experiment":"wasmDWARFDebugging","contextTypes":["ObjectUI.ObjectPropertyTreeElement"],"actionId":"sources.open-memory-inspector","type":"@UI.ContextMenu.Provider"},{"className":"Sources.JavaScriptBreakpointsSidebarPane","contextTypes":["SDK.DebuggerPausedDetails"],"type":"@UI.ContextFlavorListener"},{"className":"Sources.CallStackSidebarPane","contextTypes":["SDK.DebuggerPausedDetails"],"type":"@UI.ContextFlavorListener"},{"className":"Sources.ScopeChainSidebarPane","contextTypes":["SDK.DebuggerModel.CallFrame"],"type":"@UI.ContextFlavorListener"},{"category":"Debugger","title":"Previous call frame","className":"Sources.CallStackSidebarPane.ActionDelegate","contextTypes":["SDK.DebuggerPausedDetails"],"actionId":"debugger.previous-call-frame","bindings":[{"shortcut":"Ctrl+,"}],"type":"action"},{"category":"Debugger","title":"Next call frame","className":"Sources.CallStackSidebarPane.ActionDelegate","contextTypes":["SDK.DebuggerPausedDetails"],"actionId":"debugger.next-call-frame","bindings":[{"shortcut":"Ctrl+."}],"type":"action"},{"category":"Sources","title":"Search","className":"Sources.SearchSourcesView.ActionDelegate","actionId":"sources.search","bindings":[{"keybindSets":["devToolsDefault"],"platform":"mac","shortcut":"Meta+Alt+F"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"Ctrl+Shift+F"},{"keybindSets":["vsCode"],"platform":"windows,linux","shortcut":"Ctrl+Shift+J"},{"keybindSets":["vsCode"],"platform":"mac","shortcut":"Meta+Shift+F"},{"keybindSets":["vsCode"],"platform":"mac","shortcut":"Meta+Shift+J"}],"type":"action"},{"type":"context-menu-item","location":"mainMenu/default","actionId":"sources.search"},{"category":"Sources","bindings":[{"shortcut":"Alt+Up"}],"type":"action","actionId":"sources.increment-css","title":"Increment CSS unit by 1"},{"category":"Sources","bindings":[{"shortcut":"Alt+PageUp"}],"type":"action","actionId":"sources.increment-css-by-ten","title":"Increment CSS unit by 10"},{"category":"Sources","bindings":[{"shortcut":"Alt+Down"}],"type":"action","actionId":"sources.decrement-css","title":"Decrement CSS unit by 1"},{"category":"Sources","bindings":[{"shortcut":"Alt+PageDown"}],"type":"action","actionId":"sources.decrement-css-by-ten","title":"Decrement CSS unit by 10"}],"dependencies":["components","search","source_frame","snippets","extensions","persistence","quick_open","inline_editor","color_picker","event_listeners","object_ui","formatter","coverage","linear_memory_inspector"],"modules":["sources_module.js","sources-legacy.js"],"name":"sources"},{"dependencies":["i18n","common","sdk"],"modules":["browser_sdk.js","LogManager.js","IssuesManager.js","RelatedIssue.js","SourceFrameIssuesManager.js"],"name":"browser_sdk"},{"dependencies":["common"],"modules":[],"name":"diff"},{"dependencies":["sdk","platform","services","workspace"],"modules":[],"name":"bindings"},{"extensions":[{"className":"Snippets.SnippetsQuickOpen","prefix":"!","type":"@QuickOpen.FilteredListWidget.Provider","title":"Run snippet"}],"dependencies":["bindings","i18n","quick_open","persistence"],"modules":["snippets-legacy.js"],"name":"snippets"},{"dependencies":[],"modules":["heap_snapshot_model.js","heap_snapshot_model-legacy.js","HeapSnapshotModel.js"],"name":"heap_snapshot_model"},{"dependencies":["common","host"],"modules":["../generated/InspectorBackendCommands.js","protocol_client.js","protocol_client-legacy.js","NodeURL.js","InspectorBackend.js"],"name":"protocol_client"},{"extensions":[{"className":"Console.ConsolePanel.ConsoleRevealer","contextTypes":["Common.Console"],"type":"@Common.Revealer"}],"dependencies":["components","data_grid","host","object_ui","sdk","formatter","browser_sdk"],"modules":["console_module.js","console-legacy.js"],"name":"console"},{"dependencies":["i18n","platform","ui","host","components","data_grid","source_frame"],"modules":["protocol_monitor_module.js","protocol_monitor-legacy.js"],"name":"protocol_monitor"},{"dependencies":["workspace","diff","persistence"],"modules":["workspace_diff-legacy.js"],"name":"workspace_diff"},{"extensions":[{"className":"PerfUI.LiveHeapProfile","experiment":"liveHeapProfile","type":"late-initialization","setting":"memoryLiveHeapProfile"},{"className":"PerfUI.LineLevelProfile.LineDecorator","decoratorType":"performance","type":"@SourceFrame.LineDecorator"},{"className":"PerfUI.LineLevelProfile.LineDecorator","decoratorType":"memory","type":"@SourceFrame.LineDecorator"},{"category":"Performance","title":"Flamechart mouse wheel action:","defaultValue":"zoom","settingName":"flamechartMouseWheelAction","settingType":"enum","type":"setting","options":[{"text":"Scroll","value":"scroll","title":"Scroll"},{"text":"Zoom","value":"zoom","title":"Zoom"}]},{"category":"Memory","title":"Live memory allocation annotations","defaultValue":false,"experiment":"liveHeapProfile","settingName":"memoryLiveHeapProfile","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Show live memory allocation annotations"},{"value":false,"title":"Hide live memory allocation annotations"}]},{"category":"Performance","iconClass":"largeicon-trash-bin","title":"Collect garbage","className":"PerfUI.GCActionDelegate","actionId":"components.collect-garbage","type":"action"}],"dependencies":["i18n","ui","sdk","bindings","source_frame","text_editor"],"modules":["perf_ui_module.js","perf_ui-legacy.js"],"name":"perf_ui"},{"dependencies":[],"modules":["platform.js","utilities.js","date-utilities.js","map-utilities.js","keyboard-utilities.js","set-utilities.js","string-utilities.js","number-utilities.js","array-utilities.js","UIString.js"],"name":"platform"},{"modules":["theme_support.js","theme_support_impl.js"],"name":"theme_support"},{"modules":[],"name":"client_variations"},{"extensions":[{"category":"Sources","title":"Default indentation:","defaultValue":" ","settingName":"textEditorIndent","settingType":"enum","type":"setting","options":[{"text":"2 spaces","value":" ","title":"Set indentation to 2 spaces"},{"text":"4 spaces","value":" ","title":"Set indentation to 4 spaces"},{"text":"8 spaces","value":" ","title":"Set indentation to 8 spaces"},{"text":"Tab character","value":"\t","title":"Set indentation to tab character"}]}],"dependencies":["i18n","text_editor","ui","platform","persistence","formatter","object_ui","workspace_diff"],"modules":["source_frame_module.js","source_frame-legacy.js"],"name":"source_frame"},{"extensions":[{"className":"Main.SimpleAppProvider","type":"@Common.AppProvider","order":10},{"className":"Components.Linkifier.ContentProviderContextMenuProvider","contextTypes":["Workspace.UISourceCode","SDK.Resource","SDK.NetworkRequest"],"type":"@UI.ContextMenu.Provider"},{"className":"UI.XLink.ContextMenuProvider","contextTypes":["Node"],"type":"@UI.ContextMenu.Provider"},{"className":"Components.Linkifier.LinkContextMenuProvider","contextTypes":["Node"],"type":"@UI.ContextMenu.Provider"},{"category":"Drawer","title":"Focus debuggee","className":"InspectorMain.FocusDebuggeeActionDelegate","actionId":"inspector_main.focus-debuggee","type":"action","order":100},{"category":"Drawer","title":"Toggle drawer","className":"UI.InspectorView.ActionDelegate","actionId":"main.toggle-drawer","bindings":[{"shortcut":"Esc"}],"type":"action","order":101},{"category":"Global","title":"Next panel","className":"UI.InspectorView.ActionDelegate","actionId":"main.next-tab","bindings":[{"platform":"windows,linux","shortcut":"Ctrl+]"},{"platform":"mac","shortcut":"Meta+]"}],"type":"action"},{"category":"Global","title":"Previous panel","className":"UI.InspectorView.ActionDelegate","actionId":"main.previous-tab","bindings":[{"platform":"windows,linux","shortcut":"Ctrl+["},{"platform":"mac","shortcut":"Meta+["}],"type":"action"},{"category":"Global","title":"Reload DevTools","className":"Main.ReloadActionDelegate","actionId":"main.debug-reload","bindings":[{"shortcut":"Alt+R"}],"type":"action"},{"category":"Global","title":"Restore last dock position","className":"UI.DockController.ToggleDockActionDelegate","actionId":"main.toggle-dock","bindings":[{"platform":"windows,linux","shortcut":"Ctrl+Shift+D"},{"platform":"mac","shortcut":"Meta+Shift+D"}],"type":"action"},{"category":"Global","title":"Zoom in","className":"Main.Main.ZoomActionDelegate","actionId":"main.zoom-in","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"Ctrl+Plus"},{"platform":"windows,linux","shortcut":"Ctrl+Shift+Plus"},{"platform":"windows,linux","shortcut":"Ctrl+NumpadPlus"},{"platform":"windows,linux","shortcut":"Ctrl+Shift+NumpadPlus"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"mac","shortcut":"Meta+Plus"},{"platform":"mac","shortcut":"Meta+Shift+Plus"},{"platform":"mac","shortcut":"Meta+NumpadPlus"},{"platform":"mac","shortcut":"Meta+Shift+NumpadPlus"}],"type":"action"},{"category":"Global","title":"Zoom out","className":"Main.Main.ZoomActionDelegate","actionId":"main.zoom-out","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"Ctrl+Minus"},{"platform":"windows,linux","shortcut":"Ctrl+Shift+Minus"},{"platform":"windows,linux","shortcut":"Ctrl+NumpadMinus"},{"platform":"windows,linux","shortcut":"Ctrl+Shift+NumpadMinus"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"mac","shortcut":"Meta+Minus"},{"platform":"mac","shortcut":"Meta+Shift+Minus"},{"platform":"mac","shortcut":"Meta+NumpadMinus"},{"platform":"mac","shortcut":"Meta+Shift+NumpadMinus"}],"type":"action"},{"category":"Global","title":"Reset zoom level","className":"Main.Main.ZoomActionDelegate","actionId":"main.zoom-reset","bindings":[{"platform":"windows,linux","shortcut":"Ctrl+0"},{"platform":"windows,linux","shortcut":"Ctrl+Numpad0"},{"platform":"mac","shortcut":"Meta+Numpad0"},{"platform":"mac","shortcut":"Meta+0"}],"type":"action"},{"category":"Global","title":"Search in panel","className":"Main.Main.SearchActionDelegate","actionId":"main.search-in-panel.find","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"Ctrl+F"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"mac","shortcut":"Meta+F"},{"platform":"mac","shortcut":"F3"}],"type":"action"},{"category":"Global","title":"Cancel search","className":"Main.Main.SearchActionDelegate","actionId":"main.search-in-panel.cancel","bindings":[{"shortcut":"Esc"}],"type":"action","order":10},{"category":"Global","title":"Find next result","className":"Main.Main.SearchActionDelegate","actionId":"main.search-in-panel.find-next","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"platform":"mac","shortcut":"Meta+G"},{"platform":"windows,linux","shortcut":"Ctrl+G"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"F3"}],"type":"action"},{"category":"Global","title":"Find previous result","className":"Main.Main.SearchActionDelegate","actionId":"main.search-in-panel.find-previous","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"platform":"mac","shortcut":"Meta+Shift+G"},{"platform":"windows,linux","shortcut":"Ctrl+Shift+G"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"Shift+F3"}],"type":"action"},{"separator":true,"type":"@UI.ToolbarItem.Provider","location":"main-toolbar-left","order":100},{"separator":true,"type":"@UI.ToolbarItem.Provider","order":97,"location":"main-toolbar-right"},{"className":"Main.Main.SettingsButtonProvider","type":"@UI.ToolbarItem.Provider","order":98,"location":"main-toolbar-right"},{"className":"Main.Main.MainMenuItem","type":"@UI.ToolbarItem.Provider","order":99,"location":"main-toolbar-right"},{"className":"UI.DockController.CloseButtonProvider","type":"@UI.ToolbarItem.Provider","order":100,"location":"main-toolbar-right"},{"category":"Appearance","title":"Theme:","defaultValue":"systemPreferred","tags":"dark, light","reloadRequired":true,"settingName":"uiTheme","settingType":"enum","type":"setting","options":[{"text":"System preference","value":"systemPreferred","title":"Switch to system preferred color theme"},{"text":"Light","value":"default","title":"Switch to light theme"},{"text":"Dark","value":"dark","title":"Switch to dark theme"}]},{"category":"Appearance","title":"Panel layout:","defaultValue":"auto","settingName":"sidebarPosition","settingType":"enum","type":"setting","options":[{"text":"horizontal","value":"bottom","title":"Use horizontal panel layout"},{"text":"vertical","value":"right","title":"Use vertical panel layout"},{"text":"auto","value":"auto","title":"Use automatic panel layout"}]},{"category":"Appearance","title":"Color format:","defaultValue":"original","settingName":"colorFormat","settingType":"enum","type":"setting","options":[{"text":"As authored","value":"original","title":"Set color format as authored"},{"raw":true,"text":"HEX: #dac0de","value":"hex","title":"Set color format to HEX"},{"raw":true,"text":"RGB: rgb(128 255 255)","value":"rgb","title":"Set color format to RGB"},{"raw":true,"text":"HSL: hsl(300deg 80% 90%)","value":"hsl","title":"Set color format to HSL"}]},{"category":"Appearance","title-mac":"Enable \u2318 + 1-9 shortcut to switch panels","title":"Enable Ctrl + 1-9 shortcut to switch panels","defaultValue":false,"settingName":"shortcutPanelSwitch","settingType":"boolean","type":"setting"},{"category":"Extensions","className":"Components.Linkifier.LinkHandlerSettingUI","type":"@UI.SettingUI"},{"category":"Global","defaultValue":"right","settingName":"currentDockState","settingType":"enum","type":"setting","options":[{"text":"Right","value":"right","title":"Dock to right"},{"text":"Bottom","value":"bottom","title":"Dock to bottom"},{"text":"Left","value":"left","title":"Dock to left"},{"text":"Undocked","value":"undocked","title":"Undock into separate window"}]},{"defaultValue":"devToolsDefault","type":"setting","options":[{"text":"DevTools (Default)","value":"devToolsDefault","title":"DevTools (Default)"},{"text":"Visual Studio Code","value":"vsCode","title":"Visual Studio Code"}],"settingName":"activeKeybindSet","settingType":"enum"},{"defaultValue":[],"type":"setting","settingName":"userShortcuts","settingType":"array"},{"category":"Drawer","className":"UI.InspectorView","type":"@UI.ViewLocationResolver","name":"drawer-view"},{"category":"Drawer sidebar","className":"UI.InspectorView","type":"@UI.ViewLocationResolver","name":"drawer-sidebar"},{"category":"Panel","className":"UI.InspectorView","type":"@UI.ViewLocationResolver","name":"panel"}],"dependencies":["extensions","host","i18n","platform","sdk","persistence"],"modules":["main-legacy.js"],"name":"main"},{"extensions":[{"category":"Persistence","title":"Enable Local Overrides","defaultValue":false,"tags":"interception, override, network, rewrite, request","settingName":"persistenceNetworkOverridesEnabled","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Enable override network requests"},{"value":false,"title":"Disable override network requests"}]},{"className":"Persistence.PersistenceActions.ContextMenuProvider","contextTypes":["Workspace.UISourceCode","SDK.Resource","SDK.NetworkRequest"],"type":"@UI.ContextMenu.Provider"}],"dependencies":["i18n","bindings","workspace","components","sdk"],"modules":["persistence.js","persistence-legacy.js","PlatformFileSystem.js","IsolatedFileSystem.js","IsolatedFileSystemManager.js","FileSystemWorkspaceBinding.js","Automapping.js","NetworkPersistenceManager.js","PersistenceImpl.js","PersistenceActions.js","PersistenceUtils.js","EditFileSystemView.js","WorkspaceSettingsTab.js"],"name":"persistence"},{"dependencies":["i18n","ui"],"modules":["inline_editor_module.js"],"name":"inline_editor"},{"extensions":[{"className":"ConsoleCounters.WarningErrorCounter","type":"@UI.ToolbarItem.Provider","order":1,"location":"main-toolbar-right"}],"dependencies":["i18n","browser_sdk","common","host","sdk","ui"],"modules":["console_counters-legacy.js"],"name":"console_counters"},{"dependencies":["common","host","i18n","platform"],"modules":["workspace.js","workspace-legacy.js","FileManager.js","UISourceCode.js","WorkspaceImpl.js"],"name":"workspace"},{"dependencies":["platform"],"modules":["i18n.js","i18nImpl.js","../third_party/i18n/i18n.js"],"name":"i18n"},{"extensions":[{"className":"QuickOpen.CommandMenuProvider","prefix":">","type":"@QuickOpen.FilteredListWidget.Provider","title":"Run command"},{"className":"QuickOpen.HelpQuickOpen","prefix":"?","type":"@QuickOpen.FilteredListWidget.Provider"},{"category":"Global","title":"Run command","className":"QuickOpen.CommandMenu.ShowActionDelegate","actionId":"commandMenu.show","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"Ctrl+Shift+P"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"mac","shortcut":"Meta+Shift+P"},{"keybindSets":["vsCode"],"shortcut":"F1"}],"type":"action"},{"type":"context-menu-item","location":"mainMenu/default","actionId":"commandMenu.show"},{"category":"Global","title":"Open file","className":"QuickOpen.QuickOpen.ShowActionDelegate","actionId":"quickOpen.show","bindings":[{"keybindSets":["devToolsDefault","vsCode"],"platform":"mac","shortcut":"Meta+P"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"mac","shortcut":"Meta+O"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"Ctrl+P"},{"keybindSets":["devToolsDefault","vsCode"],"platform":"windows,linux","shortcut":"Ctrl+O"}],"type":"action","order":100},{"type":"context-menu-item","location":"mainMenu/default","actionId":"quickOpen.show"}],"dependencies":["ui","diff"],"modules":["quick_open_module.js","quick_open-legacy.js"],"name":"quick_open"},{"dependencies":["components","i18n"],"modules":["search_module.js","search-legacy.js"],"name":"search"},{"dependencies":["ui"],"modules":["data_grid_module.js"],"name":"data_grid"},{"extensions":[{"className":"Coverage.CoverageView.LineDecorator","decoratorType":"coverage","type":"@SourceFrame.LineDecorator"}],"dependencies":["bindings","common","data_grid","formatter","host","i18n","platform","sdk","source_frame","text_utils","ui","workspace"],"modules":["coverage_module.js","coverage-legacy.js"],"name":"coverage"},{"extensions":[{"iconClass":"largeicon-start-recording","toggledIconClass":"largeicon-stop-recording","className":"Input.InputTimeline.ActionDelegate","experiment":"timelineReplayEvent","toggleWithRedColor":true,"actionId":"input.toggle-recording","toggleable":true,"category":"Inputs","type":"action","options":[{"value":true,"title":"Start recording"},{"value":false,"title":"Stop recording"}]},{"iconClass":"largeicon-play","category":"Inputs","className":"Input.InputTimeline.ActionDelegate","experiment":"timelineReplayEvent","actionId":"input.start-replaying","toggleable":false,"type":"action","options":[{"value":true,"title":"Start replaying"}]},{"iconClass":"largeicon-pause","toggledIconClass":"largeicon-resume","className":"Input.InputTimeline.ActionDelegate","experiment":"timelineReplayEvent","actionId":"input.toggle-pause","toggleable":true,"category":"Inputs","type":"action","options":[{"value":true,"title":"Pause"},{"value":false,"title":"Resume"}]}],"dependencies":["i18n","sdk","ui"],"modules":["input_module.js","input-legacy.js"],"name":"input"},{"dependencies":["common","host"],"modules":["services.js","services-legacy.js","ServiceManager.js"],"name":"services"},{"dependencies":["platform","dom_extension","common","host"],"modules":["ui-legacy.js","ARIAUtils.js","ContextFlavorListener.js","ui.js","XElement.js","Widget.js","View.js","ViewManager.js","Treeoutline.js","InspectorView.js","ActionRegistration.js","ActionRegistry.js","ShortcutRegistry.js","Context.js","ContextMenu.js","GlassPane.js","Dialog.js","DockController.js","SyntaxHighlighter.js","DropTarget.js","EmptyWidget.js","FilterBar.js","FilterSuggestionBuilder.js","ForwardedInputEventHandler.js","Fragment.js","HistoryInput.js","Icon.js","Infobar.js","InplaceEditor.js","TextEditor.js","KeyboardShortcut.js","ListControl.js","ListModel.js","ListWidget.js","Panel.js","PopoverHelper.js","ProgressIndicator.js","ResizerWidget.js","RemoteDebuggingTerminatedScreen.js","ReportView.js","RootView.js","SearchableView.js","SegmentedButton.js","SettingsUI.js","SoftContextMenu.js","SoftDropDown.js","SplitWidget.js","TargetCrashedScreen.js","TextPrompt.js","ThrottledWidget.js","Toolbar.js","Tooltip.js","SuggestBox.js","TabbedPane.js","UIUtils.js","ViewRegistration.js","ZoomManager.js","Geometry.js","XLink.js","XWidget.js","utils/append-style.js","utils/create-shadow-root-with-core-styles.js","utils/focus-changed.js","utils/inject-core-styles.js","utils/measured-scrollbar-width.js","utils/register-custom-element.js","utils/utils.js"],"name":"ui"},{"dependencies":["ui","common","components","i18n","sdk","object_ui"],"modules":["event_listeners_module.js"],"name":"event_listeners"},{"dependencies":["platform"],"modules":[],"name":"dom_extension"},{"extensions":[{"defaultValue":"","type":"setting","settingName":"skipStackFramesPattern","settingType":"regex"},{"defaultValue":false,"type":"setting","settingName":"skipContentScripts","settingType":"boolean"},{"category":"Console","title":"Preserve log upon navigation","defaultValue":false,"settingName":"preserveConsoleLog","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Preserve log upon navigation"},{"value":false,"title":"Do not preserve log upon navigation"}]},{"category":"Debugger","defaultValue":false,"settingName":"pauseOnExceptionEnabled","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Pause on exceptions"},{"value":false,"title":"Do not pause on exceptions"}]},{"defaultValue":false,"type":"setting","settingName":"pauseOnCaughtException","settingType":"boolean"},{"category":"Debugger","title":"Disable JavaScript","storageType":"session","defaultValue":false,"options":[{"value":true,"title":"Disable JavaScript"},{"value":false,"title":"Enable JavaScript"}],"settingName":"javaScriptDisabled","settingType":"boolean","type":"setting","order":1},{"category":"Debugger","title":"Disable async stack traces","defaultValue":false,"options":[{"value":true,"title":"Do not capture async stack traces"},{"value":false,"title":"Capture async stack traces"}],"settingName":"disableAsyncStackTraces","settingType":"boolean","type":"setting","order":2},{"category":"Debugger","storageType":"session","defaultValue":true,"settingName":"breakpointsActive","settingType":"boolean","type":"setting"},{"category":"Elements","title":"Show rulers","defaultValue":false,"settingName":"showMetricsRulers","settingType":"boolean","type":"setting"},{"category":"Grid","title":"Show area names","defaultValue":false,"settingName":"showGridAreas","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Show grid named areas"},{"value":false,"title":"Do not show grid named areas"}]},{"category":"Grid","title":"Show track sizes","defaultValue":false,"settingName":"showGridTrackSizes","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Show grid track sizes"},{"value":false,"title":"Do not show grid track sizes"}]},{"category":"Grid","title":"Extend grid lines","defaultValue":false,"settingName":"extendGridLines","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Extend grid lines"},{"value":false,"title":"Do not extend grid lines"}]},{"category":"Grid","title":"Show line labels","defaultValue":"lineNumbers","settingName":"showGridLineLabels","settingType":"enum","type":"setting","options":[{"text":"Hide line labels","value":"none","title":"Hide line labels"},{"text":"Show line numbers","value":"lineNumbers","title":"Show line numbers"},{"text":"Show line names","value":"lineNames","title":"Show line names"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"showPaintRects","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Show paint flashing rectangles"},{"value":false,"title":"Hide paint flashing rectangles"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"showLayoutShiftRegions","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Show layout shift regions"},{"value":false,"title":"Hide layout shift regions"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"showAdHighlights","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Highlight ad frames"},{"value":false,"title":"Do not highlight ad frames"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"showDebugBorders","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Show layer borders"},{"value":false,"title":"Hide layer borders"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"showWebVitals","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Show Core Web Vitals overlay"},{"value":false,"title":"Hide Core Web Vitals overlay"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"showFPSCounter","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Show frames per second (FPS) meter"},{"value":false,"title":"Hide frames per second (FPS) meter"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"showScrollBottleneckRects","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Show scroll performance bottlenecks"},{"value":false,"title":"Hide scroll performance bottlenecks"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"showHitTestBorders","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Show hit-test borders"},{"value":false,"title":"Hide hit-test borders"}]},{"category":"Rendering","title":"Emulate a focused page","storageType":"session","defaultValue":false,"settingName":"emulatePageFocus","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Emulate a focused page"},{"value":false,"title":"Do not emulate a focused page"}]},{"category":"Rendering","tags":"query","storageType":"session","defaultValue":"","title":"Emulate CSS media type","settingName":"emulatedCSSMedia","settingType":"enum","type":"setting","options":[{"text":"No emulation","value":"","title":"Do not emulate CSS media type"},{"text":"print","value":"print","title":"Emulate CSS print media type"},{"text":"screen","value":"screen","title":"Emulate CSS screen media type"}]},{"category":"Rendering","tags":"query","storageType":"session","defaultValue":"","title":"Emulate CSS media feature prefers-color-scheme","settingName":"emulatedCSSMediaFeaturePrefersColorScheme","settingType":"enum","type":"setting","options":[{"text":"No emulation","value":"","title":"Do not emulate CSS prefers-color-scheme"},{"text":"prefers-color-scheme: light","value":"light","title":"Emulate CSS prefers-color-scheme: light"},{"text":"prefers-color-scheme: dark","value":"dark","title":"Emulate CSS prefers-color-scheme: dark"}]},{"category":"Rendering","tags":"query","storageType":"session","defaultValue":"","title":"Emulate CSS media feature prefers-reduced-motion","settingName":"emulatedCSSMediaFeaturePrefersReducedMotion","settingType":"enum","type":"setting","options":[{"text":"No emulation","value":"","title":"Do not emulate CSS prefers-reduced-motion"},{"text":"prefers-reduced-motion: reduce","value":"reduce","title":"Emulate CSS prefers-reduced-motion: reduce"}]},{"title":"Emulate CSS media feature prefers-reduced-data","storageType":"session","defaultValue":"","settingName":"emulatedCSSMediaFeaturePrefersReducedData","settingType":"enum","type":"setting","options":[{"text":"No emulation","value":"","title":"Do not emulate CSS prefers-reduced-data"},{"text":"prefers-reduced-data: reduce","value":"reduce","title":"Emulate CSS prefers-reduced-data: reduce"}]},{"title":"Emulate CSS media feature color-gamut","storageType":"session","defaultValue":"","settingName":"emulatedCSSMediaFeatureColorGamut","settingType":"enum","type":"setting","options":[{"text":"No emulation","value":"","title":"Do not emulate CSS color-gamut"},{"text":"color-gamut: srgb","value":"srgb","title":"Emulate CSS color-gamut: srgb"},{"text":"color-gamut: p3","value":"p3","title":"Emulate CSS color-gamut: p3"},{"text":"color-gamut: rec2020","value":"rec2020","title":"Emulate CSS color-gamut: rec2020"}]},{"category":"Rendering","tags":"query","storageType":"session","defaultValue":"","title":"Emulate vision deficiencies","settingName":"emulatedVisionDeficiency","settingType":"enum","type":"setting","options":[{"text":"No emulation","value":"none","title":"Do not emulate any vision deficiency"},{"text":"Blurred vision","value":"blurredVision","title":"Emulate blurred vision"},{"text":"Protanopia","value":"protanopia","title":"Emulate protanopia"},{"text":"Deuteranopia","value":"deuteranopia","title":"Emulate deuteranopia"},{"text":"Tritanopia","value":"tritanopia","title":"Emulate tritanopia"},{"text":"Achromatopsia","value":"achromatopsia","title":"Emulate achromatopsia"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"localFontsDisabled","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Disable local fonts"},{"value":false,"title":"Enable local fonts"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"avifFormatDisabled","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Disable AVIF format"},{"value":false,"title":"Enable AVIF format"}]},{"category":"Rendering","storageType":"session","defaultValue":false,"settingName":"webpFormatDisabled","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Disable WebP format"},{"value":false,"title":"Enable WebP format"}]},{"category":"Console","title":"Enable custom formatters","defaultValue":false,"settingName":"customFormatters","settingType":"boolean","type":"setting"},{"category":"Network","title":"Enable network request blocking","storageType":"session","defaultValue":false,"settingName":"requestBlockingEnabled","settingType":"boolean","type":"setting","options":[{"value":true,"title":"Enable network request blocking"},{"value":false,"title":"Disable network request blocking"}]},{"category":"Network","title":"Disable cache (while DevTools is open)","defaultValue":false,"options":[{"value":true,"title":"Disable cache (while DevTools is open)"},{"value":false,"title":"Enable cache"}],"userActionCondition":"hasOtherClients","settingName":"cacheDisabled","settingType":"boolean","type":"setting","order":0}],"dependencies":["common","host","platform","protocol_client","text_utils"],"modules":["../generated/SupportedCSSProperties.js","sdk.js","sdk-legacy.js","SDKModel.js","FrameAssociated.js","Connections.js","CompilerSourceMappingContentProvider.js","Cookie.js","CookieModel.js","CookieParser.js","ProfileTreeModel.js","Issue.js","IssuesModel.js","WebAuthnModel.js","SameSiteCookieIssue.js","MixedContentIssue.js","ContentSecurityPolicyIssue.js","CrossOriginEmbedderPolicyIssue.js","ServerTiming.js","AccessibilityModel.js","CPUProfileDataModel.js","CPUProfilerModel.js","CSSFontFace.js","CSSMatchedStyles.js","CSSMedia.js","CSSMetadata.js","CSSModel.js","CSSProperty.js","CSSPropertyParser.js","CSSRule.js","CSSStyleDeclaration.js","CSSStyleSheetHeader.js","ChildTargetManager.js","DOMDebuggerModel.js","DOMModel.js","DebuggerModel.js","EmulationModel.js","FrameManager.js","HARLog.js","HeavyAdIssue.js","LayerTreeBase.js","LogModel.js","ServiceWorkerManager.js","TracingManager.js","TracingModel.js","OverlayColorGenerator.js","OverlayPersistentHighlighter.js","OverlayModel.js","RuntimeModel.js","IsolateManager.js","ScreenCaptureModel.js","Script.js","ServiceWorkerCacheModel.js","RemoteObject.js","Resource.js","ResourceTreeModel.js","SecurityOriginManager.js","SourceMap.js","SourceMapManager.js","NetworkManager.js","NetworkLog.js","NetworkRequest.js","PaintProfiler.js","HeapProfilerModel.js","PerformanceMetricsModel.js","FilmStripModel.js","ConsoleModel.js","ConsoleModelTypes.js","PageResourceLoader.js","IOModel.js"],"name":"sdk"},{"dependencies":["common"],"modules":[],"name":"formatter"},{"extensions":[{"category":"Settings","iconClass":"largeicon-settings-gear","title":"Settings","className":"Settings.SettingsScreen.ActionDelegate","actionId":"settings.show","bindings":[{"keybindSets":["devToolsDefault"],"shortcut":"F1"},{"shortcut":"Shift+?"},{"keybindSets":["vsCode"],"platform":"windows,linux","shortcut":"Ctrl+,"},{"keybindSets":["vsCode"],"platform":"mac","shortcut":"Meta+,"}],"type":"action"},{"category":"Settings","className":"Settings.SettingsScreen.ActionDelegate","type":"action","actionId":"settings.documentation","title":"Documentation"},{"category":"Settings","title":"Shortcuts","className":"Settings.SettingsScreen.ActionDelegate","actionId":"settings.shortcuts","bindings":[{"keybindSets":["vsCode"],"platform":"windows,linux","shortcut":"Ctrl+K Ctrl+S"},{"keybindSets":["vsCode"],"platform":"mac","shortcut":"Meta+K Meta+S"}],"type":"action"},{"className":"Settings.SettingsScreen.Revealer","contextTypes":["Common.Setting"],"type":"@Common.Revealer"},{"type":"context-menu-item","location":"mainMenu/footer","actionId":"settings.shortcuts"},{"type":"context-menu-item","location":"mainMenuHelp/default","actionId":"settings.documentation"},{"category":"Settings","className":"Settings.SettingsScreen","type":"@UI.ViewLocationResolver","name":"settings-view"}],"dependencies":["components","i18n"],"modules":["settings_module.js","settings-legacy.js"],"name":"settings"},{"extensions":[{"className":"Changes.ChangesView.DiffUILocationRevealer","contextTypes":["WorkspaceDiff.DiffUILocation"],"destination":"Changes drawer","type":"@Common.Revealer"}],"dependencies":["workspace_diff","text_editor","workspace","diff","i18n","bindings","persistence","snippets","ui"],"modules":["changes_module.js","changes-legacy.js"],"name":"changes"},{"dependencies":["common","platform"],"modules":[],"name":"host"},{"extensions":[{"className":"Profiler.HeapProfilerPanel","contextTypes":["SDK.RemoteObject"],"type":"@UI.ContextMenu.Provider"}],"dependencies":["components","perf_ui","data_grid","heap_snapshot_model","i18n","object_ui"],"modules":["profiler_module.js","profiler-legacy.js"],"name":"profiler"},{"dependencies":["i18n","ui","sdk"],"modules":["color_picker_module.js"],"name":"color_picker"},{"dependencies":["components","browser_sdk","common"],"modules":[],"name":"extensions"},{"dependencies":["platform"],"modules":[],"name":"common"},{"dependencies":["i18n","bindings","platform","ui"],"modules":["components.js","components-legacy.js","JSPresentationUtils.js","ImagePreview.js","Linkifier.js","Reload.js","TargetDetachedDialog.js"],"name":"components"},{"extensions":[{"className":"ObjectUI.ObjectPropertiesSection.Renderer","contextTypes":["SDK.RemoteObject"],"type":"@UI.Renderer"}],"dependencies":["i18n","ui","sdk","components","formatter"],"modules":["object_ui_module.js","object_ui-legacy.js"],"name":"object_ui"},{"extensions":[{"className":"JavaScriptMetadata.JavaScriptMetadata","type":"@Common.JavaScriptMetadata"}],"dependencies":["common"],"modules":["javascript_metadata-legacy.js"],"name":"javascript_metadata"},{"modules":["root-legacy.js","root.js","Runtime.js"],"name":"root"},{"dependencies":["platform"],"modules":["ContentProvider.js","StaticContentProvider.js","text_utils.js","text_utils-legacy.js","Text.js","TextCursor.js","TextUtils.js","TextRange.js"],"name":"text_utils"}]);Root.applicationDescriptor={"modules":[{"name":"text_editor"},{"name":"cm"},{"name":"data_grid"},{"name":"linear_memory_inspector"},{"type":"autostart","name":"services"},{"type":"autostart","name":"browser_sdk"},{"name":"diff"},{"type":"autostart","name":"bindings"},{"name":"snippets"},{"name":"heap_snapshot_model"},{"type":"autostart","name":"protocol_client"},{"type":"autostart","name":"dom_extension"},{"name":"console"},{"name":"protocol_monitor"},{"name":"workspace_diff"},{"name":"perf_ui"},{"type":"autostart","name":"platform"},{"type":"autostart","name":"theme_support"},{"name":"sources"},{"name":"client_variations"},{"type":"autostart","name":"extensions"},{"type":"autostart","name":"main"},{"type":"autostart","name":"persistence"},{"name":"inline_editor"},{"type":"autostart","name":"console_counters"},{"type":"autostart","name":"components"},{"name":"source_frame"},{"name":"quick_open"},{"type":"autostart","name":"host"},{"name":"coverage"},{"name":"input"},{"type":"autostart","name":"i18n"},{"name":"event_listeners"},{"type":"autostart","name":"sdk"},{"name":"search"},{"name":"formatter"},{"name":"settings"},{"type":"autostart","name":"root"},{"name":"color_picker"},{"name":"profiler"},{"type":"autostart","name":"ui"},{"type":"autostart","name":"common"},{"type":"autostart","name":"workspace"},{"name":"object_ui"},{"name":"javascript_metadata"},{"name":"changes"},{"type":"autostart","name":"text_utils"}]};import*as RootModule from'./root/root.js';RootModule.Runtime.cachedResources.set("ui/checkboxTextLabel.css","/*\n * Copyright (c) 2014 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n:host {\n padding: 0;\n margin: 0;\n display: inline-flex;\n flex-shrink: 0;\n align-items: center !important;\n}\n\ninput {\n height: 12px;\n width: 12px;\n flex-shrink: 0;\n}\n\ninput.inside-datagrid {\n height: 10px;\n width: 10px;\n}\n\ninput:focus {\n outline: auto 5px -webkit-focus-ring-color;\n}\n\ninput.dt-checkbox-themed {\n appearance: none;\n margin: auto 5px auto 2px;\n border: 1px solid rgb(45 45 45);\n border-radius: 3px;\n background-color: rgb(102 102 102);\n}\n\ninput.dt-checkbox-themed::after {\n content: '';\n line-height: 10px;\n position: absolute;\n cursor: pointer;\n width: 12px;\n height: 12px;\n background: none;\n -webkit-mask-image: url(Images/checkboxCheckmark.svg);\n -webkit-mask-size: 11px 11px;\n -webkit-mask-position: 0 0;\n}\n\ninput.dt-checkbox-themed:checked::after {\n background-color: #333;\n}\n\n:host-context(.-theme-with-dark-background) input:not(.dt-checkbox-themed) {\n filter: invert(80%);\n}\n\n.dt-checkbox-text {\n margin-left: 3px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.dt-checkbox-subtitle {\n color: gray;\n}\n\n@media (forced-colors: active) {\n input.dt-checkbox-theme-preserve {\n forced-color-adjust: none;\n }\n\n input.dt-checkbox-theme-preserve:active {\n background: HighlightText;\n }\n\n input.dt-checkbox-theme-preserve:checked,\n input.dt-checkbox-theme-preserve:active:checked {\n background: Highlight;\n border-color: Highlight;\n }\n\n input.dt-checkbox-theme-preserve:hover:enabled {\n border-color: Highlight;\n }\n\n input.dt-checkbox-theme-preserve:active::before,\n input.dt-checkbox-theme-preserve:active::after {\n background-color: Highlight;\n }\n\n input.dt-checkbox-theme-preserve:checked::before,\n input.dt-checkbox-theme-preserve:checked::after,\n input.dt-checkbox-theme-preserve:active:checked::before,\n input.dt-checkbox-theme-preserve:active:checked::after {\n background-color: HighlightText;\n }\n\n input.dt-checkbox-theme-preserve:hover:checked::before,\n input.dt-checkbox-theme-preserve:hover:checked::after {\n background-color: Highlight !important;\n }\n\n input.dt-checkbox-theme-preserve:hover:checked {\n background: HighlightText;\n }\n}\n\n/*# sourceURL=ui/checkboxTextLabel.css */");RootModule.Runtime.cachedResources.set("ui/closeButton.css","/*\n * Copyright (c) 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.close-button {\n width: 14px;\n height: 14px;\n cursor: default;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.hover-icon,\n.active-icon {\n display: none;\n}\n\n.close-button:hover .default-icon,\n.close-button:active .default-icon {\n display: none;\n}\n\n.close-button:hover .hover-icon {\n display: block;\n}\n\n.close-button:active .default-icon,\n.close-button:focus-visible .default-icon {\n display: none;\n}\n\n.close-button:active .hover-icon {\n display: none !important;\n}\n\n.close-button:focus-visible .hover-icon {\n display: block;\n}\n\n.close-button:active .active-icon {\n display: block;\n}\n\n/*# sourceURL=ui/closeButton.css */");RootModule.Runtime.cachedResources.set("ui/confirmDialog.css","/*\n * Copyright (c) 2017 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.widget {\n padding: 20px;\n}\n\n.message,\n.button {\n font-size: larger;\n white-space: pre;\n margin: 5px;\n}\n\n.button {\n text-align: center;\n margin-top: 10px;\n}\n\n.button button {\n min-width: 80px;\n}\n\n.reason {\n color: var(--color-accent-red);\n}\n\n/*# sourceURL=ui/confirmDialog.css */");RootModule.Runtime.cachedResources.set("ui/dialog.css","/*\n * Copyright (c) 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.widget {\n box-shadow: var(--drop-shadow);\n background: var(--color-background);\n justify-content: flex-start;\n align-items: stretch;\n display: flex;\n}\n\n.dialog-close-button {\n position: absolute;\n right: 9px;\n top: 9px;\n z-index: 1;\n}\n\n/*# sourceURL=ui/dialog.css */");RootModule.Runtime.cachedResources.set("ui/dropTarget.css","/*\n * Copyright (c) 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n:host {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n display: flex;\n background-color: rgb(255 255 255 / 80%);\n z-index: 1000;\n}\n\n.drop-target-message {\n flex: auto;\n font-size: 30px;\n color: #999;\n display: flex;\n justify-content: center;\n align-items: center;\n margin: 20px;\n border: 4px dashed #ddd;\n pointer-events: none;\n}\n\n/*# sourceURL=ui/dropTarget.css */");RootModule.Runtime.cachedResources.set("ui/emptyWidget.css","/*\n * Copyright (c) 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.empty-bold-text {\n display: block;\n font-size: 1.5em;\n margin: 0.83em 0 0.83em;\n font-weight: bold;\n}\n\n.empty-view {\n color: var(--color-text-secondary);\n padding: 30px;\n display: flex;\n align-items: center;\n flex-direction: column;\n min-width: 70px;\n}\n\n.empty-view-scroller {\n justify-content: center;\n overflow: auto;\n}\n\n.empty-view p {\n white-space: initial;\n line-height: 18px;\n max-width: 300px;\n flex-shrink: 0;\n}\n\n/*# sourceURL=ui/emptyWidget.css */");RootModule.Runtime.cachedResources.set("ui/filter.css","/*\n * Copyright (C) 2013 Google Inc. All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are\n * met:\n *\n * * Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * * Redistributions in binary form must reproduce the above\n * copyright notice, this list of conditions and the following disclaimer\n * in the documentation and/or other materials provided with the\n * distribution.\n * * Neither the name of Google Inc. nor the names of its\n * contributors may be used to endorse or promote products derived from\n * this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n.filter-bar {\n background-color: var(--toolbar-bg-color);\n flex: none;\n flex-wrap: wrap;\n align-items: center;\n border-bottom: var(--divider-border);\n}\n\n.filter-text-filter {\n display: inline-flex;\n margin-left: 1px;\n margin-right: 2px;\n min-width: 40px;\n max-width: 200px;\n height: 24px;\n align-items: center;\n}\n\n.filter-bitset-filter {\n padding: 2px;\n display: inline-flex;\n overflow: hidden;\n height: 24px;\n position: relative;\n margin: 0;\n}\n\n.filter-bitset-filter span {\n display: inline-block;\n flex: none;\n margin: auto 2px;\n padding: 3px;\n background: transparent;\n text-shadow: rgb(255 255 255 / 50%) 0 1px 0;\n border-radius: 6px;\n overflow: hidden;\n}\n\n.filter-bitset-filter span:focus-visible {\n outline: -webkit-focus-ring-color auto 5px;\n}\n\n.filter-bitset-filter-divider {\n background-color: #ccc;\n height: 16px;\n width: 1px;\n margin: auto 2px;\n display: inline-block;\n}\n\n.filter-bitset-filter span.selected,\n.filter-bitset-filter span:hover,\n.filter-bitset-filter span:active {\n color: white;\n text-shadow: rgb(0 0 0 / 40%) 0 1px 0;\n}\n\n.filter-bitset-filter span:hover {\n background: rgb(0 0 0 / 20%);\n}\n\n.filter-bitset-filter span.selected {\n background: rgb(0 0 0 / 30%);\n}\n\n.filter-bitset-filter span:active {\n background: rgb(0 0 0 / 50%);\n}\n\n.filter-checkbox-filter {\n padding-left: 4px;\n padding-right: 2px;\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n display: inline-flex;\n vertical-align: middle;\n height: 24px;\n position: relative;\n}\n\n.filter-checkbox-filter > [is=dt-checkbox] {\n display: flex;\n margin: auto 0;\n}\n\n.filter-input-field {\n padding-left: 3px;\n width: 163px;\n height: 18px;\n line-height: 20px;\n display: inline-block;\n overflow: hidden;\n white-space: nowrap;\n cursor: auto;\n}\n\n.filter-input-container {\n margin: 0 3px;\n display: flex;\n background: var(--color-background);\n width: 163px;\n}\n\n.filter-input-container:hover {\n box-shadow: var(--focus-ring-inactive-shadow);\n}\n\n.filter-input-container:focus-within,\n.filter-text-filter:not(.filter-text-empty) .filter-input-container {\n box-shadow: var(--focus-ring-active-shadow);\n}\n\n.filter-input-clear-button {\n opacity: 70%;\n height: 16px;\n margin-top: 1px;\n}\n\n.filter-text-empty .filter-input-clear-button {\n display: none;\n}\n\n.filter-input-clear-button:hover {\n opacity: 99%;\n}\n\n@media (forced-colors: active) {\n .filter-bitset-filter span:hover,\n .filter-bitset-filter span.selected,\n .filter-bitset-filter span:active {\n forced-color-adjust: none;\n background: Highlight;\n color: HighlightText;\n }\n\n .filter-input-container {\n forced-color-adjust: none;\n background: ButtonFace;\n box-shadow: var(--focus-ring-inactive-shadow);\n }\n\n .filter-input-container:hover,\n .filter-input-container:focus-within,\n .filter-text-filter:not(.filter-text-empty) .filter-input-container {\n box-shadow: var(--focus-ring-active-shadow);\n }\n}\n\n/*# sourceURL=ui/filter.css */");RootModule.Runtime.cachedResources.set("ui/glassPane.css","/*\n * Copyright 2017 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n:host {\n position: absolute !important;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n overflow: hidden;\n contain: strict;\n background-color: transparent;\n}\n\n:host-context(.dimmed-pane) {\n background-color: rgb(255 255 255 / 50%);\n}\n\n:host-context(.no-pointer-events) {\n pointer-events: none;\n}\n\n.widget {\n display: flex;\n background-color: transparent;\n pointer-events: auto;\n flex: none;\n}\n\n.no-pointer-events {\n pointer-events: none;\n}\n\n.arrow-top {\n margin-top: -19px;\n margin-left: -9px;\n}\n\n.arrow-bottom {\n margin-left: -9px;\n}\n\n.arrow-left {\n margin-left: -19px;\n margin-top: -9px;\n}\n\n.arrow-right {\n margin-top: -9px;\n}\n\n.arrow-none {\n display: none;\n}\n\n:host-context(.-theme-with-dark-background) .arrow {\n filter: invert(80%);\n}\n\n/*# sourceURL=ui/glassPane.css */");RootModule.Runtime.cachedResources.set("ui/infobar.css","/*\n * Copyright 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.infobar {\n color: rgb(34 34 34);\n display: flex;\n flex: auto;\n border-bottom: 1px solid rgb(171 171 171);\n flex-direction: column;\n position: relative;\n padding: 1px 6px 1px;\n}\n\n.infobar:focus {\n box-shadow: 0 0 0 2px rgb(0 0 0 / 20%) inset;\n}\n\n.infobar-warning {\n background-color: rgb(253 242 192);\n}\n\n.infobar-info,\n.infobar-issue {\n background-color: rgb(255 255 255);\n}\n\n.infobar-main-row {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n min-height: 25px;\n}\n\n.infobar-info-container {\n display: flex;\n align-items: center;\n flex-grow: 1;\n flex-wrap: wrap;\n}\n\n.infobar-info-message {\n display: flex;\n margin: 5px 0;\n}\n\n.infobar-info-text {\n display: flex;\n align-items: center;\n margin: 0 4px;\n}\n\n.infobar-details-rows {\n padding: 5px 5px 0 5px;\n}\n\n.infobar-details-row {\n display: flex;\n flex-direction: column;\n line-height: 18px;\n padding-bottom: 6px;\n}\n\n.infobar-close-container {\n display: flex;\n flex-shrink: 0;\n align-items: center;\n}\n\n.infobar-close-container > .infobar-button.link-style {\n margin: 4px;\n}\n\n.infobar-button {\n color: #757575;\n cursor: pointer;\n padding: 0 4px;\n}\n\n.info-icon {\n -webkit-mask-image: url(Images/ic_info_black_18dp.svg);\n background-color: hsl(214deg 92% 50%);\n}\n\n.warning-icon {\n -webkit-mask-image: url(Images/ic_warning_black_18dp.svg);\n background-color: hsl(44deg 92% 50%);\n}\n\n.issue-icon {\n -webkit-mask-image: url(Images/issue-text-icon.svg);\n background-color: #1a73e8;\n}\n\n.icon {\n -webkit-mask-size: 18px 18px;\n width: 18px;\n height: 18px;\n flex-shrink: 0;\n}\n\n/* .infobar-issue style overrides to mimic console messages. */\n\n.infobar.infobar-issue {\n border: none;\n color: rgb(48 57 66);\n padding-top: 3px;\n line-height: 1.2;\n background-color: transparent;\n}\n\n.infobar.infobar-issue .infobar-info-text {\n margin: 0 7px;\n}\n\n.infobar.infobar-issue .infobar-main-row {\n flex-direction: row;\n min-height: 17px;\n}\n\n.infobar.infobar-issue .infobar-close-container {\n display: none;\n}\n\n.infobar.infobar-issue .infobar-button {\n padding: 0 22px 0 0;\n border: none;\n text-decoration: underline;\n margin: 0;\n height: auto;\n font-size: inherit;\n color: rgb(33% 33% 33%);\n background-color: transparent;\n}\n\n.infobar.infobar-issue .infobar-button:hover {\n color: rgb(15% 15% 15%);\n background-color: transparent;\n box-shadow: none;\n}\n\n.infobar.infobar-issue .infobar-button:focus {\n color: rgb(33% 33% 33%);\n background-color: transparent;\n box-shadow: none;\n outline-width: unset;\n}\n\n.infobar.infobar-issue .icon {\n margin-top: 1px;\n}\n\n.infobar.infobar-issue .infobar-info-message {\n flex: 1 0;\n margin: 0 1px;\n}\n\n.infobar.infobar-issue:focus {\n box-shadow: none;\n}\n\n/*# sourceURL=ui/infobar.css */");RootModule.Runtime.cachedResources.set("ui/inlineButton.css","/*\n * Copyright 2017 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n:host {\n display: inline-flex;\n border: 1px solid #ddd;\n position: relative;\n top: 7px;\n margin: 2px;\n background-color: var(--toolbar-bg-color);\n justify-content: center;\n width: 28px;\n}\n\n/*# sourceURL=ui/inlineButton.css */");RootModule.Runtime.cachedResources.set("ui/inspectorCommon.css","/*\n * Copyright 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n* {\n box-sizing: border-box;\n\n /* This is required for correct sizing of flex items because we rely\n * on an old version of the flexbox spec. */\n\n min-width: 0;\n min-height: 0;\n}\n\n:root {\n --monospace-font-size: 10px;\n --monospace-font-family: monospace;\n --source-code-font-size: 11px;\n --source-code-font-family: monospace;\n}\n\n:focus {\n outline-width: 0;\n}\n\n.platform-mac,\n:host-context(.platform-mac) {\n --monospace-font-size: 11px;\n --monospace-font-family: menlo, monospace;\n --source-code-font-size: 11px;\n --source-code-font-family: menlo, monospace;\n}\n\n.platform-windows,\n:host-context(.platform-windows) {\n --monospace-font-size: 12px;\n --monospace-font-family: consolas, lucida console, courier new, monospace;\n --source-code-font-size: 12px;\n --source-code-font-family: consolas, lucida console, courier new, monospace;\n}\n\n.platform-linux,\n:host-context(.platform-linux) {\n --monospace-font-size: 11px;\n --monospace-font-family: dejavu sans mono, monospace;\n --source-code-font-size: 11px;\n --source-code-font-family: dejavu sans mono, monospace;\n}\n\n.monospace {\n font-family: var(--monospace-font-family);\n font-size: var(--monospace-font-size) !important;\n}\n\n.source-code {\n font-family: var(--source-code-font-family);\n font-size: var(--source-code-font-size) !important;\n white-space: pre-wrap;\n}\n\nimg {\n -webkit-user-drag: none;\n}\n\niframe,\na img {\n border: none;\n}\n\n.fill {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n\niframe.fill {\n width: 100%;\n height: 100%;\n}\n\n.widget {\n position: relative;\n flex: auto;\n contain: style;\n}\n\n.hbox {\n display: flex;\n flex-direction: row !important;\n position: relative;\n}\n\n.vbox {\n display: flex;\n flex-direction: column !important;\n position: relative;\n}\n\n.view-container > .toolbar {\n border-bottom: 1px solid #eee;\n}\n\n.flex-auto {\n flex: auto;\n}\n\n.flex-none {\n flex: none;\n}\n\n.flex-centered {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n\n.overflow-auto {\n overflow: auto;\n}\n\niframe.widget {\n position: absolute;\n width: 100%;\n height: 100%;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n}\n\n.hidden {\n display: none !important;\n}\n\n.highlighted-search-result {\n border-radius: 1px;\n background-color: rgb(255 255 0 / 80%);\n outline: 1px solid rgb(255 255 0 / 80%);\n}\n\n.-theme-with-dark-background .highlighted-search-result,\n:host-context(.-theme-with-dark-background) .highlighted-search-result {\n background-color: hsl(133deg 100% 30%);\n color: #333;\n}\n\n.link {\n cursor: pointer;\n text-decoration: underline;\n color: var(--color-link);\n}\n\nbutton,\ninput,\nselect {\n /* Form elements do not automatically inherit font style from ancestors. */\n font-family: inherit;\n font-size: inherit;\n}\n\nselect option,\nselect optgroup,\ninput {\n background-color: var(--color-background);\n}\n\ninput {\n color: inherit;\n}\n\ninput::placeholder {\n color: rgb(0 0 0 / 54%);\n}\n\n:host-context(.-theme-with-dark-background) input[type=\"checkbox\"]:not(.-theme-preserve) {\n filter: invert(80%);\n}\n\n.harmony-input:not([type]),\n.harmony-input[type=number],\n.harmony-input[type=text] {\n padding: 3px 6px;\n height: 24px;\n border: none;\n box-shadow: var(--focus-ring-inactive-shadow);\n}\n\n.harmony-input:not([type]).error-input,\n.harmony-input[type=number].error-input,\n.harmony-input[type=text].error-input,\n.harmony-input:not([type]):invalid,\n.harmony-input[type=number]:invalid,\n.harmony-input[type=text]:invalid {\n box-shadow: 0 0 0 1px #ff1a00;\n}\n\n.harmony-input:not([type]):not(.error-input):not(:invalid):hover,\n.harmony-input[type=number]:not(.error-input):not(:invalid):hover,\n.harmony-input[type=text]:not(.error-input):not(:invalid):hover {\n box-shadow: var(--focus-ring-inactive-shadow);\n}\n\n.harmony-input:not([type]):not(.error-input):not(:invalid):focus,\n.harmony-input[type=number]:not(.error-input):not(:invalid):focus,\n.harmony-input[type=text]:not(.error-input):not(:invalid):focus {\n box-shadow: var(--focus-ring-active-shadow);\n}\n\n.highlighted-search-result.current-search-result {\n border-radius: 1px;\n padding: 1px;\n margin: -1px;\n background-color: rgb(255 127 0 / 80%);\n}\n\n.dimmed {\n opacity: 60%;\n}\n\n.editing {\n box-shadow: var(--drop-shadow);\n background-color: var(--color-background);\n text-overflow: clip !important;\n padding-left: 2px;\n margin-left: -2px;\n padding-right: 2px;\n margin-right: -2px;\n margin-bottom: -1px;\n padding-bottom: 1px;\n opacity: 100% !important;\n}\n\n.editing,\n.editing * {\n color: #222 !important;\n text-decoration: none !important;\n}\n\n.chrome-select {\n appearance: none;\n user-select: none;\n border: 1px solid rgb(0 0 0 / 20%);\n border-radius: 2px;\n color: #333;\n font: inherit;\n margin: 0;\n outline: none;\n padding-right: 20px;\n padding-left: 6px;\n background-image: url(Images/chromeSelect.svg);\n background-color: hsl(0deg 0% 98%);\n background-position: right center;\n background-repeat: no-repeat;\n min-height: 24px;\n min-width: 80px;\n background-size: 15px;\n}\n\n.chrome-select:disabled {\n opacity: 38%;\n}\n\n:host-context(.-theme-with-dark-background) .chrome-select {\n background-image: url(Images/chromeSelectDark.svg);\n}\n\n.chrome-select:enabled:active,\n.chrome-select:enabled:focus,\n.chrome-select:enabled:hover {\n background-color: hsl(0deg 0% 96%);\n box-shadow: 0 1px 2px rgb(0 0 0 / 10%);\n}\n\n.chrome-select:enabled:active {\n background-color: #f2f2f2;\n}\n\n.chrome-select:enabled:focus {\n border-color: transparent;\n box-shadow: 0 1px 2px rgb(0 0 0 / 10%), 0 0 0 2px rgb(66 133 244 / 40%);\n}\n\n.chrome-select-label {\n margin: 0 22px;\n flex: none;\n}\n\n.chrome-select-label p {\n margin-top: 0;\n color: gray;\n}\n\n.chrome-select optgroup,\n.chrome-select option {\n background-color: #eee;\n color: #222;\n}\n\n:not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar {\n width: 14px;\n height: 14px;\n}\n\n:not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-track {\n box-shadow: inset 0 0 1px rgb(255 255 255 / 30%);\n background: rgb(36 36 36);\n}\n\n:not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb {\n border-radius: 2px;\n background-color: #333;\n box-shadow: inset 0 0 1px rgb(255 255 255 / 50%);\n}\n\n:not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-corner {\n background-color: #242424;\n}\n\n:host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollbar {\n width: 14px;\n height: 14px;\n}\n\n:host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollbar-track {\n box-shadow: inset 0 0 1px rgb(255 255 255 / 30%);\n background: rgb(36 36 36);\n}\n\n:host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollbar-thumb {\n border-radius: 2px;\n background-color: #333;\n box-shadow: inset 0 0 1px rgb(255 255 255 / 50%);\n}\n\n:host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollbar-corner {\n background-color: #242424;\n}\n\n.gray-info-message {\n text-align: center;\n font-style: italic;\n padding: 6px;\n color: #888;\n white-space: nowrap;\n}\n\nspan[is=dt-icon-label] {\n flex: none;\n}\n\n.full-widget-dimmed-banner a {\n color: inherit;\n}\n\n.full-widget-dimmed-banner {\n color: #777;\n background-color: var(--color-background);\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n padding: 20px;\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n font-size: 13px;\n overflow: auto;\n z-index: 500;\n}\n\n[is=ui-icon] {\n display: inline-block;\n flex-shrink: 0;\n}\n\n.-theme-with-dark-background [is=ui-icon].icon-invert,\n:host-context(.-theme-with-dark-background) [is=ui-icon].icon-invert {\n filter: invert(80%) hue-rotate(180deg);\n}\n\n[is=ui-icon].icon-mask {\n background-color: rgb(110 110 110);\n -webkit-mask-position: var(--spritesheet-position);\n}\n\n[is=ui-icon]:not(.icon-mask) {\n background-position: var(--spritesheet-position);\n}\n\n.spritesheet-smallicons:not(.icon-mask) {\n background-image: url(Images/smallIcons.svg);\n}\n\n.spritesheet-smallicons.icon-mask {\n -webkit-mask-image: url(Images/smallIcons.svg);\n}\n\n.spritesheet-largeicons:not(.icon-mask) {\n background-image: url(Images/largeIcons.svg);\n}\n\n.spritesheet-largeicons.icon-mask {\n -webkit-mask-image: url(Images/largeIcons.svg);\n}\n\n.spritesheet-mediumicons:not(.icon-mask) {\n background-image: url(Images/mediumIcons.svg);\n}\n\n.spritesheet-mediumicons.icon-mask {\n -webkit-mask-image: url(Images/mediumIcons.svg);\n}\n\n.spritesheet-arrowicons {\n background-image: url(Images/popoverArrows.png);\n}\n\n.force-white-icons [is=ui-icon].spritesheet-smallicons,\n:host-context(.force-white-icons) [is=ui-icon].spritesheet-smallicons,\n[is=ui-icon].force-white-icons.spritesheet-smallicons,\n.-theme-preserve {\n -webkit-mask-image: url(Images/smallIcons.svg);\n -webkit-mask-position: var(--spritesheet-position);\n background: #fafafa !important;\n}\n\n.force-white-icons [is=ui-icon].spritesheet-largeicons,\n:host-context(.force-white-icons) [is=ui-icon].spritesheet-largeicons,\n[is=ui-icon].force-white-icons.spritesheet-largeicons,\n.-theme-preserve {\n -webkit-mask-image: url(Images/largeIcons.svg);\n -webkit-mask-position: var(--spritesheet-position);\n background: #fafafa !important;\n}\n\n.force-white-icons [is=ui-icon].spritesheet-mediumicons,\n:host-context(.force-white-icons) [is=ui-icon].spritesheet-mediumicons,\n[is=ui-icon].force-white-icons.spritesheet-mediumicons,\n.-theme-preserve {\n -webkit-mask-image: url(Images/mediumIcons.svg);\n -webkit-mask-position: var(--spritesheet-position);\n background: #fafafa !important;\n}\n\n.expandable-inline-button {\n background-color: #dedede;\n color: #333;\n cursor: pointer;\n border-radius: 3px;\n}\n\n.undisplayable-text,\n.expandable-inline-button {\n padding: 1px 3px;\n margin: 0 2px;\n font-size: 11px;\n font-family: sans-serif;\n white-space: nowrap;\n display: inline-block;\n}\n\n.undisplayable-text::after,\n.expandable-inline-button::after {\n content: attr(data-text);\n}\n\n.undisplayable-text {\n color: rgb(128 128 128);\n font-style: italic;\n}\n\n.expandable-inline-button:hover {\n background-color: #d5d5d5;\n}\n\n.expandable-inline-button:focus-visible {\n background-color: #bbb;\n}\n\n::selection {\n background-color: rgb(141 199 248 / 60%);\n}\n\n.-theme-with-dark-background *::selection,\n:host-context(.-theme-with-dark-background) *::selection {\n background-color: rgb(93 93 93 / 60%);\n}\n\n.reload-warning {\n align-self: center;\n margin-left: 10px;\n}\n\nbutton.link {\n border: none;\n background: none;\n padding: 3px;\n}\n\nbutton.link:focus-visible {\n background-color: rgb(0 0 0 / 8%);\n border-radius: 2px;\n}\n\n/* See ARIAUtils.js */\n\n[data-aria-utils-animation-hack] {\n animation: ANIMATION-HACK 0s;\n}\n\n@keyframes ANIMATION-HACK {\n /* empty keyframe to trigger the animation hack above */\n}\n\n@media (forced-colors: active) {\n .dimmed,\n .chrome-select:disabled {\n opacity: 100%;\n }\n\n [is=ui-icon].icon-mask,\n .force-white-icons [is=ui-icon].spritesheet-smallicons,\n :host-context(.force-white-icons) [is=ui-icon].spritesheet-smallicons,\n [is=ui-icon].force-white-icons.spritesheet-smallicons,\n .force-white-icons [is=ui-icon].spritesheet-largeicons,\n :host-context(.force-white-icons) [is=ui-icon].spritesheet-largeicons,\n [is=ui-icon].force-white-icons.spritesheet-largeicons,\n .force-white-icons [is=ui-icon].spritesheet-mediumicons,\n :host-context(.force-white-icons) [is=ui-icon].spritesheet-mediumicons,\n [is=ui-icon].force-white-icons.spritesheet-mediumicons,\n .-theme-preserve {\n forced-color-adjust: none;\n background-color: ButtonText;\n }\n\n .harmony-input:not([type]),\n .harmony-input[type=number],\n .harmony-input[type=text] {\n border: 1px solid ButtonText;\n }\n}\n\n/* search input with customized styling */\ninput.custom-search-input::-webkit-search-cancel-button {\n appearance: none;\n cursor: pointer;\n width: 16px;\n height: 15px;\n margin-right: 0;\n background: -32px 32px url(Images/mediumIcons.svg);\n}\n\n/* loading spinner */\n.spinner::before {\n display: block;\n width: var(--dimension, 24px);\n height: var(--dimension, 24px);\n border: var(--spinner-size, 3px) solid var(--spinner-color, grey);\n border-radius: 12px;\n clip: rect(0, var(--clip-size, 15px), var(--clip-size, 15px), 0);\n content: \"\";\n position: absolute;\n animation: spinner-animation 1s linear infinite;\n box-sizing: border-box;\n}\n\n@keyframes spinner-animation {\n from { transform: rotate(0); }\n to { transform: rotate(360deg); }\n}\n\n/** Adorner */\n.adorner-container {\n display: inline-block;\n}\n\n.adorner-container.hidden {\n display: none;\n}\n\n.adorner-container devtools-adorner {\n margin-left: 3px;\n}\n\n:host-context(.-theme-with-dark-background) devtools-adorner {\n --adorner-text-color: #ffffffde;\n --adorner-background-color: #5db0d726;\n --adorner-border: 1px solid #5db0d780;\n --adorner-border-focus: 1px solid #5db0d7;\n --adorner-text-color-active: #242424;\n --adorner-background-color-active: #5db0d7;\n}\n\n/*# sourceURL=ui/inspectorCommon.css */");RootModule.Runtime.cachedResources.set("ui/inspectorStyle.css","/*\n * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.\n * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of Apple Computer, Inc. (\"Apple\") nor the names of\n * its contributors may be used to endorse or promote products derived\n * from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS \"AS IS\" AND ANY\n * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY\n * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n:root {\n height: 100%;\n overflow: hidden;\n\n /**\n * NOTE: please don't add to these colours!\n * We are migrating to a new set of theme colors (see below for details) and over time these colors will be deprecated / removed.\n * Chat to jacktfranklin@ or petermueller@ if you have questions.\n * https://crbug.com/1122511\n */\n --accent-color: #1a73e8;\n --accent-fg-color: #1a73e8;\n --accent-color-hover: #3b86e8;\n --accent-fg-color-hover: #1567d3;\n --active-control-bg-color: #5a5a5a;\n --focus-bg-color: hsl(214deg 40% 92%);\n --focus-ring-inactive-shadow-color: #e0e0e0;\n --input-validation-error: #db1600;\n --toolbar-bg-color: #f3f3f3;\n --toolbar-hover-bg-color: #eaeaea;\n --selection-fg-color: white;\n --selection-bg-color: var(--accent-color);\n --selection-inactive-fg-color: #5a5a5a;\n --selection-inactive-bg-color: #dadada;\n --tab-selected-fg-color: #333;\n --tab-selected-bg-color: var(--toolbar-bg-color);\n --divider-color: #d0d0d0;\n --divider-border: 1px solid var(--divider-color);\n --focus-ring-inactive-shadow: 0 0 0 1px var(--focus-ring-inactive-shadow-color);\n --focus-ring-active-shadow: 0 0 0 1px var(--accent-color);\n --item-selection-bg-color: #cfe8fc;\n --item-selection-inactive-bg-color: #e0e0e0;\n --item-hover-color: rgb(56 121 217 / 10%);\n --network-grid-default-color: rgb(255 255 255 / 100%);\n --network-grid-stripe-color: rgb(245 245 245 / 100%);\n --network-grid-navigation-color: rgb(221 238 255 / 100%);\n --network-grid-hovered-color: rgb(235 242 252 / 70%);\n --network-grid-initiator-path-color: rgb(58 217 58 / 40%);\n --network-grid-initiated-path-color: rgb(217 58 58 / 40%);\n --network-grid-selected-color: rgb(219 219 219 / 60%);\n --network-grid-focus-selected-color: var(--selection-bg-color);\n --network-grid-focus-selected-color-has-error: rgb(255 240 240 / 100%);\n --network-grid-from-frame-color: rgb(224 247 250 / 40%);\n --network-grid-is-product-color: rgb(255 252 225 / 60%);\n --network-frame-divider-color: #fccc49;\n --link-color: rgb(17 85 204);\n}\n\n.-theme-with-dark-background {\n /**\n * NOTE: please don't add to these colours!\n * We are migrating to a new set of theme colors (see below for details) and over time these colors will be deprecated / removed.\n * Chat to jacktfranklin@ or petermueller@ if you have questions.\n * https://crbug.com/1122511\n */\n --accent-color: #0e639c;\n --accent-fg-color: #ccc;\n --accent-fg-color-hover: #fff;\n --accent-color-hover: rgb(17 119 187);\n --active-control-bg-color: #cdcdcd;\n --focus-bg-color: hsl(214deg 19% 27%);\n --focus-ring-inactive-shadow-color: #5a5a5a;\n --toolbar-bg-color: #292a2d; /* --google-grey-900-white-4-percent */\n --toolbar-hover-bg-color: #202020;\n --selection-fg-color: #cdcdcd;\n --selection-inactive-fg-color: #cdcdcd;\n --selection-inactive-bg-color: hsl(0deg 0% 28%);\n --tab-selected-fg-color: #eaeaea;\n --tab-selected-bg-color: #000;\n --divider-color: #525252;\n --focus-ring-inactive-shadow: 0 0 0 1px var(--focus-ring-inactive-shadow-color);\n --item-selection-bg-color: hsl(207deg 88% 22%);\n --item-selection-inactive-bg-color: #454545;\n --network-grid-default-color: rgb(36 36 36 / 100%);\n --network-grid-stripe-color: rgb(41 41 41 / 100%);\n --network-grid-navigation-color: rgb(221 238 255 / 100%);\n --network-grid-hovered-color: rgb(20 37 63 / 70%);\n --network-grid-initiator-path-color: rgb(58 217 58 / 40%);\n --network-grid-initiated-path-color: rgb(217 58 58 / 40%);\n --network-grid-selected-color: rgb(57 57 57 / 60%);\n --network-grid-focus-selected-color: var(--selection-bg-color);\n --network-grid-focus-selected-color-has-error: rgb(217 58 58 / 15%);\n --network-grid-from-frame-color: rgb(224 247 250 / 40%);\n --network-grid-is-product-color: rgb(255 252 225 / 60%);\n --link-color: rgb(171 171 171);\n}\n\nbody {\n height: 100%;\n width: 100%;\n position: relative;\n overflow: hidden;\n margin: 0;\n cursor: default;\n font-family: '.SFNSDisplay-Regular', 'Helvetica Neue', 'Lucida Grande', sans-serif;\n font-size: 12px;\n tab-size: 4;\n user-select: none;\n color: #222;\n background: var(--color-background);\n}\n\n.platform-linux {\n color: rgb(48 57 66);\n font-family: Roboto, Ubuntu, Arial, sans-serif;\n}\n\n.platform-mac {\n color: rgb(48 57 66);\n font-family: '.SFNSDisplay-Regular', 'Helvetica Neue', 'Lucida Grande', sans-serif;\n}\n\n.platform-windows {\n font-family: 'Segoe UI', Tahoma, sans-serif;\n}\n\n.panel {\n display: flex;\n overflow: hidden;\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 0;\n background-color: var(--color-background);\n}\n\n.panel-sidebar {\n overflow-x: hidden;\n background-color: var(--toolbar-bg-color);\n}\n\niframe.extension {\n flex: auto;\n width: 100%;\n height: 100%;\n}\n\niframe.panel.extension {\n display: block;\n height: 100%;\n}\n\n@media (forced-colors: active) {\n :root {\n --accent-color: Highlight;\n --focus-ring-inactive-shadow-color: ButtonText;\n }\n}\n\n/*# sourceURL=ui/inspectorStyle.css */");RootModule.Runtime.cachedResources.set("ui/themeColors.css","/* Copyright 2020 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n/**\n * These are the new set of colors for the new Light/Dark themes. See\n * https://crbug.com/1122511 and\n * https://docs.google.com/document/d/1QrSSRsJRzaQBY3zz73ZL84bTcFUV60yMtE5cuu6ED14\n * for details.\n*/\n:root {\n --color-primary: #1a73e8;\n --color-primary-variant: #4285f4;\n --color-background: #fff;\n --color-background-elevation-1: #f1f3f4;\n --color-background-elevation-2: #dee1e6;\n --color-background-highlight: #cacdd1;\n --color-text-primary: #202124;\n --color-text-secondary: #5f6368;\n --color-text-disabled: #80868b;\n --color-details-hairline: #cacdd1;\n --color-accent-red: #d93025;\n --color-accent-green: #188038;\n --color-link: var(--color-primary);\n --color-syntax-1: #c80000;\n --color-syntax-2: #881280;\n --color-syntax-3: #1a1aa6;\n --color-syntax-4: #994500;\n --color-syntax-5: #84f0ff;\n --color-syntax-6: #236e25;\n --color-syntax-7: #303942;\n --color-syntax-8: #a894a6;\n --drop-shadow:\n 0 0 0 1px rgb(0 0 0 / 5%),\n 0 2px 4px rgb(0 0 0 / 20%),\n 0 2px 6px rgb(0 0 0 / 10%);\n --box-shadow-outline-color: rgb(0 0 0 / 50%);\n}\n\n.-theme-with-dark-background {\n --color-primary: #8ab4f8;\n --color-primary-variant: #669df6;\n --color-background: #202124;\n --color-background-elevation-1: #292a2d;\n --color-background-elevation-2: #35363a;\n --color-background-highlight: #4b4c4f;\n --color-text-primary: #e8eaed;\n --color-text-secondary: #9aa0a6;\n --color-text-disabled: #80868b;\n --color-details-hairline: #494c50;\n --color-accent-red: #f28b82;\n --color-accent-green: #81c995;\n --color-link: var(--color-primary);\n --color-syntax-1: #35d4c7;\n --color-syntax-2: #5db0d7;\n --color-syntax-3: #f29766;\n --color-syntax-4: #9bbbdc;\n --color-syntax-5: #84f0ff;\n --color-syntax-6: #898989;\n --color-syntax-7: #cfd0d0;\n --color-syntax-8: #5db0d7;\n --drop-shadow:\n 0 0 0 1px rgb(255 255 255 / 20%),\n 0 2px 4px 2px rgb(0 0 0 / 20%),\n 0 2px 6px 2px rgb(0 0 0 / 10%);\n --box-shadow-outline-color: rgb(0 0 0 / 50%);\n}\n\n/*# sourceURL=ui/themeColors.css */");RootModule.Runtime.cachedResources.set("ui/inspectorSyntaxHighlight.css","/*\n * Copyright (C) 2009 Apple Inc. All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of Apple Computer, Inc. (\"Apple\") nor the names of\n * its contributors may be used to endorse or promote products derived\n * from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS \"AS IS\" AND ANY\n * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY\n * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n.cm-js-keyword { color: hsl(310deg 86% 36%); }\n.cm-js-number { color: hsl(248deg 100% 41%); }\n\n.cm-js-comment {\n color: hsl(120deg 100% 23%);\n font-style: italic;\n}\n\n.cm-js-string { color: hsl(1deg 80% 43%); }\n.cm-js-string-2 { color: hsl(1deg 99% 39%); }\n.cm-js-atom { color: hsl(310deg 86% 36%); }\n.cm-js-def { color: hsl(240deg 73% 38%); }\n.cm-js-operator { color: hsl(27deg 100% 30%); }\n.cm-js-meta { color: hsl(27deg 100% 30%); }\n.cm-js-variable-2 { color: hsl(240deg 73% 38%); }\n\n.cm-css-keyword { color: rgb(7 144 154); }\n.cm-css-number { color: rgb(50 0 255); }\n.cm-css-comment { color: rgb(0 116 0); }\n.cm-css-def { color: rgb(200 0 0); }\n.cm-css-meta { color: rgb(200 0 0); }\n.cm-css-atom { color: rgb(7 144 154); }\n.cm-css-string { color: rgb(7 144 154); }\n.cm-css-string-2 { color: rgb(7 144 154); }\n.cm-css-link { color: rgb(7 144 154); }\n.cm-css-variable { color: rgb(200 0 0); }\n.cm-css-variable-2 { color: rgb(0 0 128); }\n\n.cm-css-property,\n.webkit-css-property { color: rgb(200 0 0); }\n\n.cm-xml-meta { color: rgb(192 192 192); }\n.cm-xml-comment { color: rgb(35 110 37); }\n.cm-xml-string { color: rgb(26 26 166); }\n.cm-xml-tag { color: var(--dom-tag-name-color); }\n.cm-xml-attribute { color: rgb(153 69 0); }\n.cm-xml-link { color: #00e; }\n\n:root {\n --dom-tag-name-color: rgb(136 18 128);\n --dom-attribute-name-color: rgb(153 69 0);\n}\n\n.webkit-html-comment {\n /* Keep this in sync with view-source.css (.webkit-html-comment) */\n color: rgb(35 110 37);\n}\n\n.webkit-html-tag {\n color: rgb(168 148 166);\n}\n\n.webkit-html-tag-name,\n.webkit-html-close-tag-name {\n /* Keep this in sync with view-source.css (.webkit-html-tag) */\n color: var(--dom-tag-name-color);\n}\n\n.webkit-html-pseudo-element {\n /* This one is non-standard. */\n color: rgb(17 85 204);\n}\n\n.webkit-html-js-node,\n.webkit-html-css-node {\n white-space: pre-wrap;\n}\n\n.webkit-html-text-node {\n unicode-bidi: -webkit-isolate;\n}\n\n.webkit-html-entity-value {\n /* This one is non-standard. */\n background-color: rgb(0 0 0 / 15%);\n unicode-bidi: -webkit-isolate;\n}\n\n.webkit-html-doctype {\n /* Keep this in sync with view-source.css (.webkit-html-doctype) */\n color: rgb(192 192 192);\n}\n\n.webkit-html-attribute-name {\n /* Keep this in sync with view-source.css (.webkit-html-attribute-name) */\n color: var(--dom-attribute-name-color);\n unicode-bidi: -webkit-isolate;\n}\n\n.webkit-html-attribute-value {\n /* Keep this in sync with view-source.css (.webkit-html-attribute-value) */\n color: rgb(26 26 166);\n unicode-bidi: -webkit-isolate;\n word-break: break-all;\n}\n\n.devtools-link {\n color: var(--color-link);\n text-decoration: underline;\n}\n\n.elements-disclosure .devtools-link {\n color: var(--link-color);\n}\n\n.devtools-link [is=ui-icon] {\n vertical-align: middle;\n}\n\n.devtools-link [is=ui-icon].icon-mask {\n background-color: var(--color-link);\n}\n\n.selected .devtools-link [is=ui-icon].icon-mask {\n background-color: var(--item-selection-bg-color);\n}\n\n.devtools-link:focus-visible {\n outline-width: unset;\n}\n\n.devtools-link:not(.devtools-link-prevent-click) {\n cursor: pointer;\n}\n\n/* Default CodeMirror Theme */\n.cm-negative { color: #d44; }\n.cm-positive { color: #292; }\n\n.cm-header,\n.cm-strong { font-weight: bold; }\n.cm-em { font-style: italic; }\n\n.cm-link {\n text-decoration: underline;\n color: #00c;\n}\n\n.cm-strikethrough { text-decoration: line-through; }\n\n.cm-invalidchar { color: #f00; }\n\n.cm-header { color: blue; }\n.cm-quote { color: #090; }\n\n.cm-keyword { color: #708; }\n.cm-atom { color: #219; }\n.cm-number { color: #164; }\n.cm-def { color: #00f; }\n.cm-variable-2 { color: #05a; }\n\n.cm-variable-3,\n.cm-type { color: #085; }\n.cm-comment { color: #a50; }\n.cm-string { color: #a11; }\n.cm-string-2 { color: #f50; }\n.cm-meta { color: #555; }\n.cm-qualifier { color: #555; }\n.cm-builtin { color: #30a; }\n.cm-bracket { color: #997; }\n.cm-tag { color: #170; }\n.cm-attribute { color: #00c; }\n.cm-hr { color: #999; }\n\n.cm-error { color: #f00; }\n\n@media (forced-colors: active) {\n .devtools-link:not(.devtools-link-prevent-click) {\n forced-color-adjust: none;\n color: linktext;\n }\n\n .devtools-link:focus-visible {\n background: Highlight;\n color: HighlightText;\n }\n}\n\n/*# sourceURL=ui/inspectorSyntaxHighlight.css */");RootModule.Runtime.cachedResources.set("ui/inspectorSyntaxHighlightDark.css","/*\n * Copyright 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.cm-js-atom { color: rgb(161 247 181); }\n.cm-js-attribute { color: rgb(97 148 198); }\n.cm-js-builtin { color: rgb(159 180 214); }\n.cm-js-comment { color: rgb(116 116 116); }\n.cm-js-def { color: var(--dom-tag-name-color); }\n.cm-js-keyword { color: rgb(154 127 213); }\n.cm-js-link { color: rgb(159 180 214); }\n.cm-js-meta { color: rgb(221 251 85); }\n.cm-js-number { color: rgb(161 247 181); }\n.cm-js-operator { color: rgb(210 192 87); }\n.cm-js-property { color: rgb(210 192 87); }\n.cm-js-string { color: rgb(242 139 84); }\n.cm-js-string-2 { color: rgb(242 139 84); }\n.cm-js-tag { color: var(--dom-tag-name-color); }\n.cm-js-variable { color: rgb(217 217 217); }\n.cm-js-variable-2 { color: rgb(217 217 217); }\n.cm-atom { color: rgb(161 247 181); }\n.cm-comment { color: rgb(116 116 116); }\n.cm-variable { color: rgb(217 217 217); }\n.cm-keyword { color: rgb(154 127 213); }\n.cm-number { color: rgb(161 247 181); }\n.cm-operator { color: rgb(210 192 87); }\n.cm-css-atom { color: rgb(217 217 217); }\n.cm-css-builtin { color: rgb(255 163 79); }\n.cm-css-def { color: rgb(255 163 79); }\n.cm-css-comment { color: rgb(116 116 116); }\n.cm-css-meta { color: rgb(132 240 255); }\n.cm-css-number { color: rgb(217 217 217); }\n.cm-css-operator { color: rgb(217 217 217); }\n.cm-css-property { color: rgb(132 240 255); }\n.cm-css-qualifier { color: rgb(255 163 79); }\n.cm-css-string { color: rgb(231 194 111); }\n.cm-css-string-2 { color: rgb(217 217 217); }\n.cm-css-tag { color: rgb(255 163 79); }\n.cm-css-variable { color: rgb(255 163 79); }\n.cm-css-variable-2 { color: rgb(255 163 79); }\n.cm-xml-comment { color: rgb(137 137 137); }\n.cm-xml-error { color: rgb(198 95 95); }\n.cm-xml-string { color: rgb(242 151 102); }\n.cm-xml-tag { color: var(--dom-tag-name-color); }\n.cm-xml-attribute { color: var(--dom-attribute-name-color); }\n.cm-xml-link { color: rgb(231 194 111); }\n\n.webkit-html-attribute-name { color: var(--dom-attribute-name-color); }\n.webkit-html-attribute-value { color: rgb(242 151 102); }\n.webkit-html-comment { color: rgb(137 137 137); }\n.webkit-html-tag { color: var(--dom-tag-name-color); }\n.webkit-html-tag-name { color: var(--dom-tag-name-color); }\n.webkit-html-close-tag-name { color: var(--dom-tag-name-color); }\n.webkit-html-text-node { color: rgb(207 208 208); }\n.webkit-html-css-node { color: rgb(207 208 208); }\n.webkit-html-js-node { color: rgb(207 208 208); }\n.webkit-html-pseudo-element { color: rgb(237 119 229); }\n.webkit-css-property { color: rgb(53 212 199); }\n\n.cm-def { color: var(--dom-tag-name-color); }\n.cm-header { color: var(--dom-tag-name-color); }\n.cm-variable-2 { color: #05a; }\n\n.cm-variable-3,\n.cm-type { color: rgb(93 176 215); }\n.cm-string { color: rgb(242 139 84); }\n.cm-meta { color: rgb(221 251 85); }\n.cm-qualifier { color: rgb(255 163 79); }\n.cm-builtin { color: rgb(159 180 214); }\n.cm-bracket { color: #997; }\n.cm-tag { color: var(--dom-tag-name-color); }\n.cm-attribute { color: rgb(97 148 198); }\n.cm-hr { color: #999; }\n.cm-link { color: rgb(159 180 214); }\n\n:root {\n --dom-tag-name-color: rgb(93 176 215);\n --dom-attribute-name-color: rgb(155 187 220);\n}\n\n/*# sourceURL=ui/inspectorSyntaxHighlightDark.css */");RootModule.Runtime.cachedResources.set("ui/inspectorViewTabbedPane.css","/*\n * Copyright 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.tabbed-pane-header-tab,\n.tabbed-pane-header-tab.selected {\n height: 26px;\n margin: 0;\n border: none;\n border-left: 2px solid transparent;\n border-right: 2px solid transparent;\n}\n\n.tabbed-pane-header-tab.selected {\n border-width: 0 2px 0 2px;\n}\n\n.tabbed-pane-header-contents {\n margin-left: 0;\n}\n\n.tabbed-pane-left-toolbar {\n margin-right: 0 !important;\n}\n\n/*# sourceURL=ui/inspectorViewTabbedPane.css */");RootModule.Runtime.cachedResources.set("ui/listWidget.css","/*\n * Copyright 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.list {\n flex: auto 0 1;\n overflow-y: auto;\n border: 1px solid rgb(231 231 231);\n flex-direction: column;\n}\n\n.list-separator {\n background: rgb(231 231 231);\n height: 1px;\n}\n\n.list-item {\n flex: none;\n min-height: 30px;\n display: flex;\n align-items: center;\n position: relative;\n overflow: hidden;\n}\n\n.list-item:focus-within,\n.list-item:hover {\n background: hsl(0deg 0% 96%);\n}\n\n.list-widget-input-validation-error {\n color: var(--input-validation-error);\n margin: 0 5px;\n}\n\n.controls-container {\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-items: stretch;\n pointer-events: none;\n}\n\n.controls-gradient {\n flex: 0 1 50px;\n}\n\n.list-item:focus-within .controls-gradient,\n.list-item:hover .controls-gradient {\n background-image: linear-gradient(90deg, transparent, hsl(0deg 0% 96%));\n}\n\n.controls-buttons {\n flex: none;\n display: flex;\n flex-direction: row;\n align-items: center;\n pointer-events: auto;\n visibility: hidden;\n}\n\n.list-item:focus-within .controls-buttons,\n.list-item:hover .controls-buttons {\n background-color: hsl(0deg 0% 96%);\n visibility: visible;\n}\n\n.editor-container {\n display: flex;\n flex-direction: column;\n align-items: stretch;\n flex: none;\n background: hsl(0deg 0% 96%);\n overflow: hidden;\n}\n\n.editor-content {\n flex: auto;\n display: flex;\n flex-direction: column;\n align-items: stretch;\n}\n\n.editor-buttons {\n flex: none;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: flex-start;\n padding: 5px;\n}\n\n.editor-buttons > button {\n flex: none;\n margin-right: 10px;\n}\n\n.editor-content input {\n margin-right: 10px;\n}\n\n.editor-content input.error-input {\n background-color: var(--color-background);\n}\n\n@media (forced-colors: active) {\n .list-item:focus-within .controls-buttons,\n .list-item:hover .controls-buttons {\n background-color: canvas;\n }\n\n .list-item:focus-within,\n .list-item:hover {\n forced-color-adjust: none;\n background: Highlight;\n }\n\n .list-item:focus-within *,\n .list-item:hover * {\n color: HighlightText;\n }\n\n .list-item:focus-within .controls-gradient,\n .list-item:hover .controls-gradient {\n background-image: unset;\n }\n}\n\n/*# sourceURL=ui/listWidget.css */");RootModule.Runtime.cachedResources.set("ui/popover.css","/*\n * Copyright 2017 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.widget {\n display: flex;\n background: var(--color-background);\n border: 1px solid transparent;\n box-shadow: var(--drop-shadow);\n border-radius: 2px;\n overflow: auto;\n user-select: text;\n line-height: 11px;\n}\n\n.widget.has-padding {\n padding: 6px;\n}\n\n/*# sourceURL=ui/popover.css */");RootModule.Runtime.cachedResources.set("ui/progressIndicator.css","/*\n * Copyright (c) 2014 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.progress-indicator-shadow-stop-button {\n background-color: rgb(216 0 0) !important;\n border: 0;\n width: 10px;\n height: 12px;\n border-radius: 2px;\n}\n\n.progress-indicator-shadow-container {\n display: flex;\n flex: 1 0 auto;\n align-items: center;\n}\n\n.progress-indicator-shadow-container .title {\n text-overflow: ellipsis;\n overflow: hidden;\n max-width: 150px;\n margin-right: 2px;\n color: #777;\n}\n\n.progress-indicator-shadow-container progress {\n flex: auto;\n margin: 0 2px;\n width: 100px;\n}\n\n/*# sourceURL=ui/progressIndicator.css */");RootModule.Runtime.cachedResources.set("ui/radioButton.css","/*\n * Copyright (c) 2014 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n::slotted(input.dt-radio-button) {\n --gradient-start: #fcfcfc;\n --gradient-end: #dfdfdf;\n --radio-dot: url(Images/radioDot.png);\n\n height: 17px;\n width: 17px;\n min-width: 17px;\n border: 1px solid #a5a5a5;\n background-image: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));\n border-radius: 8px;\n appearance: none;\n vertical-align: middle;\n margin: 0 5px 5px 0;\n}\n\n::slotted(input.dt-radio-button:checked) {\n background:\n var(--radio-dot) center no-repeat,\n linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));\n}\n\n::slotted(input.dt-radio-button:focus) {\n box-shadow: var(--focus-ring-active-shadow);\n}\n\n:host-context(.-theme-with-dark-background) ::slotted(input.dt-radio-button) {\n --gradient-start: #030303;\n --gradient-end: #202020;\n --radio-dot: url(Images/radioDot-dark-theme.png);\n}\n\n::slotted(input.dt-radio-button:checked:active),\n::slotted(input.dt-radio-button:active:not(:disabled)) {\n --gradient-start: #c2c2c2;\n --gradient-end: #efefef;\n}\n\n:host-context(.-theme-with-dark-background) ::slotted(input.dt-radio-button:checked:active),\n:host-context(.-theme-with-dark-background) ::slotted(input.dt-radio-button:active:not(:disabled)) {\n --gradient-start: #3d3d3d;\n --gradient-end: #101010;\n}\n\n@media (forced-colors: active) {\n ::slotted(input.dt-radio-button) {\n --gradient-start: ButtonFace;\n --gradient-end: ButtonFace;\n }\n\n ::slotted(input.dt-radio-button:checked) {\n --gradient-start: Highlight;\n --gradient-end: Highlight;\n }\n}\n\n/*# sourceURL=ui/radioButton.css */");RootModule.Runtime.cachedResources.set("ui/remoteDebuggingTerminatedScreen.css","/*\n * Copyright (c) 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.widget {\n padding: 20px;\n}\n\n.message,\n.button {\n font-size: larger;\n white-space: pre;\n margin: 5px;\n}\n\n.button {\n text-align: center;\n margin-top: 10px;\n}\n\n.reason {\n color: #8b0000;\n}\n\n/*# sourceURL=ui/remoteDebuggingTerminatedScreen.css */");RootModule.Runtime.cachedResources.set("ui/reportView.css","/*\n * Copyright 2016 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n:host {\n background-color: var(--color-background-elevation-1);\n}\n\n.report-content-box {\n background-color: var(--color-background);\n overflow: auto;\n}\n\n.report-content-box.no-scroll {\n overflow: visible;\n}\n\n.report-header {\n border-bottom: 1px solid var(--color-details-hairline);\n padding: 12px 24px;\n}\n\n.report-header .toolbar {\n margin-bottom: -8px;\n margin-top: 5px;\n margin-left: -8px;\n}\n\n.report-title {\n font-size: 15px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.report-url,\n.report-subtitle {\n font-size: 12px;\n margin-top: 10px;\n}\n\n.report-section {\n display: flex;\n padding: 12px;\n border-bottom: 1px solid var(--color-details-hairline);\n flex-direction: column;\n}\n\n.report-section-header {\n margin-left: 18px;\n display: flex;\n flex-direction: row;\n align-items: center;\n}\n\n.report-section-title {\n flex: auto;\n text-overflow: ellipsis;\n overflow: hidden;\n font-weight: bold;\n color: var(--color-text-secondary);\n}\n\n.report-field {\n margin-top: 8px;\n display: flex;\n line-height: 28px;\n}\n\n.report-row {\n margin: 10px 0 2px 18px;\n}\n\n.report-field-name {\n color: var(--color-text-disabled);\n flex: 0 0 128px;\n text-align: right;\n padding: 0 6px;\n white-space: pre;\n}\n\n.report-field-value {\n flex: auto;\n padding: 0 6px;\n white-space: pre;\n}\n\n.report-field-value-is-flexed {\n display: flex;\n}\n\n.report-field-value-subtitle {\n color: var(--color-text-disabled);\n line-height: 14px;\n}\n\n.report-row-selectable {\n user-select: text;\n}\n\n.image-wrapper,\n.image-wrapper img {\n max-width: 200px;\n max-height: 200px;\n display: block;\n}\n\n.image-wrapper {\n height: fit-content;\n margin-right: 8px;\n}\n\n.show-mask img {\n /* The safe zone is a centrally positioned circle, with radius 2/5\n * (40%) of the minimum of the icon's width and height.\n * https://w3c.github.io/manifest/#icon-masks */\n clip-path: circle(40% at 50% 50%);\n}\n\n.show-mask .image-wrapper {\n background: url(Images/checker.png);\n}\n\n/*# sourceURL=ui/reportView.css */");RootModule.Runtime.cachedResources.set("ui/rootView.css","/*\n * Copyright 2016 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.root-view {\n background-color: var(--color-background);\n overflow: hidden;\n position: absolute !important;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n}\n\n/*# sourceURL=ui/rootView.css */");RootModule.Runtime.cachedResources.set("ui/searchableView.css","/*\n * Copyright (c) 2014 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.search-bar {\n flex: 0 0 31px;\n background-color: #eee;\n border-top: 1px solid #ccc;\n display: flex;\n overflow: hidden;\n z-index: 0;\n}\n\n.search-bar.replaceable {\n flex: 0 0 57px;\n}\n\n.search-replace {\n appearance: none;\n border: 0;\n padding: 0 3px;\n margin: 0;\n flex: 1;\n}\n\n.search-replace:focus {\n outline: none;\n}\n\n.toolbar-search {\n display: flex;\n width: 100%;\n}\n\n.toolbar-search > div {\n margin: 2px 2px;\n flex-shrink: 0;\n}\n\n.toolbar-search-inputs {\n flex-grow: 1;\n min-width: 150px;\n}\n\n.toolbar-search-navigation-controls {\n align-self: stretch;\n}\n\n.toolbar-search-navigation {\n display: inline-block;\n width: 20px;\n height: 20px;\n background-repeat: no-repeat;\n background-position: 4px 7px;\n border-left: 1px solid rgb(170 170 170);\n opacity: 30%;\n}\n\n.toolbar-search-navigation.enabled {\n opacity: 100%;\n}\n\n.toolbar-search button.search-action-button {\n font-weight: 400;\n height: 22px;\n width: 87px;\n}\n\n.toolbar-search-control {\n display: flex;\n position: relative;\n background-color: var(--color-background);\n}\n\n.toolbar-search-buttons {\n display: flex;\n flex-direction: column;\n}\n\n.toolbar-replace-control,\n#search-input-field {\n line-height: 17px;\n}\n\n.toolbar-search-control,\n.toolbar-replace-control {\n border: 1px solid rgb(163 163 163);\n height: 22px;\n border-radius: 2px;\n width: 100%;\n margin-top: 2px;\n margin-bottom: 2px;\n}\n\n.toolbar-search-navigation.enabled:active {\n background-position: 4px 7px, 0 0;\n}\n\n.toolbar-search-navigation.toolbar-search-navigation-prev {\n background-image: url(Images/searchPrev.png);\n border-left: 1px solid rgb(163 163 163);\n}\n\n:host-context(.-theme-with-dark-background) .toolbar-search-navigation {\n filter: invert(90%);\n}\n\n.toolbar-search-navigation.toolbar-search-navigation-prev.enabled:active {\n background-image: url(Images/searchPrev.png), #f2f2f2;\n}\n\n.toolbar-search-navigation.toolbar-search-navigation-next {\n background-image: url(Images/searchNext.png);\n border-left: 1px solid rgb(230 230 230);\n}\n\n.toolbar-search-navigation.toolbar-search-navigation-next.enabled:active {\n background-image: url(Images/searchNext.png), #f2f2f2;\n}\n\n.search-results-matches {\n display: inline-block;\n text-align: right;\n padding: 0 4px;\n color: rgb(165 165 165);\n align-self: center;\n}\n\n.first-row-buttons {\n display: flex;\n justify-content: space-between;\n}\n\n.toolbar-search > .replace-toggle-toolbar {\n margin: 2px -2px 0 0;\n}\n\n.toolbar-search-options {\n margin: 0 auto;\n}\n\n:host-context(#sources-panel-sources-view) .search-bar {\n flex-basis: auto;\n}\n\n:host-context(#sources-panel-sources-view) .toolbar-search {\n flex-wrap: wrap;\n}\n\n/*# sourceURL=ui/searchableView.css */");RootModule.Runtime.cachedResources.set("ui/slider.css","/*\n * Copyright 2016 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.dt-range-input {\n appearance: none;\n margin: 0;\n padding: 0;\n height: 10px;\n width: 88px;\n outline: none;\n background: none;\n}\n\n.dt-range-input::-webkit-slider-thumb,\n.-theme-preserve {\n appearance: none;\n margin: 0;\n padding: 0;\n border: 0;\n width: 12px;\n height: 12px;\n margin-top: -5px;\n border-radius: 50%;\n background-color: #4285f4;\n}\n\n.dt-range-input::-webkit-slider-runnable-track {\n appearance: none;\n margin: 0;\n padding: 0;\n width: 100%;\n height: 2px;\n background-color: rgb(0 0 0 / 26%);\n}\n\n.dt-range-input:focus::-webkit-slider-thumb,\n.-theme-preserve {\n box-shadow: 0 0 0 2px rgb(66 133 244 / 40%);\n}\n\n.dt-range-input:disabled::-webkit-slider-thumb {\n background-color: #bdbdbd;\n}\n\n@media (forced-colors: active) {\n .dt-range-input {\n forced-color-adjust: none;\n }\n}\n\n/*# sourceURL=ui/slider.css */");RootModule.Runtime.cachedResources.set("ui/smallBubble.css","/*\n * Copyright 2016 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\ndiv {\n display: inline-block;\n height: 14px;\n vertical-align: middle;\n white-space: nowrap;\n padding: 1px 4px;\n text-align: left;\n font-size: 11px;\n line-height: normal;\n font-weight: bold;\n text-shadow: none;\n color: white;\n margin-top: -1px;\n border-radius: 7px;\n}\n\ndiv.verbose {\n background-color: rgb(0 0 255);\n}\n\ndiv.info {\n background-color: rgb(128 151 189);\n}\n\ndiv.warning {\n background-color: rgb(232 164 0);\n}\n\ndiv.error {\n background-color: rgb(216 35 35);\n}\n\n/*# sourceURL=ui/smallBubble.css */");RootModule.Runtime.cachedResources.set("ui/segmentedButton.css","/*\n * Copyright 2018 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.segmented-button {\n align-items: center;\n align-content: center;\n display: flex;\n}\n\n.segmented-button-segment {\n background-color: var(--color-background);\n border: var(--divider-border);\n border-right-style: none;\n color: #5a5a5a;\n flex: 1 1 0;\n font-weight: 700;\n margin-left: -1px;\n padding: 4px 16px;\n}\n\n.segmented-button-segment:hover {\n background-color: #f4f4f4;\n color: #333;\n}\n\n.segmented-button-segment:first-child {\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n}\n\n.segmented-button-segment:last-child {\n border-bottom-right-radius: 4px;\n border-right-style: solid;\n border-top-right-radius: 4px;\n}\n\n.segmented-button-segment.segmented-button-segment-selected {\n background-color: hsl(218deg 81% 59%);\n border-color: transparent;\n color: #fafafa;\n}\n\n.segmented-button-segment.segmented-button-segment-selected:hover {\n background-color: hsl(218deg 81% 62%);\n color: #fff;\n}\n\n/* Remove a border between the selected button and its siblin */\n\n.segmented-button-segment-selected + .segmented-button-segment {\n border-left-color: transparent;\n}\n\n/*# sourceURL=ui/segmentedButton.css */");RootModule.Runtime.cachedResources.set("ui/softContextMenu.css","/*\n * Copyright (c) 2014 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.soft-context-menu {\n overflow-y: auto;\n min-width: 160px !important;\n\n /* NOTE: Keep padding in sync with padding adjustment in SoftContextMenu.js */\n padding: 4px 0 4px 0;\n border: 1px solid #b9b9b9;\n background-color: var(--color-background);\n box-shadow: var(--drop-shadow);\n\n --context-menu-hover-bg: #ebebeb;\n --context-menu-hover-color: #222;\n --context-menu-seperator-color: var(--divider-color);\n}\n\n:host-context(.-theme-with-dark-background) .soft-context-menu {\n --context-menu-hover-bg: var(--selection-bg-color);\n --context-menu-hover-color: var(--selection-fg-color);\n\n border: none;\n}\n\n:host:host-context(.platform-mac):host-context(html:not(.-theme-with-dark-background)) .soft-context-menu {\n border: 1px solid rgb(196 196 196 / 90%);\n border-top: 1px solid rgb(196 196 196 / 50%);\n border-radius: 4px;\n background-color: rgb(240 240 240);\n box-shadow: 0 5px 10px rgb(0 0 0 / 25%);\n\n --context-menu-hover-color: #fff;\n --context-menu-seperator-color: rgb(222 222 222);\n}\n\n.soft-context-menu-item {\n display: flex;\n width: 100%;\n font-size: 12px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n padding: 2px 7px 2px 8px;\n margin: 0 13px 0 0;\n white-space: nowrap;\n}\n\n.soft-context-menu-disabled {\n color: #999;\n pointer-events: none;\n}\n\n.soft-context-menu-separator {\n height: 10px;\n margin: 0 1px;\n}\n\n.soft-context-menu-separator > .separator-line {\n margin: 0;\n height: 5px;\n border-bottom: 1px solid var(--context-menu-seperator-color);\n pointer-events: none;\n}\n\n.soft-context-menu-item-mouse-over {\n border-top: 1px solid var(--context-menu-hover-bg);\n border-bottom: 1px solid var(--context-menu-hover-bg);\n background-color: var(--context-menu-hover-bg);\n color: var(--context-menu-hover-color);\n}\n\n:host:host-context(.platform-mac):host-context(html:not(.-theme-with-dark-background)) .soft-context-menu-item-mouse-over {\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n background-image: linear-gradient(to right, hsl(214deg 81% 60%), hsl(214deg 100% 56%));\n}\n\n:host:host-context(.platform-mac):host-context(html:not(.-theme-with-dark-background)) .separator-line {\n border-width: 2px;\n}\n\n.soft-context-menu-item-submenu-arrow {\n pointer-events: none;\n font-size: 11px;\n text-align: right;\n align-self: center;\n margin-left: auto;\n}\n\n.soft-context-menu-item-mouse-over .soft-context-menu-item-checkmark {\n color: var(--selection-fg-color);\n}\n\n.soft-context-menu-custom-item {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n flex: auto;\n}\n\n.soft-context-menu-shortcut {\n color: gray;\n pointer-events: none;\n flex: 1 1 auto;\n text-align: right;\n padding-left: 10px;\n}\n\n.soft-context-menu-item-mouse-over .soft-context-menu-shortcut {\n color: inherit;\n}\n\n.checkmark {\n opacity: 70%;\n pointer-events: none;\n margin: auto 5px auto 0;\n}\n\n.soft-context-menu-item-mouse-over .checkmark {\n opacity: 100%;\n filter: none;\n}\n\n:host-context(.-theme-with-dark-background) .checkmark {\n filter: invert(80%);\n}\n\n@media (forced-colors: active) {\n .soft-context-menu-item {\n forced-color-adjust: none;\n }\n\n .soft-context-menu-item-mouse-over {\n border-top-color: Highlight;\n border-bottom-color: Highlight;\n background-color: Highlight;\n color: HighlightText;\n }\n\n .soft-context-menu-shortcut {\n color: ButtonText;\n }\n\n .soft-context-menu-item-mouse-over .soft-context-menu-shortcut {\n color: HighlightText;\n }\n\n .soft-context-menu:focus-visible {\n forced-color-adjust: none;\n background: canvas;\n border-color: Highlight;\n }\n\n .soft-context-menu-separator > .separator-line {\n border-bottom-color: ButtonText;\n }\n\n .checkmark {\n opacity: 100%;\n }\n\n .spritesheet-smallicons:not(.icon-mask) {\n filter: invert(100%);\n }\n\n .soft-context-menu-item-mouse-over .spritesheet-smallicons:not(.icon-mask) {\n filter: invert(0);\n }\n}\n\n/*# sourceURL=ui/softContextMenu.css */");RootModule.Runtime.cachedResources.set("ui/softDropDown.css","/*\n * Copyright 2017 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.item.disabled {\n opacity: 50%;\n}\n\n.item-list {\n background-color: var(--color-background);\n box-shadow: var(--drop-shadow);\n overflow-x: hidden;\n overflow-y: auto;\n width: 100%;\n}\n\n.item.highlighted {\n color: var(--selection-fg-color);\n background-color: var(--selection-bg-color);\n}\n\n@media (forced-colors: active) {\n .item.disabled {\n opacity: 100%;\n }\n\n .item-list {\n border: 1px solid ButtonText;\n background-color: ButtonFace;\n }\n\n .item.highlighted {\n forced-color-adjust: none;\n color: HighlightText;\n background-color: Highlight;\n }\n}\n\n/*# sourceURL=ui/softDropDown.css */");RootModule.Runtime.cachedResources.set("ui/softDropDownButton.css","/*\n * Copyright 2017 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\nbutton.soft-dropdown {\n height: 26px;\n text-align: left;\n position: relative;\n border: none;\n background: none;\n}\n\nbutton.soft-dropdown[disabled] {\n opacity: 50%;\n}\n\nbutton.soft-dropdown > .title {\n padding-right: 5px;\n width: 120px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\nbutton.soft-dropdown:focus-visible::before {\n content: \"\";\n position: absolute;\n top: 2px;\n left: 2px;\n right: 2px;\n bottom: 2px;\n border-radius: 2px;\n background: rgb(0 0 0 / 8%);\n}\n\n@media (forced-colors: active) {\n button.soft-dropdown {\n border: 1px solid ButtonText;\n }\n\n button.soft-dropdown[disabled] {\n opacity: 100%;\n }\n\n button.soft-dropdown:disabled > .smallicon-triangle-down {\n background-color: GrayText;\n }\n}\n\n/*# sourceURL=ui/softDropDownButton.css */");RootModule.Runtime.cachedResources.set("ui/splitWidget.css","/*\n * Copyright (C) 2011 Google Inc. All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are\n * met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n *\n * 2. Redistributions in binary form must reproduce the above\n * copyright notice, this list of conditions and the following disclaimer\n * in the documentation and/or other materials provided with the\n * distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. AND ITS CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC.\n * OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n.shadow-split-widget {\n display: flex;\n overflow: hidden;\n}\n\n.shadow-split-widget-contents {\n display: flex;\n position: relative;\n flex-direction: column;\n contain: layout size style;\n}\n\n.shadow-split-widget-sidebar {\n flex: none;\n}\n\n.shadow-split-widget-main,\n.shadow-split-widget-sidebar.maximized {\n flex: auto;\n}\n\n.shadow-split-widget.hbox > .shadow-split-widget-resizer {\n position: absolute;\n top: 0;\n bottom: 0;\n width: 6px;\n z-index: 500;\n}\n\n.shadow-split-widget.vbox > .shadow-split-widget-resizer {\n position: absolute;\n left: 0;\n right: 0;\n height: 6px;\n z-index: 500;\n}\n\n.shadow-split-widget.vbox > .shadow-split-widget-sidebar.no-default-splitter {\n border: 0 !important;\n}\n\n.shadow-split-widget.vbox > .shadow-split-widget-sidebar:not(.maximized) {\n border: 0;\n border-top: 1px solid var(--divider-color);\n}\n\n.shadow-split-widget.hbox > .shadow-split-widget-sidebar:not(.maximized) {\n border: 0;\n border-left: 1px solid var(--divider-color);\n}\n\n.shadow-split-widget.vbox > .shadow-split-widget-sidebar:first-child:not(.maximized) {\n border: 0;\n border-bottom: 1px solid var(--divider-color);\n}\n\n.shadow-split-widget.hbox > .shadow-split-widget-sidebar:first-child:not(.maximized) {\n border: 0;\n border-right: 1px solid var(--divider-color);\n}\n\n:host-context(.disable-resizer-for-elements-hack) .shadow-split-widget-resizer {\n pointer-events: none;\n}\n\n/*# sourceURL=ui/splitWidget.css */");RootModule.Runtime.cachedResources.set("ui/toolbar.css","/*\n * Copyright (c) 2014 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n:host {\n flex: none;\n padding: 0 2px;\n}\n\n:host-context(.-theme-with-dark-background) {\n --accent-color: #4688f1;\n}\n\n.toolbar-shadow {\n position: relative;\n white-space: nowrap;\n height: 26px;\n overflow: hidden;\n z-index: 12;\n display: flex;\n flex: none;\n align-items: center;\n}\n\n.toolbar-shadow.wrappable {\n flex-wrap: wrap;\n overflow: visible;\n}\n\n.toolbar-shadow.toolbar-grow-vertical {\n height: initial;\n}\n\n.toolbar-shadow.vertical {\n flex-direction: column;\n height: auto;\n align-items: flex-start;\n}\n\n.toolbar-item {\n position: relative;\n display: flex;\n background-color: transparent;\n flex: none;\n align-items: center;\n justify-content: center;\n padding: 0;\n height: 26px;\n border: none;\n white-space: pre;\n}\n\n.toolbar-item,\n.toolbar-item .devtools-link {\n color: #5a5a5a;\n}\n\n.toolbar-dropdown-arrow {\n background-color: #6d6d6d;\n pointer-events: none;\n flex: none;\n}\n\n.toolbar-button.dark-text .toolbar-dropdown-arrow {\n background-color: #333;\n}\n\nselect.toolbar-item:disabled + .toolbar-dropdown-arrow {\n opacity: 50%;\n}\n\n/* Toolbar item */\n\n.toolbar-button {\n white-space: nowrap;\n overflow: hidden;\n min-width: 28px;\n background: transparent;\n border-radius: 0;\n cursor: pointer;\n}\n\n.toolbar-text {\n margin: 0 5px;\n flex: none;\n color: #5a5a5a;\n}\n\n.toolbar-text:empty {\n margin: 0;\n}\n\n.toolbar-has-dropdown {\n justify-content: space-between;\n padding: 0 3px 0 5px;\n border: 1px solid transparent;\n}\n\n.toolbar-has-dropdown-shrinkable {\n flex-shrink: 1;\n}\n\n.toolbar-has-dropdown .toolbar-text {\n margin: 0 4px 0 0;\n text-overflow: ellipsis;\n flex: auto;\n overflow: hidden;\n text-align: right;\n}\n\n.toolbar-has-glyph .toolbar-text {\n margin-left: -4px;\n}\n\n.toolbar-render-as-links * {\n font-weight: initial;\n color: var(--color-link);\n text-decoration: underline;\n cursor: pointer;\n}\n\n.toolbar-render-as-links button {\n height: 15px;\n margin: 2px;\n}\n\n.toolbar-render-as-links button:focus-visible {\n outline: auto 5px -webkit-focus-ring-color;\n}\n\n:not(.toolbar-render-as-links) .toolbar-button:focus-visible::after {\n position: absolute;\n top: 2px;\n bottom: 2px;\n left: 2px;\n right: 2px;\n background-color: rgb(0 0 0 / 8%);\n border-radius: 2px;\n content: \"\";\n}\n\n.toolbar-glyph {\n background-color: #5a5a5a;\n flex: none;\n}\n\n/* Button */\n\n.toolbar-button:disabled {\n opacity: 50%;\n}\n\n.toolbar-button.toolbar-state-on .toolbar-glyph {\n background-color: var(--accent-color);\n}\n\n.toolbar-button.toolbar-state-on.toolbar-toggle-with-red-color .toolbar-glyph,\n.toolbar-button.toolbar-state-off.toolbar-default-with-red-color .toolbar-glyph {\n background-color: rgb(216 0 0) !important;\n}\n\n.toolbar-button:not(.toolbar-has-glyph):not(.toolbar-has-dropdown):not(.largeicon-menu):not(.toolbar-button-secondary) {\n font-weight: bold;\n}\n\n.toolbar-blue-on-hover .toolbar-button:not(.toolbar-state-on):enabled:hover:not(:active) {\n background-color: var(--accent-color);\n}\n\n.toolbar-blue-on-hover .toolbar-button:not(.toolbar-state-on):enabled:active:hover {\n background-color: var(--accent-color);\n}\n\n.toolbar-toggled-gray:not(.toolbar-render-as-links) .toolbar-button:not(.toolbar-has-glyph):not(.toolbar-has-dropdown):not(.largeicon-menu):hover {\n background-color: var(--toolbar-bg-color);\n}\n\n.toolbar-button.dark-text .toolbar-text {\n color: #333 !important;\n}\n\n.toolbar-button.toolbar-state-on .toolbar-text {\n color: var(--accent-color);\n}\n\n:not(.toolbar-render-as-links) .toolbar-button:enabled:hover:not(:active) .toolbar-glyph {\n background-color: #333;\n}\n\n:not(.toolbar-render-as-links) .toolbar-button:enabled:hover:not(:active) .toolbar-text {\n color: #333;\n}\n\n.toolbar-blue-on-hover .toolbar-button:not(.toolbar-state-on):enabled:hover .toolbar-glyph {\n background-color: var(--color-background);\n}\n\n.toolbar-blue-on-hover .toolbar-button:not(.toolbar-state-on):enabled:hover .toolbar-text {\n color: white;\n}\n\n.toolbar-button.toolbar-state-on:enabled:hover:not(:active) .toolbar-glyph {\n background-color: var(--accent-color);\n}\n\n.toolbar-button.toolbar-state-on:enabled:hover:not(:active) .toolbar-text {\n color: var(--accent-color);\n}\n\n.toolbar-toggled-gray .toolbar-button.toolbar-state-on {\n background-color: var(--toolbar-bg-color) !important;\n}\n\n:host-context(.-theme-with-dark-background) .toolbar-button.toolbar-state-on.toolbar-toggle-with-red-color .toolbar-glyph,\n:host-context(.-theme-with-dark-background) .toolbar-button.toolbar-state-off.toolbar-default-with-red-color .toolbar-glyph {\n background-color: hsl(0deg 100% 65%) !important;\n}\n\n/* Checkbox */\n\n.toolbar-item.checkbox {\n padding: 0 5px 0 2px;\n}\n\n.toolbar-item.checkbox:hover {\n color: #333;\n}\n\n/* Select */\n\n.toolbar-select-container {\n display: inline-flex;\n flex-shrink: 0;\n margin-right: 6px;\n}\n\nselect.toolbar-item {\n min-width: 38px;\n appearance: none;\n border: 1px solid transparent;\n border-radius: 0;\n padding: 0 13px 0 5px;\n margin-right: -10px;\n position: relative;\n height: 22px;\n margin-top: 2px;\n margin-bottom: 2px;\n}\n\nselect.toolbar-item:disabled {\n opacity: 50%;\n}\n\nselect.toolbar-item:focus-visible {\n background: rgb(0 0 0 / 8%);\n border-radius: 2px;\n}\n\nselect.toolbar-item:focus-visible > * {\n background: var(--color-background);\n}\n\n/* Input */\n\n.toolbar-input {\n width: 120px;\n height: 19px;\n padding: 4px 3px 3px 3px;\n margin: 1px 3px;\n background-color: var(--color-background);\n border: 1px solid transparent;\n min-width: 35px;\n box-shadow: var(--focus-ring-inactive-shadow);\n}\n\n.toolbar-input.focused,\n.toolbar-input:not(.toolbar-input-empty) {\n box-shadow: var(--focus-ring-active-shadow);\n}\n\n.toolbar-input > input {\n border: none;\n flex-grow: 1;\n}\n\n.toolbar-input-clear-button {\n opacity: 70%;\n flex-basis: 13px;\n flex-shrink: 0;\n height: 16px;\n}\n\n.toolbar-input-clear-button > .search-cancel-button {\n display: block;\n}\n\n.toolbar-input-clear-button:hover {\n opacity: 99%;\n}\n\n.toolbar-input-empty .toolbar-input-clear-button {\n display: none;\n}\n\n.toolbar-prompt-proxy {\n flex: 1;\n}\n\n.toolbar-input-prompt {\n flex: 1;\n overflow: hidden;\n white-space: nowrap;\n cursor: auto;\n}\n\n/* Separator */\n\n.toolbar-divider {\n background-color: #ccc;\n width: 1px;\n margin: 5px 4px;\n height: 16px;\n}\n\n.toolbar-spacer {\n flex: auto;\n}\n\n/* Long click */\n\n.long-click-glyph {\n position: absolute;\n background-color: #5a5a5a;\n top: 0;\n left: 0;\n}\n\n.toolbar-button.emulate-active {\n background-color: rgb(163 163 163);\n}\n\n.toolbar-shadow.floating {\n flex-direction: column;\n height: auto;\n background-color: var(--color-background);\n border: 1px solid #ccc;\n margin-top: -1px;\n width: 28px;\n left: -2px;\n}\n\ninput[is=history-input] {\n border: 1px solid transparent;\n line-height: 16px;\n padding: 1px;\n}\n\ninput[is=history-input]:hover {\n box-shadow: var(--focus-ring-inactive-shadow);\n}\n\ninput[is=history-input]:focus,\ninput[is=history-input]:not(:placeholder-shown) {\n box-shadow: var(--focus-ring-active-shadow);\n}\n\n.toolbar-item.warning {\n background: hsl(0deg 100% 95%);\n}\n\ndevtools-icon.breaking-change {\n margin: 0 7px;\n}\n\n@media (forced-colors: active) {\n .toolbar-button:disabled {\n opacity: 100%;\n }\n\n .toolbar-item,\n .toolbar-text {\n color: ButtonText;\n }\n\n select.toolbar-item:disabled,\n select.toolbar-item:disabled + .toolbar-dropdown-arrow {\n opacity: 100%;\n background-color: Graytext;\n }\n\n .toolbar-button.toolbar-state-on .toolbar-glyph {\n forced-color-adjust: none;\n background-color: Highlight;\n }\n\n .toolbar-button.toolbar-state-on .toolbar-text {\n forced-color-adjust: none;\n color: Highlight;\n }\n\n :not(.toolbar-render-as-links) .toolbar-button:enabled:hover:not(:active) .toolbar-text,\n :not(.toolbar-render-as-links) .toolbar-button:enabled:focus:not(:active) .toolbar-text {\n color: HighlightText;\n }\n\n .toolbar-button:disabled [is=ui-icon].icon-mask {\n background-color: GrayText;\n color: GrayText;\n }\n\n :not(.toolbar-render-as-links) .toolbar-button:disabled .toolbar-glyph {\n background-color: GrayText;\n color: GrayText;\n }\n\n .toolbar-button:enabled.hover:not(:active) .toolbar-glyph,\n .toolbar-button:focus,\n .toolbar-button:hover:enabled,\n .toolbar-toggled-gray:not(.toolbar-render-as-links) .toolbar-button:not(.toolbar-has-glyph):not(.toolbar-has-dropdown):not(.largeicon-menu):hover {\n forced-color-adjust: none;\n background-color: Highlight;\n }\n\n :not(.toolbar-render-as-links) .toolbar-button:enabled:hover .toolbar-glyph,\n :not(.toolbar-render-as-links) .toolbar-button:enabled:focus .toolbar-glyph,\n :not(.toolbar-render-as-links) .toolbar-button:enabled:hover:not(:active) .toolbar-glyph,\n .toolbar-button:enabled:hover [is=ui-icon].icon-mask,\n .toolbar-button:enabled:focus [is=ui-icon].icon-mask {\n background-color: HighlightText;\n }\n\n .toolbar-input {\n forced-color-adjust: none;\n background: canvas;\n box-shadow: var(--focus-ring-inactive-shadow);\n }\n\n .toolbar-input.focused,\n .toolbar-input:not(.toolbar-input-empty) {\n forced-color-adjust: none;\n background: canvas;\n box-shadow: var(--focus-ring-active-shadow);\n }\n\n .toolbar-input:hover {\n box-shadow: var(--focus-ring-active-shadow);\n }\n\n .toolbar-item .devtools-link {\n color: linktext;\n }\n}\n\n/*# sourceURL=ui/toolbar.css */");RootModule.Runtime.cachedResources.set("ui/suggestBox.css","/*\n * Copyright (C) 2011 Google Inc. All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are\n * met:\n *\n * * Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * * Redistributions in binary form must reproduce the above\n * copyright notice, this list of conditions and the following disclaimer\n * in the documentation and/or other materials provided with the\n * distribution.\n * * Neither the name of Google Inc. nor the names of its\n * contributors may be used to endorse or promote products derived from\n * this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n:host {\n display: flex;\n flex: auto;\n}\n\n.suggest-box {\n flex: auto;\n background-color: var(--color-background);\n pointer-events: auto;\n margin-left: -3px;\n box-shadow: var(--drop-shadow);\n overflow-x: hidden;\n}\n\n.suggest-box-content-item {\n padding: 1px 0 1px 1px;\n margin: 0;\n border: 1px solid transparent;\n white-space: nowrap;\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n\n.suggest-box-content-item.secondary {\n background-color: #f9f9f9;\n}\n\n.suggestion-title {\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.suggestion-title span {\n white-space: pre;\n}\n\n.suggestion-subtitle {\n flex: auto;\n text-align: right;\n color: #999;\n margin-right: 3px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.suggestion-icon {\n user-select: none;\n align-self: center;\n flex-shrink: 0;\n}\n\n.suggest-box-content-item devtools-icon {\n --icon-color: #000;\n\n margin-right: 1px;\n}\n\n.suggest-box-content-item .query {\n font-weight: bold;\n}\n\n.suggest-box-content-item .spacer {\n display: inline-block;\n width: 20px;\n}\n\n.suggest-box-content-item.selected {\n background-color: var(--selection-bg-color);\n}\n\n.suggest-box-content-item.selected devtools-icon {\n --icon-color: #fff;\n}\n\n.suggest-box-content-item.selected > span {\n color: var(--selection-fg-color);\n}\n\n.suggest-box-content-item:hover:not(.selected) {\n background-color: var(--item-hover-color);\n}\n\n:host-context(.-theme-with-dark-background) .suggest-box-content-item devtools-icon {\n --icon-color: #fff;\n}\n\n:host-context(.-theme-with-dark-background) .suggest-box-content-item.selected devtools-icon {\n --icon-color: #fff;\n}\n\n@media (forced-colors: active) {\n .suggest-box-content-item.selected {\n forced-color-adjust: none;\n background-color: Highlight;\n }\n\n .suggest-box-content-item.selected > span {\n color: HighlightText;\n }\n}\n\n/*# sourceURL=ui/suggestBox.css */");RootModule.Runtime.cachedResources.set("ui/tabbedPane.css","/*\n * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.\n * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>\n * Copyright (C) 2011 Google Inc. All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are\n * met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n *\n * 2. Redistributions in binary form must reproduce the above\n * copyright notice, this list of conditions and the following disclaimer\n * in the documentation and/or other materials provided with the\n * distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. AND ITS CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC.\n * OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n.tabbed-pane {\n flex: auto;\n overflow: hidden;\n}\n\n.tabbed-pane-content {\n position: relative;\n overflow: auto;\n flex: auto;\n display: flex;\n flex-direction: column;\n}\n\n.tabbed-pane-content.has-no-tabs {\n background-color: lightgray;\n}\n\n.tabbed-pane-placeholder {\n font-size: 14px;\n text-align: center;\n width: fit-content;\n margin: 20px auto 0;\n text-shadow: rgb(255 255 255 / 75%) 0 1px 0;\n line-height: 28px;\n overflow: hidden;\n}\n\n.tabbed-pane-placeholder-row {\n display: flex;\n white-space: nowrap;\n padding: 0 5px;\n margin: 2px;\n}\n\n.tabbed-pane-placeholder-row:focus-visible {\n outline-width: unset;\n}\n\n.tabbed-pane-placeholder-key {\n flex: 1;\n text-align: right;\n padding-right: 14px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.tabbed-pane-no-shortcut {\n flex: 1;\n text-align: center;\n}\n\n.tabbed-pane-placeholder-value {\n flex: 1;\n text-align: left;\n padding-left: 14px;\n}\n\n.tabbed-pane-header {\n display: flex;\n flex: 0 0 27px;\n border-bottom: 1px solid #ccc;\n overflow: visible;\n width: 100%;\n background-color: var(--toolbar-bg-color);\n}\n\n.tabbed-pane-header-contents {\n flex: auto;\n pointer-events: none;\n margin-left: 0;\n position: relative;\n}\n\n.tabbed-pane-header-contents > * {\n pointer-events: initial;\n}\n\n.tabbed-pane-header-tab-icon {\n min-width: 14px;\n display: flex;\n align-items: center;\n margin-right: 2px;\n}\n\n.tabbed-pane-header-tab {\n float: left;\n padding: 2px 0.8em;\n height: 26px;\n line-height: 16px;\n white-space: nowrap;\n cursor: default;\n display: flex;\n align-items: center;\n color: #5a5a5a;\n}\n\n.tabbed-pane-header-tab.closeable {\n padding-right: 4px;\n}\n\n.tabbed-pane-header-tab:hover,\n.tabbed-pane-shadow .tabbed-pane-header-tab:focus-visible {\n color: #333;\n background-color: var(--toolbar-hover-bg-color);\n}\n\n.tabbed-pane-header-tab-title {\n text-overflow: ellipsis;\n overflow: hidden;\n}\n\n.tabbed-pane-header-tab.measuring {\n visibility: hidden;\n}\n\n.tabbed-pane-header-tab.selected {\n border-bottom: none;\n background-color: var(--tab-selected-bg-color);\n color: var(--tab-selected-fg-color);\n}\n\n.tabbed-pane-header-tab.dragging {\n position: relative;\n box-shadow: 0 1px 4px 0 rgb(0 0 0 / 37%);\n background-color: #e5e5e5;\n}\n\n.tabbed-pane-header-tab .tabbed-pane-close-button {\n margin: 0 -3px 0 4px;\n visibility: hidden;\n}\n\n.tabbed-pane-header-tab:hover .tabbed-pane-close-button,\n.tabbed-pane-header-tab.selected .tabbed-pane-close-button {\n visibility: visible;\n}\n\n.tabbed-pane-header-tabs-drop-down-container {\n float: left;\n opacity: 80%;\n cursor: pointer;\n display: flex;\n align-items: center;\n height: 100%;\n}\n\n.tabbed-pane-header-tabs-drop-down-container > .chevron-icon {\n background-color: hsl(0deg 0% 20% / 100%);\n display: block;\n}\n\n.tabbed-pane-header-tabs-drop-down-container:hover,\n.tabbed-pane-header-tabs-drop-down-container:focus-visible {\n background-color: rgb(0 0 0 / 8%);\n}\n\n.tabbed-pane-header-tabs-drop-down-container.measuring {\n visibility: hidden;\n}\n\n.tabbed-pane-header-tabs-drop-down-container:active {\n opacity: 80%;\n}\n\n/* Web page style */\n\n.tabbed-pane-shadow.vertical-tab-layout {\n flex-direction: row !important;\n}\n\n.tabbed-pane-shadow.vertical-tab-layout .tabbed-pane-header {\n background-color: transparent;\n border: none transparent !important;\n width: auto;\n flex: 0 0 auto;\n flex-direction: column;\n padding-top: 10px;\n overflow: hidden;\n}\n\n.tabbed-pane-shadow.vertical-tab-layout .tabbed-pane-content {\n padding: 10px 10px 10px 0;\n overflow-x: hidden;\n}\n\n.tabbed-pane-shadow.vertical-tab-layout .tabbed-pane-header-contents {\n margin: 0;\n flex: none;\n}\n\n.tabbed-pane-shadow.vertical-tab-layout .tabbed-pane-header-tabs {\n display: flex;\n flex-direction: column;\n width: 120px;\n}\n\n.tabbed-pane-shadow.vertical-tab-layout .tabbed-pane-header-tab {\n border: none transparent;\n font-weight: normal;\n text-shadow: none;\n color: #777;\n height: 26px;\n padding-left: 10px;\n border-left: 6px solid transparent;\n margin: 0;\n display: flex;\n align-items: center;\n}\n\n.tabbed-pane-shadow.vertical-tab-layout .tabbed-pane-header-tab:not(.selected) {\n cursor: pointer !important;\n}\n\n.tabbed-pane-shadow.vertical-tab-layout .tabbed-pane-header-tab.selected {\n color: inherit;\n border: none transparent;\n border-left: 6px solid #666;\n}\n\n.tabbed-pane-tab-slider {\n height: 2px;\n position: absolute;\n bottom: -1px;\n background-color: var(--accent-color);\n left: 0;\n z-index: 50;\n transform-origin: 0 100%;\n transition: transform 150ms cubic-bezier(0, 0, 0.2, 1);\n visibility: hidden;\n}\n\n:host-context(.-theme-with-dark-background) .tabbed-pane-tab-slider {\n display: none;\n}\n\n@media (-webkit-min-device-pixel-ratio: 1.1) {\n .tabbed-pane-tab-slider {\n border-top: none;\n }\n}\n\n.tabbed-pane-tab-slider.enabled {\n visibility: visible;\n}\n\n.tabbed-pane-header-tab.disabled {\n opacity: 50%;\n pointer-events: none;\n}\n\n.tabbed-pane-left-toolbar {\n margin-right: -4px;\n flex: none;\n}\n\n.tabbed-pane-right-toolbar {\n margin-left: -4px;\n flex: none;\n}\n\n@media (forced-colors: active) {\n .tabbed-pane-tab-slider {\n forced-color-adjust: none;\n background-color: Highlight;\n }\n\n .tabbed-pane-header {\n forced-color-adjust: none;\n border-bottom: 1px solid transparent;\n background-color: ButtonFace;\n }\n\n .tabbed-pane-header-tab,\n .tabbed-pane-header-tab.selected {\n background: ButtonFace;\n color: ButtonText;\n }\n\n .tabbed-pane-header-tab:hover,\n .tabbed-pane-shadow .tabbed-pane-header-tab:focus-visible {\n background-color: Highlight;\n color: HighlightText;\n }\n\n .tabbed-pane-header-tabs-drop-down-container {\n opacity: 100%;\n }\n\n .tabbed-pane-header-tabs-drop-down-container:hover,\n .tabbed-pane-header-tabs-drop-down-container:focus-visible {\n background-color: Highlight;\n }\n\n .tabbed-pane-header-tabs-drop-down-container > .chevron-icon {\n background-color: ButtonText;\n }\n\n .tabbed-pane-header-tabs-drop-down-container:hover > .chevron-icon,\n .tabbed-pane-header-tabs-drop-down-container:focus-visible > .chevron-icon {\n background-color: HighlightText;\n }\n}\n\n/*# sourceURL=ui/tabbedPane.css */");RootModule.Runtime.cachedResources.set("ui/targetCrashedScreen.css","/*\n * Copyright (c) 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.widget {\n padding: 25px;\n}\n\n.message {\n font-size: larger;\n white-space: pre;\n margin: 5px;\n}\n\n/*# sourceURL=ui/targetCrashedScreen.css */");RootModule.Runtime.cachedResources.set("ui/textButton.css","/*\n * Copyright (c) 2014 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.text-button {\n margin: 2px;\n height: 24px;\n font-size: 12px;\n border: 1px solid rgb(0 0 0 / 20%);\n border-radius: 4px;\n padding: 0 12px;\n font-weight: 500;\n color: var(--accent-fg-color);\n background-color: var(--color-background);\n flex: none;\n white-space: nowrap;\n}\n\n.text-button:disabled {\n opacity: 38%;\n}\n\n.text-button:not(:disabled):focus,\n.text-button:not(:disabled):hover,\n.text-button:not(:disabled):active {\n background-color: var(--toolbar-bg-color);\n box-shadow: 0 1px 2px rgb(0 0 0 / 10%);\n cursor: pointer;\n}\n\n.text-button:not(:disabled):active {\n background-color: #f2f2f2;\n}\n\n.text-button:not(:disabled):focus {\n box-shadow: 0 1px 2px rgb(0 0 0 / 10%), 0 0 0 2px rgb(66 133 244 / 40%);\n}\n\n.text-button:not(:disabled):not(.running):focus,\n.text-button:not(:disabled):not(.running):hover,\n.text-button:not(:disabled):not(.running):active {\n color: var(--accent-fg-color-hover);\n}\n\n.text-button.primary-button,\n.-theme-preserve {\n background-color: var(--accent-color);\n border: none;\n color: #fff;\n}\n\n.text-button.link-style {\n background: none;\n border: none;\n padding: 0 !important;\n font: inherit;\n cursor: pointer;\n height: 18px;\n}\n\n.text-button.primary-button:not(:disabled):focus,\n.text-button.primary-button:not(:disabled):hover,\n.text-button.primary-button:not(:disabled):active,\n.-theme-preserve {\n background-color: var(--accent-color-hover);\n color: #fff;\n}\n\n.-theme-with-dark-background .text-button:not(.primary-button):not(:disabled):focus,\n.-theme-with-dark-background .text-button:not(.primary-button):not(:disabled):hover,\n.-theme-with-dark-background .text-button:not(.primary-button):not(:disabled):active {\n background-color: #313131;\n box-shadow: 0 1px 2px rgb(0 0 0 / 10%);\n}\n\n.-theme-with-dark-background .text-button:not(.primary-button):not(:disabled):focus {\n box-shadow: 0 1px 2px rgb(0 0 0 / 10%), 0 0 0 2px rgb(94 151 246 / 60%);\n}\n\n.-theme-with-dark-background .text-button:not(.primary-button):not(:disabled):active {\n background-color: #3e3e3e;\n}\n\n@media (forced-colors: active) {\n .text-button {\n background-color: ButtonFace;\n color: ButtonText;\n border-color: ButtonText;\n }\n\n .text-button:disabled {\n forced-color-adjust: none;\n opacity: 100%;\n background: ButtonFace;\n border-color: GrayText;\n color: GrayText;\n }\n\n .text-button:not(:disabled):focus {\n forced-color-adjust: none;\n background-color: ButtonFace;\n color: ButtonText;\n border-color: Highlight;\n box-shadow: var(--focus-ring-active-shadow);\n }\n\n .text-button:not(:disabled):hover,\n .text-button:not(:disabled):active {\n forced-color-adjust: none;\n background-color: Highlight;\n color: HighlightText;\n box-shadow: var(--accent-color);\n }\n\n .text-button.primary-button {\n forced-color-adjust: none;\n background-color: Highlight;\n color: HighlightText;\n border: 1px solid Highlight;\n }\n\n .text-button.primary-button:not(:disabled):focus {\n background-color: Highlight;\n color: HighlightText;\n border-color: ButtonText;\n }\n\n .text-button.primary-button:not(:disabled):hover,\n .text-button.primary-button:not(:disabled):active {\n background-color: HighlightText;\n color: Highlight;\n border-color: Highlight;\n }\n}\n\n/*# sourceURL=ui/textButton.css */");RootModule.Runtime.cachedResources.set("ui/textPrompt.css","/*\n * Copyright (c) 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.text-prompt-root {\n display: flex;\n align-items: center;\n}\n\n.text-prompt-editing {\n box-shadow: var(--drop-shadow);\n background-color: var(--color-background);\n text-overflow: clip !important;\n padding-left: 2px;\n margin-left: -2px;\n padding-right: 2px;\n margin-right: -2px;\n margin-bottom: -1px;\n padding-bottom: 1px;\n opacity: 100% !important;\n}\n\n.text-prompt {\n cursor: text;\n overflow-x: visible;\n}\n\n.text-prompt::-webkit-scrollbar {\n display: none;\n}\n\n.text-prompt-editing > .text-prompt {\n color: #222 !important;\n text-decoration: none !important;\n white-space: pre;\n}\n\n.text-prompt > .auto-complete-text {\n color: rgb(128 128 128) !important;\n}\n\n.text-prompt[data-placeholder]:empty::before {\n content: attr(data-placeholder);\n color: rgb(128 128 128);\n}\n\n.text-prompt:not([data-placeholder]):empty::after {\n content: '\\00A0';\n width: 0;\n display: block;\n}\n\n.text-prompt.disabled {\n opacity: 50%;\n cursor: default;\n}\n\n.text-prompt-editing br {\n display: none;\n}\n\n.text-prompt-root:not(:focus-within) ::selection {\n background: transparent;\n}\n\n@media (forced-colors: active) {\n .text-prompt[data-placeholder]:empty::before {\n color: GrayText !important;\n }\n\n .text-prompt.disabled {\n opacity: 100%;\n }\n}\n\n/*# sourceURL=ui/textPrompt.css */");RootModule.Runtime.cachedResources.set("ui/tooltip.css","/*\n * Copyright (c) 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.tooltip {\n background: hsl(0deg 0% 95%);\n border-radius: 2px;\n color: hsl(0deg 0% 20%);\n padding: 5px 8px;\n line-height: 14px;\n display: flex;\n align-items: center;\n filter: drop-shadow(0 1px 2px hsl(0deg 0% 0% / 30%));\n border: 1px solid hsl(0deg 0% 0% / 10%);\n background-clip: padding-box;\n box-sizing: border-box;\n position: absolute;\n visibility: hidden;\n transition: visibility 0s 100ms, opacity 150ms cubic-bezier(0, 0, 0.2, 1);\n z-index: 20001;\n top: 0;\n left: 0;\n opacity: 0%;\n text-overflow: ellipsis;\n overflow: hidden;\n pointer-events: none;\n}\n\n.tooltip-breakword {\n word-break: break-word;\n}\n\n.tooltip.shown {\n visibility: visible;\n transition-delay: 600ms;\n opacity: 100%;\n}\n\n.tooltip.shown.instant {\n transition-delay: 0s;\n}\n\n.tooltip-shortcut {\n color: hsl(0deg 0% 45%);\n display: inline-block;\n margin-left: 8px;\n flex: 0 0 auto;\n}\n\n/*# sourceURL=ui/tooltip.css */");RootModule.Runtime.cachedResources.set("ui/treeoutline.css","/*\n * Copyright 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n:host {\n flex: 1 1 auto;\n padding: 2px 0 0 0;\n}\n\n.tree-outline-disclosure:not(.tree-outline-disclosure-hide-overflow) {\n min-width: 100%;\n display: inline-block;\n}\n\n.tree-outline {\n padding: 0 0 4px 4px;\n margin: 0;\n z-index: 0;\n position: relative;\n}\n\n.tree-outline:focus-visible {\n box-shadow: 0 0 0 2px var(--accent-color) inset;\n}\n\n.tree-outline li .selection {\n display: none;\n z-index: -1;\n margin-left: -10000px;\n}\n\n.tree-outline:not(.hide-selection-when-blurred) li.selected {\n color: var(--selection-inactive-fg-color);\n}\n\n.tree-outline:not(.hide-selection-when-blurred) li.selected .selection {\n display: block;\n background-color: var(--selection-inactive-bg-color);\n}\n\n.tree-outline:not(.hide-selection-when-blurred) li.elements-drag-over .selection {\n display: block;\n margin-top: -2px;\n border-top: 2px solid;\n border-top-color: var(--selection-bg-color);\n}\n\n.tree-outline:not(.hide-selection-when-blurred) li.hovered:not(.selected) .selection {\n display: block;\n left: 3px;\n right: 3px;\n background-color: var(--item-hover-color);\n border-radius: 5px;\n}\n\n.tree-outline:not(.hide-selection-when-blurred) li.in-clipboard .highlight {\n outline: 1px dotted darkgrey;\n}\n\nol.tree-outline:not(.hide-selection-when-blurred) li.selected:focus .selection {\n background-color: var(--selection-bg-color);\n}\n\nol.tree-outline:not(.hide-selection-when-blurred) li.parent.selected:focus::before {\n background-color: var(--selection-fg-color);\n}\n\nol.tree-outline,\n.tree-outline ol {\n list-style-type: none;\n}\n\n.tree-outline ol {\n padding-left: 12px;\n}\n\n.tree-outline li {\n text-overflow: ellipsis;\n white-space: nowrap;\n position: relative;\n display: flex;\n align-items: center;\n min-height: 16px;\n}\n\nol.tree-outline:not(.hide-selection-when-blurred) li.selected:focus {\n color: var(--selection-fg-color);\n}\n\nol.tree-outline:not(.hide-selection-when-blurred) li.selected:focus * {\n color: inherit;\n}\n\n.tree-outline li .icons-container {\n align-self: center;\n display: flex;\n align-items: center;\n}\n\n.tree-outline li .leading-icons {\n margin-right: 4px;\n}\n\n.tree-outline li .trailing-icons {\n margin-left: 4px;\n}\n\n.tree-outline li::before {\n user-select: none;\n -webkit-mask-image: url(Images/treeoutlineTriangles.svg);\n -webkit-mask-size: 32px 24px;\n -webkit-mask-position: 0 0;\n background-color: #727272;\n content: \"\\A0\\A0\";\n text-shadow: none;\n margin-right: -2px;\n height: 12px;\n width: 13px;\n}\n\n.tree-outline li:not(.parent)::before {\n background-color: transparent;\n}\n\n.tree-outline li.parent.expanded::before {\n -webkit-mask-position: -16px 0;\n}\n\n.tree-outline ol.children {\n display: none;\n}\n\n.tree-outline ol.children.expanded {\n display: block;\n}\n\n.tree-outline.tree-outline-dense li {\n margin-top: 1px;\n min-height: 12px;\n}\n\n.tree-outline.tree-outline-dense li.parent {\n margin-top: 0;\n}\n\n.tree-outline.tree-outline-dense li.parent::before {\n top: 0;\n}\n\n.tree-outline.tree-outline-dense ol {\n padding-left: 10px;\n}\n\n.tree-outline.hide-selection-when-blurred .selected:focus-visible {\n background: var(--focus-bg-color);\n border-radius: 2px;\n}\n\n.tree-outline-disclosure:not(.tree-outline-disclosure-hide-overflow) .tree-outline.hide-selection-when-blurred .selected:focus-visible {\n width: fit-content;\n padding-right: 3px;\n}\n\n@media (forced-colors: active) {\n .tree-outline-disclosure li.parent::before,\n .tree-outline:not(.hide-selection-when-blurred) li.parent:not(.selected)::before,\n .tree-outline li [is=ui-icon].icon-mask {\n forced-color-adjust: none;\n background-color: ButtonText;\n }\n\n .tree-outline-disclosure li.parent:hover:not(.selected)::before,\n .tree-outline:not(.hide-selection-when-blurred) li.parent:hover:not(.selected)::before {\n background-color: ButtonText;\n }\n\n .tree-outline:not(.hide-selection-when-blurred) li.selected .selection {\n forced-color-adjust: none;\n background-color: ButtonText;\n }\n\n ol.tree-outline:not(.hide-selection-when-blurred) li.selected:focus .selection,\n .tree-outline.hide-selection-when-blurred .selected:focus-visible {\n forced-color-adjust: none;\n background-color: Highlight;\n }\n\n ol.tree-outline:not(.hide-selection-when-blurred) li.parent.selected::before,\n ol.tree-outline:not(.hide-selection-when-blurred) li.parent.selected:focus::before,\n .tree-outline.hide-selection-when-blurred .selected:focus-visible::before {\n background-color: HighlightText;\n }\n\n .tree-outline li:not(.parent)::before,\n .tree-outline li:not(.parent):hover::before,\n .tree-outline.hide-selection-when-blurred .selected:focus-visible:not(.parent)::before {\n forced-color-adjust: none;\n background-color: transparent;\n }\n\n .tree-outline li.selected [is=ui-icon].icon-mask,\n .tree-outline li.selected:focus [is=ui-icon]:not(.icon-mask) {\n background-color: HighlightText !important;\n }\n\n ol.tree-outline:not(.hide-selection-when-blurred) li.selected,\n .tree-outline:not(.hide-selection-when-blurred) li.selected .tree-element-title,\n .tree-outline:not(.hide-selection-when-blurred) li.selected:focus,\n .tree-outline:not(.hide-selection-when-blurred) li:focus-visible .tree-element-title,\n .tree-outline:not(.hide-selection-when-blurred) li.selected:focus .tree-element-title,\n .tree-outline:not(.hide-selection-when-blurred) li.selected span,\n .tree-outline.hide-selection-when-blurred .selected:focus-visible span {\n forced-color-adjust: none;\n color: HighlightText;\n }\n}\n\n/*# sourceURL=ui/treeoutline.css */");RootModule.Runtime.cachedResources.set("ui/viewContainers.css","/*\n * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.\n * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of Apple Computer, Inc. (\"Apple\") nor the names of\n * its contributors may be used to endorse or promote products derived\n * from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS \"AS IS\" AND ANY\n * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY\n * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n.expandable-view-title {\n display: flex;\n align-items: center;\n background-color: var(--toolbar-bg-color);\n height: 22px;\n padding: 0 5px;\n border-top: var(--divider-border);\n white-space: nowrap;\n overflow: hidden;\n position: relative;\n border-bottom: 1px solid transparent;\n}\n\n.expandable-view-title.expanded,\n.expandable-view-title:last-child {\n border-bottom: 1px solid #ddd;\n}\n\n.expandable-view-title .toolbar {\n margin-top: -3px;\n}\n\n.expandable-view-title > .toolbar {\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.expandable-view-title:not(.expanded) .toolbar {\n display: none;\n}\n\n.title-expand-icon {\n margin-right: 2px;\n margin-bottom: -2px;\n}\n\n.expandable-view-title:focus-visible {\n background-color: var(--focus-bg-color);\n}\n\n@media (forced-colors: active) {\n .expandable-view-title:focus-visible {\n forced-color-adjust: none;\n background: canvas !important;\n box-shadow: 0 0 0 2px Highlight inset;\n }\n}\n\n/*# sourceURL=ui/viewContainers.css */");RootModule.Runtime.cachedResources.set("components/imagePreview.css","/*\n * Copyright 2017 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.image-preview-container {\n background: transparent;\n text-align: center;\n border-spacing: 0;\n}\n\n.image-preview-container img {\n margin: 2px auto;\n max-width: 100px;\n max-height: 100px;\n background-image: url(Images/checker.png);\n user-select: text;\n -webkit-user-drag: auto;\n}\n\n.image-container {\n padding: 0;\n}\n\n/*# sourceURL=components/imagePreview.css */");RootModule.Runtime.cachedResources.set("components/jsUtils.css","/*\n * Copyright 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n:host {\n display: inline;\n}\n\n.stack-preview-async-description {\n padding: 3px 0 1px;\n font-style: italic;\n}\n\n.stack-preview-container .webkit-html-ignore-list-link {\n opacity: 60%;\n}\n\n.stack-preview-container > tr {\n height: 16px;\n line-height: 16px;\n}\n\n.stack-preview-container td {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.stack-preview-container .function-name {\n max-width: 80em;\n}\n\n.stack-preview-container:not(.show-ignore-listed) > tr.ignore-listed {\n display: none;\n}\n\n.stack-preview-container > tr.show-ignore-listed-link {\n font-style: italic;\n}\n\n.stack-preview-container.show-ignore-listed > tr.show-ignore-listed-link {\n display: none;\n}\n\n/*# sourceURL=components/jsUtils.css */");RootModule.Runtime.cachedResources.set("persistence/editFileSystemView.css","/*\n * Copyright 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n.file-system-header {\n display: flex;\n flex-direction: row;\n align-items: center;\n flex: auto;\n margin: 10px 0;\n}\n\n.file-system-header-text {\n flex: 1 0 auto;\n}\n\n.add-button {\n margin-left: 10px;\n align-self: flex-start;\n}\n\n.file-system-list {\n flex: auto;\n}\n\n.file-system-list-empty {\n flex: auto;\n height: 30px;\n display: flex;\n align-items: center;\n justify-content: center;\n text-align: center;\n}\n\n.file-system-list-item {\n padding: 3px 5px 3px 5px;\n height: 30px;\n display: flex;\n align-items: center;\n flex: auto 1 1;\n}\n\n.file-system-value {\n flex: 1 1 0;\n}\n\n.list-item .file-system-value {\n white-space: nowrap;\n text-overflow: ellipsis;\n user-select: none;\n overflow: hidden;\n}\n\n.file-system-edit-row {\n flex: none;\n display: flex;\n flex-direction: row;\n margin: 6px 5px;\n align-items: center;\n}\n\n.file-system-edit-row input {\n width: 100%;\n text-align: inherit;\n}\n\n/*# sourceURL=persistence/editFileSystemView.css */");RootModule.Runtime.cachedResources.set("persistence/workspaceSettingsTab.css","/*\n * Copyright 2017 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\nheader {\n padding: 0 0 6px;\n}\n\nheader > h1 {\n font-size: 18px;\n font-weight: normal;\n margin: 0;\n padding-bottom: 3px;\n}\n\n.settings-content {\n overflow-y: auto;\n overflow-x: hidden;\n margin: 8px 8px 8px 0;\n padding: 0 4px;\n flex: auto;\n}\n\n.settings-container {\n width: 100%;\n column-width: 288px;\n}\n\n.settings-tab.settings-container {\n column-width: 308px;\n}\n\n.settings-tab label {\n padding-right: 4px;\n display: inline-flex;\n}\n\n.settings-container-wrapper {\n position: absolute;\n top: 31px;\n left: 0;\n right: 0;\n bottom: 0;\n overflow: auto;\n padding-top: 9px;\n}\n\n.settings-tab.settings-content {\n margin: 0;\n padding: 0;\n}\n\n.settings-tab p {\n margin: 12px 0;\n}\n\np.folder-exclude-pattern {\n display: flex;\n align-items: center;\n}\n\np.folder-exclude-pattern > input {\n flex: auto;\n}\n\n.settings-tab .file-system-container {\n border-top: 1px solid #aaa;\n padding: 19px 0 10px;\n margin: 20px 0;\n}\n\n.settings-tab .file-system-header {\n display: flex;\n flex-direction: row;\n align-items: center;\n}\n\n.settings-tab .file-system-name {\n font-weight: bold;\n flex: none;\n margin-right: 10px;\n font-size: 15px;\n overflow: hidden;\n text-overflow: ellipsis;\n max-width: 70%;\n}\n\n.settings-tab .file-system-path {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n flex: auto;\n}\n\n.settings-info-message {\n background-color: #eee;\n padding: 10px;\n margin: 20px 0;\n}\n\n.settings-tab.settings-content.settings-container {\n column-width: initial;\n overflow: hidden;\n padding-right: 10px;\n}\n\n/*\n * Always show an outline. Needed because we have a white background here.\n */\n\n.harmony-input[type=text]:not(.error-input):not(:invalid) {\n box-shadow: var(--focus-ring-inactive-shadow);\n}\n\n/*# sourceURL=persistence/workspaceSettingsTab.css */");RootModule.Runtime.cachedResources.set("issues/descriptions/cspTrustedTypesSinkViolation.md","# Trusted Type expected, but String received\n\nYour site tries to use a plain string in a DOM modification where a Trusted Type is expected. Requiring Trusted Types for DOM modifications helps to prevent cross-site scripting attacks.\n\nTo solve this, provide a Trusted Type to all the DOM modifications listed below. You can convert a string into a Trusted Type by:\n\n* defining a policy and using its corresponding `createHTML`, `createScript` or `createScriptURL` function.\n* defining a policy named `default` which will be automatically called.");RootModule.Runtime.cachedResources.set("issues/descriptions/cspTrustedTypesPolicyViolation.md","# Trusted Type policy creation blocked by Content Security Policy\n\nYour site tries to create a Trusted Type policy that has not been allowed by the Content Security Policy. The Content Security Policy may restrict the set of valid names for Trusted Type policies, and forbid more than one policy of each name.\n\nTo solve this, make sure that the names of the policies listed below are declared in the `trusted-types` CSP directive. To allow redefining policies add the `allow-duplicates` keyword. If you want to remove all restrictions on policy names, remove the `trusted-types` directive entirely (not recommended).");RootModule.Runtime.cachedResources.set("console_counters/warningErrorCounter.css","/*\n * Copyright (c) 2015 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n\n:host(div:nth-child(1)) {\n margin-left: 6px;\n}\n\n.toolbar-counter-button {\n cursor: pointer;\n background-color: #f3f3f3;\n border: 1px solid #d0d0d0;\n border-radius: 2px;\n color: #333;\n margin-right: 2px;\n}\n\n.toolbar-counter-button:hover,\n.toolbar-counter-button:focus-visible {\n background-color: #eaeaea;\n}\n\n.toolbar-counter-item {\n margin-left: 6px;\n}\n\n.toolbar-counter-item.toolbar-counter-item-first {\n margin-left: 0;\n}\n\n/*# sourceURL=console_counters/warningErrorCounter.css */");import'./startup/startup.js';import'./dom_extension/dom_extension.js';import'./host/host-legacy.js';import'./protocol_client/protocol_client-legacy.js';import'./sdk/sdk-legacy.js';import'./ui/ui-legacy.js';import'./services/services-legacy.js';import'./workspace/workspace-legacy.js';import'./bindings/bindings-legacy.js';import'./components/components-legacy.js';import'./persistence/persistence-legacy.js';import'./browser_sdk/browser_sdk.js';import'./extensions/extensions-legacy.js';import'./console_counters/console_counters-legacy.js';import'./sources/sources-meta.js';import'./profiler/profiler-meta.js';import'./console/console-meta.js';import'./coverage/coverage-meta.js';import'./changes/changes-meta.js';import'./input/input-meta.js';import'./linear_memory_inspector/linear_memory_inspector-meta.js';import'./settings/settings-meta.js';import'./protocol_monitor/protocol_monitor-meta.js';import'./persistence/persistence-meta.js';import'./browser_sdk/browser_sdk-meta.js';
@@ -0,0 +1 @@
1
+ import{ScriptSnippetFileSystem as p,SnippetsQuickOpen as e}from"./snippets.js";self.Snippets=self.Snippets||{},Snippets=Snippets||{},Snippets.evaluateScriptSnippet=p.evaluateScriptSnippet,Snippets.isSnippetsUISourceCode=p.isSnippetsUISourceCode,Snippets.isSnippetsProject=p.isSnippetsProject,Snippets.SnippetsQuickOpen=e.SnippetsQuickOpen,Snippets.ScriptSnippetFileSystem={},Snippets.ScriptSnippetFileSystem.findSnippetsProject=p.findSnippetsProject;
@@ -0,0 +1 @@
1
+ import{Settings as e,ResourceType as t,Console as n}from"../common/common.js";import{i18n as s}from"../i18n/i18n.js";import{PlatformFileSystem as i,FileSystemWorkspaceBinding as p}from"../persistence/persistence.js";import{StringUtilities as r}from"../platform/platform.js";import{RuntimeModel as o,ConsoleModel as c}from"../sdk/sdk.js";import{Context as a}from"../ui/ui.js";import{Workspace as u}from"../workspace/workspace.js";import{FilteredListWidget as l}from"../quick_open/quick_open.js";const g={scriptSnippet:"Script snippet #{PH1}",linkedTo:"Linked to {PH1}"},d=s.registerUIStrings("snippets/ScriptSnippetFileSystem.ts",g),m=s.getLocalizedString.bind(void 0,d);function S(e){return escape(e)}function h(e){return unescape(e)}class f extends i.PlatformFileSystem{constructor(){super("snippet://","snippets"),this._lastSnippetIdentifierSetting=e.Settings.instance().createSetting("scriptSnippets_lastIdentifier",0),this._snippetsSetting=e.Settings.instance().createSetting("scriptSnippets",[])}initialFilePaths(){return this._snippetsSetting.get().map((e=>S(e.name)))}async createFile(e,t){const n=this._lastSnippetIdentifierSetting.get()+1;this._lastSnippetIdentifierSetting.set(n);const s=m(g.scriptSnippet,{PH1:n}),i=this._snippetsSetting.get();return i.push({name:s,content:""}),this._snippetsSetting.set(i),S(s)}async deleteFile(e){const t=h(e.substring(1)),n=this._snippetsSetting.get(),s=n.filter((e=>e.name!==t));return n.length!==s.length&&(this._snippetsSetting.set(s),!0)}async requestFileContent(e){const t=h(e.substring(1)),n=this._snippetsSetting.get().find((e=>e.name===t));return n?{content:n.content,isEncoded:!1}:{content:null,isEncoded:!1,error:`A snippet with name '${t}' was not found`}}async setFileContent(e,t,n){const s=h(e.substring(1)),i=this._snippetsSetting.get(),p=i.find((e=>e.name===s));return!!p&&(p.content=t,this._snippetsSetting.set(i),!0)}renameFile(e,t,n){const s=h(e.substring(1)),i=this._snippetsSetting.get(),p=i.find((e=>e.name===s));t=t.trim(),p&&0!==t.length&&!i.find((e=>e.name===t))?(p.name=t,this._snippetsSetting.set(i),n(!0,t)):n(!1)}async searchInPath(e,t){const n=new RegExp(r.escapeForRegExp(e),"i");return this._snippetsSetting.get().filter((e=>e.content.match(n))).map((e=>"snippet:///"+S(e.name)))}mimeFromPath(e){return"text/javascript"}contentType(e){return t.resourceTypes.Script}tooltipForURL(e){return m(g.linkedTo,{PH1:h(e.substring(this.path().length))})}supportsAutomapping(){return!0}}async function _(e){if(!e.url().startsWith("snippet://"))return;const t=a.Context.instance().flavor(o.ExecutionContext);if(!t)return;const s=t.runtimeModel;await e.requestContent(),e.commitWorkingCopy();const i=e.workingCopy();n.Console.instance().show();const p=e.url(),r=await t.evaluate({expression:`${i}\n//# sourceURL=${p}`,objectGroup:"console",silent:!1,includeCommandLineAPI:!0,returnByValue:!1,generatePreview:!0,replMode:!0},!1,!0);if("exceptionDetails"in r&&r.exceptionDetails)return void c.ConsoleModel.instance().addMessage(c.ConsoleMessage.fromException(s,r.exceptionDetails,void 0,void 0,p));if(!("object"in r)||!r.object)return;const u=t.debuggerModel.scriptsForSourceURL(p);if(u.length<1)return;const l=u[u.length-1].scriptId;c.ConsoleModel.instance().addMessage(new c.ConsoleMessage(s,c.MessageSource.Javascript,c.MessageLevel.Info,"",c.MessageType.Result,p,void 0,void 0,[r.object],void 0,void 0,t.id,l))}function y(){const e=u.WorkspaceImpl.instance().projectsForType(u.projectTypes.FileSystem).find((e=>"snippets"===p.FileSystemWorkspaceBinding.fileSystemType(e)));if(!e)throw new Error("Unable to find workspace project for the snippets file system");return e}var F=Object.freeze({__proto__:null,UIStrings:g,SnippetFileSystem:f,evaluateScriptSnippet:_,isSnippetsUISourceCode:function(e){return e.url().startsWith("snippet://")},isSnippetsProject:function(e){return e.type()===u.projectTypes.FileSystem&&"snippets"===p.FileSystemWorkspaceBinding.fileSystemType(e)},findSnippetsProject:y});const j={noSnippetsFound:"No snippets found."},v=s.registerUIStrings("snippets/SnippetsQuickOpen.ts",j),k=s.getLocalizedString.bind(void 0,v);class C extends l.Provider{constructor(){super(),this._snippets=[]}selectItem(e,t){null!==e&&_(this._snippets[e])}notFoundText(e){return k(j.noSnippetsFound)}attach(){this._snippets=y().uiSourceCodes()}detach(){this._snippets=[]}itemCount(){return this._snippets.length}itemKeyAt(e){return this._snippets[e].name()}renderItem(e,t,n,s){n.textContent=unescape(this._snippets[e].name()),n.classList.add("monospace"),l.FilteredListWidget.highlightRanges(n,t,!0)}}var x=Object.freeze({__proto__:null,UIStrings:j,SnippetsQuickOpen:C});export{F as ScriptSnippetFileSystem,x as SnippetsQuickOpen};
File without changes
@@ -0,0 +1 @@
1
+ import{BinaryResourceViewFactory as e,FontView as r,ImageView as o,JSONView as c,PreviewFactory as a,ResourceSourceFrame as u,SourceCodeDiff as S,SourceFrame as i,SourcesTextEditor as m,XMLView as t}from"./source_frame.js";self.SourceFrame=self.SourceFrame||{},SourceFrame=SourceFrame||{},SourceFrame.BinaryResourceViewFactory=e.BinaryResourceViewFactory,SourceFrame.FontView=r.FontView,SourceFrame.ImageView=o.ImageView,SourceFrame.JSONView=c.JSONView,SourceFrame.ParsedJSON=c.ParsedJSON,SourceFrame.PreviewFactory=a.PreviewFactory,SourceFrame.ResourceSourceFrame=u.ResourceSourceFrame,SourceFrame.ResourceSourceFrame.SearchableContainer=u.SearchableContainer,SourceFrame.SourceCodeDiff=S.SourceCodeDiff,SourceFrame.SourceCodeDiff.EditType=S.EditType,SourceFrame.SourceFrame=i.SourceFrameImpl,SourceFrame.LineDecorator=i.LineDecorator,SourceFrame.SourcesTextEditor=m.SourcesTextEditor,SourceFrame.SourcesTextEditor.Events=m.Events,SourceFrame.SourcesTextEditor.lineNumbersGutterType=m.lineNumbersGutterType,SourceFrame.SourcesTextEditorDelegate=m.SourcesTextEditorDelegate,SourceFrame.SourcesTextEditor.TokenHighlighter=m.TokenHighlighter,SourceFrame.XMLView=t.XMLView,SourceFrame.XMLView.Node=t.XMLViewNode;