-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (71 loc) · 2.95 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
<!DOCTYPE html>
<html>
<head>
<title>Bogomark</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<script src="bogomark.js"></script>
</head>
<body>
<div id="page">
<header>
<h1>Bogomark</h1>
<p>Benchmark the <a href="https://en.wikipedia.org/wiki/Bogosort" target="_blank">bogosort</a> sorting algorithm</p>
<p>[<a href="https://github.com/Fylipp/bogomark" target="_blank">source</a>]</p>
</header>
<main>
<fieldset id="form">
<label for="input-size">Size</label>
<input id="input-size" type="number" step="1" min="1" value="10">
<br>
<label for="input-iterations">Iterations</label>
<input id="input-iterations" type="number" step="1" min="1" value="20">
<br>
<input id="btn-run" type="button" value="Run">
</fieldset>
<div id="progress" class="hide">
<p id="progress-percentage"></p>
<p id="progress-text"></p>
</div>
<div id="stats" class="hide">
<div id="summary" class="hide">
<p id="post-options">
[<a id="csv" href="javascript:void(0);">csv</a>] [<a href=".">reset</a>]
</p>
<table>
<tr class="summary-category">
<td class="summary-title">Size</td>
<td id="summary-size" class="summary-value"></td>
</tr>
<tr class="summary-category">
<td class="summary-title">Average</td>
<td id="summary-avg" class="summary-value"></td>
</tr>
<tr class="summary-category">
<td class="summary-title">Minimum</td>
<td id="summary-min" class="summary-value"></td>
</tr>
<tr class="summary-category">
<td class="summary-title">Maximum</td>
<td id="summary-max" class="summary-value"></td>
</tr>
</table>
</div>
<span id="collapse-group" data-collapsed="1">
<a id="btn-toggle-collapse" href="#"></a>
<table id="individual-table">
<thead>
<tr>
<th id="col-iteration">Iteration</th>
<th>Milliseconds</th>
<th>Steps</th>
</tr>
</thead>
<tbody id="individual-content"></tbody>
</table>
</span>
</div>
</main>
</div>
</body>
</html>