blob: e7329cc5efd731c6f30e708b6b0e44a670205d5c (
plain)
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
|
<html>
<head>
<script src=webaudio-bench.js></script>
<script src=benchmarks.js></script>
<meta charset="utf-8">
<style>
html {
font-family: helvetica, arial;
}
table {
margin: 1em;
border-collapse: collapse;
}
thead {
background-color: #aaaaaa;
}
tr:nth-child(even) {
background-color: #eeeeee;
}
td {
border: 1px solid black;
text-align: center;
}
#controls {
display: none;
}
#in-progress {
display: none;
}
</style>
</head>
<body>
<div id=loading>
Loading assets
<progress></progress>
</div>
<div id=controls>
<button id=run-all>Run all</button>
<div id=in-progress>
<progress id=progress-bar> </progress>
Benchmark in progress...
</div>
</div>
<div id=results>
</div>
</body>
</html>
|