-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdevtools.html
More file actions
71 lines (69 loc) · 3.01 KB
/
devtools.html
File metadata and controls
71 lines (69 loc) · 3.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8" />
<title>engine262 playground</title>
<!--
Checkout the latest rev at https://chromium.googlesource.com/devtools/devtools-frontend/+log
Current commit 0117805c961fd556515972b79a7042408d6fd036 is committed on Tue Nov 11 07:54:04 2025
The most recent commit may not been built yet, so you may need to use a commit few days ago.
You can access https://chrome-devtools-frontend.appspot.com/serve_rev/@0117805c961fd556515972b79a7042408d6fd036/panels/sources/sources.js
After update, the first few access will be extremely slow. Refresh it a few times so it get cached by Google servers.
-->
<script type="importmap">
{
"imports": {
"chrome-devtools-frontend/": "https://chrome-devtools-frontend.appspot.com/serve_rev/@0117805c961fd556515972b79a7042408d6fd036/"
}
}
</script>
<link rel="modulepreload" href="./src/devtools/late-panels.mjs" as="script" />
<link rel="modulepreload" href="./src/devtools/262_worker.mjs" as="script" />
<meta
http-equiv="Content-Security-Policy"
content="object-src 'none'; script-src 'self' 'sha256-YCezwjqZIYZtHaYW1WJzVCeRrxO0ie1Wg6rRb3iSlno=' https://chrome-devtools-frontend.appspot.com https://cdn.jsdelivr.net/ https://engine262.js.org/"
/>
<meta name="referrer" content="no-referrer" />
<link href="./src/devtools/style.css" rel="stylesheet" />
<link
href="https://chrome-devtools-frontend.appspot.com/serve_rev/@0117805c961fd556515972b79a7042408d6fd036/application_tokens.css"
rel="stylesheet"
/>
<link
href="https://chrome-devtools-frontend.appspot.com/serve_rev/@0117805c961fd556515972b79a7042408d6fd036/design_system_tokens.css"
rel="stylesheet"
/>
<template id="engine262-readme-template">
<main id="engine262-readme">
<div class="page-title" role="heading" aria-level="1">
<a href="https://github.com/engine262/engine262/" target="_blank">engine262</a>
<span></span>
</div>
<a href="https://github.com/engine262/engine262" target="_blank">
<span id="star-me">Star me on GitHub</span>
</a>
<article></article>
</main>
</template>
<body class="undocked" id="-blink-dev-tools">
<dialog id="loading">Loading...</dialog>
<div id="fork" class='card-wrap'>
</div>
<script>
const loading = document.querySelector('#loading');
try {
loading.showModal()
} catch (e) {}
window.addEventListener('loaded', () => {
try {
loading.close()
} catch (e) {}
})
window.addEventListener('error', () => {
try {
loading.close()
} catch (e) {}
})
</script>
<script type="module" src="./src/devtools/index.mjs"></script>
</body>
</html>