-
Notifications
You must be signed in to change notification settings - Fork 10
/
key-event-viewer.html
46 lines (35 loc) · 1.46 KB
/
key-event-viewer.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
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Keyboard Event Viewer</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script type="text/javascript" src="output-table.js" ></script>
<script type="text/javascript" src="options.js" ></script>
<script type="text/javascript" src="shared.js" ></script>
<script type="text/javascript" src="key-event-viewer.js" ></script>
<style title="inject"></style>
<link rel="stylesheet" type="text/css" href="key-event-viewer.css" />
<link rel="stylesheet" type="text/css" href="shared.css" />
</head>
<body>
<a class="main_link" href="index.html">DOM Event Viewers</a>
<h1>Keyboard Event Viewer</h1>
<p>UserAgent: <span id="useragent"></span></p>
<p>
<code>input</code> element with <code>type="text"</code>: <input id="input" type="text" size="80" autofocus />
</p>
<p>
<input id="resetTable" type="button" onclick="resetTable();return false" value="Clear Table"/>
<a id="optionsToggle" href="javascript:toggleOptions()">Show Options</a>
<input id="toggleFullscreen" type="button" onclick="toggleFullscreen();return false" value="Enter Fullscreen"/>
<input id="toggleKeyboardLock" type="button" onclick="toggleKeyboardLock();return false" value="Enable KeyboardLock"/>
</p>
<div id="options"></div>
<table id="output">
</table>
<script language="javascript">
init();
</script>
</body>
</html>