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

Side by Side Diff: chrome/browser/resources/usb_internals/usb_internals.html

Issue 2204713006: Add chrome://usb-internals page for adding and removing test devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>USB Internals</title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <link rel="stylesheet" href="usb_internals.css">
8 <script src="chrome://resources/js/cr.js"></script>
9 <script src="chrome://resources/js/util.js"></script>
10 <script src="usb_internals.js"></script>
11 </head>
12 <body>
13 <p>
14 <table class="styled-table">
15 <thead>
16 <tr>
17 <th>Name</th>
18 <th>Serial number</th>
19 <th>Landing page</th>
20 <th>Allowed origin</th>
21 <th>
22 </tr>
23 </thead>
24 <tbody id="test-device-list">
25 </tbody>
26 </table>
27 </p>
28
29 <div class="page-section">
30 <strong>Add a test device:</strong>
31 <form id="add-test-device-form" action="">
32 <p>
33 <label>
34 Name: <input id="test-device-name" type="text" size="40">
35 </label>
36 </p>
37 <p>
38 <label>
39 Serial number: <input id="test-device-serial" type="text" size="40">
40 </label>
41 </p>
42 <p>
43 <label>
44 Landing page:
45 <input id="test-device-landing-page" type="text" size="40">
46 </label>
47 </p>
48 <p>
49 <label>
50 Allowed origin:
51 <input id="test-device-allowed-origin" type="text" size="40">
52 </label>
53 </p>
54 <button type="submit">Add</button> <span id="add-test-device-result">
dpapad 2016/08/04 20:55:34 This <span> is missing closing tag, </span>
Reilly Grant (use Gerrit) 2016/08/05 01:30:55 Done.
55 </form>
56 </div>
57 </body>
58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698