-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
29 lines (27 loc) · 888 Bytes
/
test.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
<html>
<head>
<script type="text/javascript" src="js/postMessageYield.js"></script>
<script type="text/javascript" src="js/webWorkerYield.js"></script>
<script type="text/javascript" src="js/logWindowVisibilityChanges.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body>
<h1>JS Thread slowdown test page</h1>
<p>Refresh the page if you want to try a different type, it logs out to console</p>
<label>Generated by</label>
<select id="gen">
<option>Websocket</option>
<option>SetInterval</option>
</select>
<label>Yield Method</label>
<select id="yield">
<option>setTimeout</option>
<option>postMessage</option>
<option>requestAnimationFrame</option>
<option>webWorker</option>
</select>
<button onclick="go()">Go</button>
<div id="output">
</div>
</body>
</html>