-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
44 lines (40 loc) · 1.25 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LibJS JavaScript engine</title>
<link rel="shortcut icon" type="image/png" href="favicon.png" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #191922;
padding: 20px;
font-size: 1rem;
}
code .comment {
color: #2aa62a;
}
code a,
code a:active,
code a:visited {
color: inherit;
}
</style>
</head>
<body>
<pre><code><span class="comment">// Website for Ladybird's JavaScript engine, LibJS.
//
// For details visit <a href="https://github.com/LadybirdBrowser/ladybird" target="_blank" rel="noopener noreferrer">https://github.com/LadybirdBrowser/ladybird</a>.
//
// Continuously updated test262 results are available at <a href="test262">/test262</a>.
// Continuously updated Wasm results are available at <a href="wasm">/wasm</a>.
//
// If you're a Ladybird contributor and want to change something
// here, open a PR in <a href="https://github.com/LadybirdBrowser/libjs-website">this repository</a>.</span></code></pre>
</body>
</html>