forked from novnc/noVNC
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathvnc_playback.html
36 lines (29 loc) · 1.18 KB
/
vnc_playback.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>VNC Playback</title>
<script type="module" src="./playback-ui.js"></script>
</head>
<body>
Iterations: <input id='iterations'>
Perftest:<input type='radio' id='mode1' name='mode' checked>
Realtime:<input type='radio' id='mode2' name='mode'>
<input id='startButton' type='button' value='Start' disabled>
<br><br>
Results:<br>
<textarea id="messages" cols=80 rows=25></textarea>
<br><br>
<!-- This is where the RFB elements will attach -->
<div id="noVNC_container">
<!-- Note that Google Chrome on Android doesn't respect any of these,
html attributes which attempt to disable text suggestions on the
on-screen keyboard. Let's hope Chrome implements the ime-mode
style for example -->
<textarea id="noVNC_keyboardinput" autocapitalize="off"
autocomplete="off" spellcheck="false" tabindex="-1"></textarea>
</div>
<div id="VNC_screen">
<div id="VNC_status">Loading</div>
</div>
</body>
</html>