-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
45 lines (36 loc) · 1.04 KB
/
test.html
File metadata and controls
45 lines (36 loc) · 1.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
<link rel="icon" href="/favicon.svg?version=3">
<link rel="stylesheet" href="/css/styles.css">
<meta name="theme-color" content="#ffffff" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#000000" />
</head>
<body>
<div class="p-4">
<div id="app"></div>
</div>
<script type="module">
const target = document.querySelector("#app")
void (async function () {
try {
await import("./js/list.test.js")
const { run } = await import("./js/test.js")
await run()
}
catch (error) {
if (target instanceof HTMLElement) {
const pre = document.createElement("pre")
pre.textContent = String(error)
target.replaceChildren(pre)
}
throw error
}
})()
</script>
</body>
</html>