Files
noVNC/tests/vnc_playback.html
Pierre Ossman 7f5b51acf3 Consistently use "sentence case" style
Try to be more consistent in how we capitalize things. Both the "Title
Case" and "Sentence case" styles are popular, so either would work.
Google and Mozilla both prefer "Sentence case", so let's follow them.
2024-11-27 14:40:40 +01:00

27 lines
673 B
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>
<div id="VNC_screen">
<div id="VNC_status">Loading</div>
</div>
</body>
</html>