Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!-- Copyright 2017 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
| 4 <!DOCTYPE html> | 4 <!DOCTYPE html> |
| 5 <html> | 5 <html> |
| 6 <head> | 6 <head> |
| 7 <title>Switch Access Options</title> | 7 <title>Switch Access Options</title> |
| 8 <link href="options.css" rel="stylesheet" type="text/css"> | 8 <link href="options.css" rel="stylesheet" type="text/css"> |
| 9 </head> | 9 </head> |
| 10 <body> | 10 <body> |
| 11 <h1>Switch Access Options</h1> | 11 <h1>Switch Access Options</h1> |
| 12 <h2>Auto-Scan</h2> | 12 <h2>Auto-Scan</h2> |
| 13 <div> | 13 <div> |
| 14 <label> | 14 <label> |
| 15 <input id="enableAutoScan" type="checkbox"> | 15 <input id="enableAutoScan" type="checkbox"> |
| 16 Enable auto-scan | 16 Enable auto-scan |
| 17 </label> | 17 </label> |
| 18 </div> | 18 </div> |
| 19 <div> | 19 <div class="container"> |
| 20 <!-- TODO(elichtenberg) i18n for pref ids --> | 20 <!-- TODO(elichtenberg) i18n for pref ids --> |
| 21 <label id="autoScanTimeLabel"> | 21 <label id="autoScanTimeLabel"> |
| 22 <span>Set auto-scan time in seconds:</span> | 22 <span>Set auto-scan time in seconds:</span> |
| 23 <input id="autoScanTime" type="number" min=".05" step=".05" value="1"> | 23 <input id="autoScanTime" type="number" min=".05" step=".05" value="1"> |
| 24 </label> | 24 </label> |
| 25 </div> | 25 </div> |
| 26 <h2>Keyboard Mapping</h2> | |
| 27 <div id="keyboardMappingDiv" class="container"> | |
| 28 <label> | |
| 29 <span>Next: </span> | |
| 30 <input id="next" type="text" maxlength="1"> | |
| 31 </label> | |
| 32 <label> | |
| 33 <span>Previous: </span> | |
| 34 <input id="previous" type="text" maxlength="1"> | |
| 35 </label> | |
| 36 <label> | |
| 37 <span>Select: </span> | |
| 38 <input id="select" type="text" maxlength="1"> | |
| 39 </label> | |
| 40 <label> | |
| 41 <span>Options: </span> | |
| 42 <input id="options" type="text" maxlength="1"> | |
| 43 </label> | |
| 44 <label> | |
|
dmazzoni
2017/06/15 22:37:39
How about hiding these? Maybe we could make a secr
elichtenberg
2017/06/20 01:02:30
Set display to none for debug options, and removed
| |
| 45 <span>Debug Next: </span> | |
| 46 <input id="debugNext" type="text" maxlength="1"> | |
| 47 </label> | |
| 48 <label> | |
| 49 <span>Debug Previous: </span> | |
| 50 <input id="debugPrevious" type="text" maxlength="1"> | |
| 51 </label> | |
| 52 <label> | |
| 53 <span>Debug Child: </span> | |
| 54 <input id="debugChild" type="text" maxlength="1"> | |
| 55 </label> | |
| 56 <label> | |
| 57 <span>Debug Parent: </span> | |
| 58 <input id="debugParent" type="text" maxlength="1"> | |
| 59 </label> | |
| 60 </div> | |
| 26 <script type="text/javascript" src="options.js"></script> | 61 <script type="text/javascript" src="options.js"></script> |
| 27 </body> | 62 </body> |
| 28 </html> | 63 </html> |
| 29 | 64 |
| OLD | NEW |