Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: remoting/tools/javascript_key_tester/main.html

Issue 884703006: Handling PNaCl KeyboardInputEvent(s) in the key tester app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding disable_nacl==0 condition and disabling _jscompile target. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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="keyboard_map.js"></script> 12 <script src="keyboard_map.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 <button id="clear-log">Clear log</button> 18 <div id="pnacl-listener">
19 <div id="key-log"> 19 PNaCl focus box:
20 <embed id="pnacl-plugin" width=100 height=12
21 src="remoting_key_tester.nmf" type="application/x-pnacl" />
22 (click inside to get focus, yellow background means it has focus).
23 </div>
24 <button id="clear-log">Clear logs</button>
25 <hr/>
26 <div class="logs">
27 <div class="summary-log-container">
28 Summary of JavaScript logs:
29 <div id="javascript-log">
30 </div>
31 </div>
32 <div class="summary-log-container">
33 Summary of PNaCl logs:
34 <div id="pnacl-log">
35 </div>
36 </div>
37 <div class="text-log-container">
38 Text log of JSON-ified events:
39 <div id="text-log">
40 </div>
41 </div>
20 </div> 42 </div>
21 </body> 43 </body>
22 </html> 44 </html>
OLDNEW
« no previous file with comments | « remoting/tools/javascript_key_tester/main.css ('k') | remoting/tools/javascript_key_tester/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698