-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdevtools.html
More file actions
55 lines (54 loc) · 2.13 KB
/
devtools.html
File metadata and controls
55 lines (54 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8" />
<title>engine262 playground</title>
<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="./lib/devtools/index.js"></script>
</body>
</html>