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

Unified Diff: chrome/browser/resources/chromeos/switch_access/options.html

Issue 2939133004: Added to options page to let users change keyboard mappings. (Closed)
Patch Set: Fixed merge conflict and formatting error Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/switch_access/options.html
diff --git a/chrome/browser/resources/chromeos/switch_access/options.html b/chrome/browser/resources/chromeos/switch_access/options.html
index ab5ddc8ac4d7687f7b674415e357d55e9208ba34..a999943c11c3f2f85c44513904e045a924262c37 100644
--- a/chrome/browser/resources/chromeos/switch_access/options.html
+++ b/chrome/browser/resources/chromeos/switch_access/options.html
@@ -16,13 +16,50 @@
Enable auto-scan
</label>
</div>
- <div>
+ <div class="container">
<!-- TODO(elichtenberg) i18n for pref ids -->
<label id="autoScanTimeLabel">
<span>Set auto-scan time in seconds:</span>
<input id="autoScanTime" type="number" min=".05" step=".05" value="1">
</label>
</div>
+ <h2>Keyboard Mapping</h2>
+ <div id="keyboardMappingDiv" class="container">
+ <label>
+ <span>Next: </span>
+ <input id="next" type="text" maxlength="1">
+ </label>
+ <label>
+ <span>Previous: </span>
+ <input id="previous" type="text" maxlength="1">
+ </label>
+ <label>
+ <span>Select: </span>
+ <input id="select" type="text" maxlength="1">
+ </label>
+ <label>
+ <span>Options: </span>
+ <input id="options" type="text" maxlength="1">
+ </label>
+ <div id="debugKeyMappingDiv">
+ <label>
+ <span>Debug Next: </span>
+ <input id="debugNext" type="text" maxlength="1">
+ </label>
+ <label>
+ <span>Debug Previous: </span>
+ <input id="debugPrevious" type="text" maxlength="1">
+ </label>
+ <label>
+ <span>Debug Child: </span>
+ <input id="debugChild" type="text" maxlength="1">
+ </label>
+ <label>
+ <span>Debug Parent: </span>
+ <input id="debugParent" type="text" maxlength="1">
+ </label>
+ </div>
+ </div>
<script type="text/javascript" src="options.js"></script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698