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

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

Issue 6260019: DOMUI: A few fixes post-dialog refactoring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 <div class="content-area">
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 dataType="string" 9 dataType="string"
10 i18n-options="xkbRemapSearchKeyToValue"></select> 10 i18n-options="xkbRemapSearchKeyToValue"></select>
11 </td> 11 </td>
12 </tr> 12 </tr>
(...skipping 10 matching lines...) Expand all
23 <tr> 23 <tr>
24 <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td> 24 <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td>
25 <td class="option-value"> 25 <td class="option-value">
26 <select id="xkb-remap-alt-key-to" class="control" 26 <select id="xkb-remap-alt-key-to" class="control"
27 pref="settings.language.xkb_remap_alt_key_to" 27 pref="settings.language.xkb_remap_alt_key_to"
28 dataType="string" 28 dataType="string"
29 i18n-options="xkbRemapAltKeyToValue"></select> 29 i18n-options="xkbRemapAltKeyToValue"></select>
30 </td> 30 </td>
31 </tr> 31 </tr>
32 </table> 32 </table>
33 </section> 33 </div>
34 <button id="languageCustomizeModifierKeysOverleyDismissButton" 34 <div class="action-area">
35 i18n-content="close" 35 <div class="button-strip">
36 onclick="OptionsPage.clearOverlays();"></button> 36 <button id="languageCustomizeModifierKeysOverleyDismissButton"
37 i18n-content="close"
38 onclick="OptionsPage.clearOverlays();"></button>
39 </div>
40 </div>
37 </div> 41 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698