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

Side by Side Diff: chrome/browser/resources/options/chromeos_language_customize_modifier_keys_overlay.html

Issue 6150003: DOMUI: Implement the i18n-options attribute that allows the client to load (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nit fix. Created 9 years, 11 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
1 <div class="page hidden" id="languageCustomizeModifierKeysOverlay"> 1 <div class="page hidden" id="languageCustomizeModifierKeysOverlay">
2 <section> 2 <section>
3 <table class="option-control-table"> 3 <table class="option-control-table">
4 <tr> 4 <tr>
5 <td class="option-name" i18n-content="xkbRemapSearchKeyToContent"></td> 5 <td class="option-name" i18n-content="xkbRemapSearchKeyToContent"></td>
6 <td class="option-value"> 6 <td class="option-value">
7 <select id="xkb-remap-search-key-to" class="control" 7 <select id="xkb-remap-search-key-to" class="control"
8 pref="settings.language.xkb_remap_search_key_to" 8 pref="settings.language.xkb_remap_search_key_to"
9 data-values="xkbRemapSearchKeyToValue"></select> 9 i18n-options="xkbRemapSearchKeyToValue"></select>
10 </td> 10 </td>
11 </tr> 11 </tr>
12 <tr> 12 <tr>
13 <td class="option-name" 13 <td class="option-name"
14 i18n-content="xkbRemapControlKeyToContent"></td> 14 i18n-content="xkbRemapControlKeyToContent"></td>
15 <td class="option-value"> 15 <td class="option-value">
16 <select id="xkb-remap-control-key-to" class="control" 16 <select id="xkb-remap-control-key-to" class="control"
17 pref="settings.language.xkb_remap_control_key_to" 17 pref="settings.language.xkb_remap_control_key_to"
18 data-values="xkbRemapControlKeyToValue"></select> 18 i18n-options="xkbRemapControlKeyToValue"></select>
19 </td> 19 </td>
20 </tr> 20 </tr>
21 <tr> 21 <tr>
22 <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td> 22 <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td>
23 <td class="option-value"> 23 <td class="option-value">
24 <select id="xkb-remap-alt-key-to" class="control" 24 <select id="xkb-remap-alt-key-to" class="control"
25 pref="settings.language.xkb_remap_alt_key_to" 25 pref="settings.language.xkb_remap_alt_key_to"
26 data-values="xkbRemapAltKeyToValue"></select> 26 i18n-options="xkbRemapAltKeyToValue"></select>
27 </td> 27 </td>
28 </tr> 28 </tr>
29 </table> 29 </table>
30 </section> 30 </section>
31 <button id="languageCustomizeModifierKeysOverleyDismissButton" 31 <button id="languageCustomizeModifierKeysOverleyDismissButton"
32 i18n-content="close" 32 i18n-content="close"
33 onclick="OptionsPage.clearOverlays();"></button> 33 onclick="OptionsPage.clearOverlays();"></button>
34 </div> 34 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698