]> git.proxmox.com Git - mirror_novnc.git/blame - tests/arrays.html
Enable noVNC to become Browserifiable
[mirror_novnc.git] / tests / arrays.html
CommitLineData
d3da7c4c
JM
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Javascript Arrays Performance Test</title>
5 <!--
6 <script type='text/javascript'
7 src='http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js'></script>
8 -->
5e55378b
JM
9 <script src="../include/util.js"></script>
10 <script src="../include/webutil.js"></script>
d3da7c4c
JM
11 <script src="browser.js"></script>
12 <script src="stats.js"></script>
13 <script src="arrays.js"></script>
14 </head>
15 <body>
16 <h3>Javascript Arrays Performance Test</h3>
17 Iterations: <input id='iterations' style='width:50'>&nbsp;
18 Array Size: <input id='arraySize' style='width:40'>*1024&nbsp;
19
20 <input id='startButton' type='button' value='Run Tests'
21 onclick="begin();">&nbsp;
22
23 <br><br>
24 Results:<br>
25 <textarea id="messages" style="font-size: 9;" cols=80 rows=50></textarea>
26 </br>
27 <canvas id="canvas" style="display: none;"></canvas>
28
29 </body>
30
31 <script>
32 var verbose = true;
33 window.onload = function() {
34 vmessage("in onload");
35 init();
36
37 }
38 </script>
39</html>