1
0
Fork 0
firefox/third_party/webkit/PerformanceTests/webaudio/index.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

47 lines
767 B
HTML

<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>