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

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

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <div id="languageCustomizeModifierKeysOverlay" class="page" hidden>
2 <div class="content-area">
3 <table class="option-control-table">
4 <tr>
5 <td class="option-name" i18n-content="xkbRemapSearchKeyToContent"></td>
6 <td class="option-value">
7 <select id="xkb-remap-search-key-to" class="control"
8 data-type="number" i18n-options="xkbRemapSearchKeyToValue"
9 pref="settings.language.xkb_remap_search_key_to"></select>
10 </td>
11 </tr>
12 <tr>
13 <td class="option-name"
14 i18n-content="xkbRemapControlKeyToContent"></td>
15 <td class="option-value">
16 <select id="xkb-remap-control-key-to" class="control"
17 data-type="number" i18n-options="xkbRemapControlKeyToValue"
18 pref="settings.language.xkb_remap_control_key_to"></select>
19 </td>
20 </tr>
21 <tr>
22 <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td>
23 <td class="option-value">
24 <select id="xkb-remap-alt-key-to" class="control" data-type="number"
25 pref="settings.language.xkb_remap_alt_key_to"
26 i18n-options="xkbRemapAltKeyToValue"></select>
27 </td>
28 </tr>
29 </table>
30 </div>
31 <div class="action-area">
32 <div class="button-strip">
33 <button id="languageCustomizeModifierKeysOverleyDismissButton"
34 i18n-content="close"></button>
35 </div>
36 </div>
37 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698