-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
147 lines (147 loc) · 4.69 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LibWasm Spec Test results</title>
<link rel="shortcut icon" type="image/png" href="../favicon.png" />
<link rel="stylesheet" href="../test262/main.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap"
/>
</head>
<body>
<main>
<h1>LibWasm Spec test results</h1>
<section>
<h2>Introduction</h2>
<p>
These are the results of the
<a
href="https://github.com/LadybirdWebBrowser/ladybird"
target="_blank"
rel="noopener noreferrer"
>Ladybird</a
>
WebAssembly library, LibWasm, running the WebAssembly
<a
href="https://github.com/WebAssembly/testsuite"
target="_blank"
rel="noopener noreferrer"
>testsuite</a
>. All tests are re-run and the results updated automatically for
every push to the master branch of the repository on GitHub. Dates and
times are shown in your browser's timezone.
</p>
<p>
If you have any questions or want to help out with improving these
test scores, feel free to get in touch on the
<a
href="https://discord.gg/nvfjVJ4Svh"
target="_blank"
rel="noopener noreferrer"
>Ladybird Discord server</a
>.
</p>
</section>
<section>
<h2>Per-file results</h2>
<p>
<a href="./per-file" target="_blank">Click here!</a>
</p>
</section>
<section>
<h2>Source code & Data</h2>
<p>Source code:</p>
<ul>
<li>
<a
href="https://github.com/LadybirdWebBrowser/ladybird/blob/master/Tests/LibWasm/test-wasm.cpp"
target="_blank"
rel="noopener noreferrer"
>Test Runner</a
>
</li>
<li>
<a
href="https://github.com/LadybirdWebBrowser/ladybird/blob/master/Userland/Libraries/LibWasm"
target="_blank"
rel="noopener noreferrer"
>LibWasm</a
>
</li>
<li>
<a
href="https://github.com/LadybirdWebBrowser/libjs-website"
target="_blank"
rel="noopener noreferrer"
>This website</a
>
</li>
</ul>
<p>Data (JSON):</p>
<ul>
<li>
<a
href="https://github.com/LadybirdWebBrowser/libjs-data/blob/master/wasm/results.json"
target="_blank"
rel="noopener noreferrer"
>Results over time, used for the graphs below</a
>
</li>
<li>
<a
href="https://github.com/LadybirdWebBrowser/libjs-data/blob/master/wasm/per-file-master.json"
target="_blank"
rel="noopener noreferrer"
>Per-file results of the <code>master</code> branch</a
>
</li>
</ul>
</section>
<section>
<h2>Results</h2>
<p id="summary">Loading...</p>
<div class="chart-wrapper">
<canvas id="chart"></canvas>
</div>
</section>
<section>
<h2>Performance</h2>
<div class="chart-wrapper">
<canvas id="chart-performance"></canvas>
</div>
</section>
<section>
<h2>Performance per test</h2>
<div class="chart-wrapper">
<canvas id="chart-performance-per-test"></canvas>
</div>
</section>
</main>
<footer>
Made by
<a
href="https://twitter.com/the_semicolon_"
target="_blank"
rel="noopener noreferrer"
>CxByte</a
>
&
<a href="https://linus.dev" target="_blank" rel="noopener noreferrer"
>linusg</a
>.
</footer>
<script src="https://unpkg.com/unfetch/polyfill"></script>
<script src="https://unpkg.com/luxon@1.27.0"></script>
<script src="https://unpkg.com/chart.js@3.3.2"></script>
<script src="https://unpkg.com/chartjs-adapter-luxon@1.0.0"></script>
<script src="https://unpkg.com/hammerjs@2.0.8/hammer.min.js"></script>
<script src="https://unpkg.com/chartjs-plugin-zoom@1.0.1"></script>
<script src="../test262/test-config.js"></script>
<script src="../test262/fetch.js"></script>
<script src="main.js"></script>
</body>
</html>