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

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

Issue 910483002: Remove JS summary. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer feedback. 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="event_listeners.js"></script> 12 <script src="event_listeners.js"></script>
13 <script src="keyboard_map.js"></script> 13 <script src="keyboard_map.js"></script>
14 <script src="main.js"></script> 14 <script src="main.js"></script>
15 <link rel="stylesheet" href="main.css"> 15 <link rel="stylesheet" href="main.css">
16 </head> 16 </head>
17 <body> 17 <body>
18 <h2>Chrome AppsV2 Key Event Tester</h2> 18 <h2>Chrome AppsV2 Key Event Tester</h2>
19 <div class="controls"> 19 <div class="controls">
20 <button id="show-log">Debug log</button> 20 <button id="show-log">Debug log</button>
21 <button id="clear-log">Clear logs</button> 21 <button id="clear-log">Clear logs</button>
22 </div> 22 </div>
23 <div id="pnacl-listener"> 23 <div id="pnacl-listener">
24 <embed id="pnacl-plugin" width=0 height=0 24 <embed id="pnacl-plugin" width=0 height=0
25 src="remoting_key_tester.nmf" type="application/x-pnacl" /> 25 src="remoting_key_tester.nmf" type="application/x-pnacl" />
26 </div> 26 </div>
27 <div class="logs"> 27 <div class="logs">
28 <div class="summary-log-container"> 28 <div id="pnacl-log" class="summary-log-container">
29 Summary of JavaScript logs:
30 <div id="javascript-log">
31 </div>
32 </div>
33 <div class="summary-log-container">
34 Summary of PNaCl logs:
35 <div id="pnacl-log">
36 </div>
37 </div> 29 </div>
38 <div id="text-log-container" hidden> 30 <div id="text-log-container" hidden>
39 <div> 31 <div>
40 </div> 32 </div>
41 <div class="controls"> 33 <div class="controls">
42 <button id="hide-log">Close</button> 34 <button id="hide-log">Close</button>
43 </div> 35 </div>
44 <div id="text-log" class="selectable"> 36 <div id="text-log" class="selectable">
45 </div> 37 </div>
46 </div> 38 </div>
47 </div> 39 </div>
48 </body> 40 </body>
49 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698