noVNC/tests/vnc_playback.html

37 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>VNC Playback</title>
<script type="module" src="./playback-ui.js"></script>
</head>
<body>
Iterations: <input id='iterations'>&nbsp;
Perftest:<input type='radio' id='mode1' name='mode' checked>&nbsp;
Realtime:<input type='radio' id='mode2' name='mode'>&nbsp;&nbsp;
<input id='startButton' type='button' value='Start' disabled>&nbsp;
<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>