mirror of
https://github.com/novnc/noVNC.git
synced 2025-09-04 19:50:23 +00:00

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