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

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

Issue 11421055: Add power-user keyboard mode for ChromeOS with Search key acting as a typical Fn key. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: SkyNits Created 8 years 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 i18n-content="remapCapsLockKeyToContent"> 49 i18n-content="remapCapsLockKeyToContent">
50 </label> 50 </label>
51 </td> 51 </td>
52 <td class="option-value"> 52 <td class="option-value">
53 <select id="remap-caps-lock-key-to" class="control" 53 <select id="remap-caps-lock-key-to" class="control"
54 data-type="number" 54 data-type="number"
55 pref="settings.language.remap_caps_lock_key_to" 55 pref="settings.language.remap_caps_lock_key_to"
56 i18n-options="remapCapsLockKeyToValue" dialog-pref></select> 56 i18n-options="remapCapsLockKeyToValue" dialog-pref></select>
57 </td> 57 </td>
58 </tr> 58 </tr>
59 <tr id="function-key-remapping-section" hidden>
60 <td colspan="2">
61 <div class="checkbox">
62 <span class="controlled-setting-with-label">
63 <input id="search-acts-as-function-key"
64 pref="settings.language.search_key_acts_as_function_key"
65 type="checkbox">
66 <span>
67 <label for="search-acts-as-function-key"
68 i18n-content="searchKeyActsAsFunctionKey">
69 </label>
70 <span class="controlled-setting-indicator"
71 for="search-acts-as-function-key">
72 </span>
73 </span>
74 </span>
75 </div>
76 </td>
77 </tr>
59 </table> 78 </table>
60 </div> 79 </div>
61 <div class="action-area"> 80 <div class="action-area">
62 <div class="button-strip"> 81 <div class="button-strip">
63 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> 82 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button>
64 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button> 83 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button>
65 </div> 84 </div>
66 </div> 85 </div>
67 </div> 86 </div>
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/preferences.cc ('k') | chrome/browser/resources/options/chromeos/keyboard_overlay.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698