]> git.proxmox.com Git - mirror_novnc.git/blame - tests/vnc_playback.html
Merge branch 'camelcase' of https://github.com/samhed/noVNC
[mirror_novnc.git] / tests / vnc_playback.html
CommitLineData
f8990704 1<!DOCTYPE html>
dcc41bde 2<html lang="en">
4ed717ad 3 <head>
67b4e987 4 <title>VNC Playback</title>
cccf3b00
SR
5 <!-- promise polyfills promises for IE11 -->
6 <script src="../vendor/promise.js"></script>
7 <!-- ES2015/ES6 modules polyfill -->
8 <script type="module">
9 window._noVNC_has_module_support = true;
10 </script>
11 <script>
12 window.addEventListener("load", function() {
13 if (window._noVNC_has_module_support) return;
14 var loader = document.createElement("script");
ee3493c0 15 loader.src = "../vendor/browser-es-module-loader/dist/browser-es-module-loader.js";
cccf3b00
SR
16 document.head.appendChild(loader);
17 });
18 </script>
19 <!-- actual script modules -->
20 <script type="module" src="./playback-ui.js"></script>
4ed717ad
JM
21 </head>
22 <body>
23
dcc41bde 24 Iterations: <input id='iterations'>&nbsp;
b8bd88d0
JM
25 Perftest:<input type='radio' id='mode1' name='mode' checked>&nbsp;
26 Realtime:<input type='radio' id='mode2' name='mode'>&nbsp;&nbsp;
4ed717ad 27
dcc41bde 28 <input id='startButton' type='button' value='Start' disabled>&nbsp;
4ed717ad
JM
29
30 <br><br>
31
b8bd88d0 32 Results:<br>
dcc41bde 33 <textarea id="messages" cols=80 rows=25></textarea>
b8bd88d0
JM
34
35 <br><br>
36
4ed717ad 37 <div id="VNC_screen">
dcc41bde 38 <div id="VNC_status">Loading</div>
4ed717ad
JM
39 </div>
40
dcc41bde 41 <script type="module" src="./playback-ui.js"></script>
4ed717ad 42 </body>
4ed717ad 43</html>