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

Side by Side Diff: chrome/browser/resources/options/chromeos/keyboard_overlay.html

Issue 11314020: Allow Caps Lock to be remapped [part 1 of 2] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <div id="keyboard-overlay" class="page" hidden> 1 <div id="keyboard-overlay" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="keyboardOverlayTitle"></h1> 3 <h1 i18n-content="keyboardOverlayTitle"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <table class="option-control-table"> 5 <table class="option-control-table">
6 <tr> 6 <tr>
7 <td> 7 <td>
8 <label class="option-name" for="remap-search-key-to" 8 <label class="option-name" for="remap-search-key-to"
9 i18n-content="remapSearchKeyToContent"> 9 i18n-content="remapSearchKeyToContent">
10 </label> 10 </label>
(...skipping 23 matching lines...) Expand all
34 <label class="option-name" for="remap-alt-key-to" 34 <label class="option-name" for="remap-alt-key-to"
35 i18n-content="remapAltKeyToContent"> 35 i18n-content="remapAltKeyToContent">
36 </label> 36 </label>
37 </td> 37 </td>
38 <td class="option-value"> 38 <td class="option-value">
39 <select id="remap-alt-key-to" class="control" data-type="number" 39 <select id="remap-alt-key-to" class="control" data-type="number"
40 pref="settings.language.xkb_remap_alt_key_to" 40 pref="settings.language.xkb_remap_alt_key_to"
41 i18n-options="remapAltKeyToValue" dialog-pref></select> 41 i18n-options="remapAltKeyToValue" dialog-pref></select>
42 </td> 42 </td>
43 </tr> 43 </tr>
44 <!-- TODO(yusukes): Show this UI when --has-chromeos-keyboard flag is not
45 passed to Chrome.
46 <tr>
47 <td>
48 <label class="option-name" for="remap-caps-lock-key-to"
49 i18n-content="remapCapsLockKeyToContent">
50 </label>
51 </td>
52 <td class="option-value">
53 <select id="remap-caps-lock-key-to" class="control"
54 data-type="number"
55 pref="settings.language.remap_caps_lock_key_to"
56 i18n-options="remapCapsLockKeyToValue" dialog-pref></select>
57 </td>
58 </tr>
59 -->
44 </table> 60 </table>
45 </div> 61 </div>
46 <div class="action-area"> 62 <div class="action-area">
47 <div class="button-strip"> 63 <div class="button-strip">
48 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> 64 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button>
49 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button> 65 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button>
50 </div> 66 </div>
51 </div> 67 </div>
52 </div> 68 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698