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

Unified Diff: chrome/browser/resources/options2/chromeos/keyboard_overlay.html

Issue 10825136: Associate keyboard overlay labels with the controls they label. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options2/chromeos/keyboard_overlay.html
===================================================================
--- chrome/browser/resources/options2/chromeos/keyboard_overlay.html (revision 148955)
+++ chrome/browser/resources/options2/chromeos/keyboard_overlay.html (working copy)
@@ -4,31 +4,41 @@
<div class="content-area">
<table class="option-control-table">
<tr>
- <td class="option-name" i18n-content="xkbRemapSearchKeyToContent">
+ <td>
+ <label class="option-name" for="xkb-remap-search-key-to"
+ i18n-content="xkbRemapSearchKeyToContent">
+ </label>
</td>
<td class="option-value">
<select id="xkb-remap-search-key-to" class="control"
- data-type="number" i18n-options="xkbRemapSearchKeyToValue"
- pref="settings.language.xkb_remap_search_key_to" dialog-pref>
+ data-type="number" i18n-options="xkbRemapSearchKeyToValue"
+ pref="settings.language.xkb_remap_search_key_to" dialog-pref>
</select>
</td>
</tr>
<tr>
- <td class="option-name"
- i18n-content="xkbRemapControlKeyToContent"></td>
+ <td>
+ <label class="option-name" for="xkb-remap-control-key-to"
+ i18n-content="xkbRemapControlKeyToContent">
+ </label>
+ </td>
<td class="option-value">
<select id="xkb-remap-control-key-to" class="control"
- data-type="number" i18n-options="xkbRemapControlKeyToValue"
- pref="settings.language.xkb_remap_control_key_to" dialog-pref>
+ data-type="number" i18n-options="xkbRemapControlKeyToValue"
+ pref="settings.language.xkb_remap_control_key_to" dialog-pref>
</select>
</td>
</tr>
<tr>
- <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td>
+ <td>
+ <label class="option-name" for="xkb-remap-alt-key-to"
+ i18n-content="xkbRemapAltKeyToContent">
+ </label>
+ </td>
<td class="option-value">
<select id="xkb-remap-alt-key-to" class="control" data-type="number"
- pref="settings.language.xkb_remap_alt_key_to"
- i18n-options="xkbRemapAltKeyToValue" dialog-pref></select>
+ pref="settings.language.xkb_remap_alt_key_to"
+ i18n-options="xkbRemapAltKeyToValue" dialog-pref></select>
</td>
</tr>
</table>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698