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

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

Issue 6286002: Add dataType=string to <select> elements with 'pref' attribute, if missing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/resources/options
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 <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 dataType="string"
9 i18n-options="xkbRemapSearchKeyToValue"></select> 10 i18n-options="xkbRemapSearchKeyToValue"></select>
10 </td> 11 </td>
11 </tr> 12 </tr>
12 <tr> 13 <tr>
13 <td class="option-name" 14 <td class="option-name"
14 i18n-content="xkbRemapControlKeyToContent"></td> 15 i18n-content="xkbRemapControlKeyToContent"></td>
15 <td class="option-value"> 16 <td class="option-value">
16 <select id="xkb-remap-control-key-to" class="control" 17 <select id="xkb-remap-control-key-to" class="control"
17 pref="settings.language.xkb_remap_control_key_to" 18 pref="settings.language.xkb_remap_control_key_to"
19 dataType="string"
18 i18n-options="xkbRemapControlKeyToValue"></select> 20 i18n-options="xkbRemapControlKeyToValue"></select>
19 </td> 21 </td>
20 </tr> 22 </tr>
21 <tr> 23 <tr>
22 <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td> 24 <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td>
23 <td class="option-value"> 25 <td class="option-value">
24 <select id="xkb-remap-alt-key-to" class="control" 26 <select id="xkb-remap-alt-key-to" class="control"
25 pref="settings.language.xkb_remap_alt_key_to" 27 pref="settings.language.xkb_remap_alt_key_to"
28 dataType="string"
26 i18n-options="xkbRemapAltKeyToValue"></select> 29 i18n-options="xkbRemapAltKeyToValue"></select>
27 </td> 30 </td>
28 </tr> 31 </tr>
29 </table> 32 </table>
30 </section> 33 </section>
31 <button id="languageCustomizeModifierKeysOverleyDismissButton" 34 <button id="languageCustomizeModifierKeysOverleyDismissButton"
32 i18n-content="close" 35 i18n-content="close"
33 onclick="OptionsPage.clearOverlays();"></button> 36 onclick="OptionsPage.clearOverlays();"></button>
34 </div> 37 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698