OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <!-- | 2 <!-- |
3 Copyright (c) 2014 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2014 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <html> | 8 <html> |
9 <head> | 9 <head> |
10 <title>Chrome AppsV2 Key Event Tester</title> | 10 <title>Chrome AppsV2 Key Event Tester</title> |
11 <script src="chord_tracker.js"></script> | 11 <script src="chord_tracker.js"></script> |
12 <script src="event_listeners.js"></script> | 12 <script src="event_listeners.js"></script> |
13 <script src="main.js"></script> | 13 <script src="main.js"></script> |
14 <link rel="stylesheet" href="main.css"> | 14 <link rel="stylesheet" href="main.css"> |
15 </head> | 15 </head> |
16 <body> | 16 <body> |
17 <h2>Chrome AppsV2 Key Event Tester</h2> | 17 <h2>Chrome AppsV2 Key Event Tester</h2> |
18 <div class="controls"> | 18 <div class="controls"> |
19 <button id="show-log">Debug log</button> | 19 <button id="show-log">Debug log</button> |
20 <button id="clear-log">Clear logs</button> | 20 <button id="clear-log">Clear logs</button> |
21 </div> | 21 </div> |
| 22 <h4>Try mouse events in the gray area below.</h4> |
22 <div id="pnacl-listener"> | 23 <div id="pnacl-listener"> |
23 <embed id="pnacl-plugin" width=0 height=0 | 24 <embed id="pnacl-plugin" |
24 src="remoting_key_tester.nmf" type="application/x-pnacl" /> | 25 src="remoting_key_tester.nmf" |
| 26 type="application/x-pnacl" /> |
25 </div> | 27 </div> |
26 <div class="logs"> | 28 <div class="logs"> |
27 <div id="pnacl-log" class="summary-log-container"> | 29 <div id="pnacl-log" class="summary-log-container"> |
28 </div> | 30 </div> |
29 <div id="text-log-container" hidden> | 31 <div id="text-log-container" hidden> |
30 <div> | 32 <div> |
31 </div> | 33 </div> |
32 <div class="controls"> | 34 <div class="controls"> |
33 <button id="hide-log">Close</button> | 35 <button id="hide-log">Close</button> |
34 </div> | 36 </div> |
35 <div id="text-log" class="selectable"> | 37 <div id="text-log" class="selectable"> |
36 </div> | 38 </div> |
37 </div> | 39 </div> |
38 </div> | 40 </div> |
39 </body> | 41 </body> |
40 </html> | 42 </html> |
OLD | NEW |