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

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

Issue 10155030: Fix button order to OK, Cancel (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 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 class="option-name" i18n-content="xkbRemapSearchKeyToContent"> 7 <td class="option-name" i18n-content="xkbRemapSearchKeyToContent">
8 </td> 8 </td>
9 <td class="option-value"> 9 <td class="option-value">
10 <select id="xkb-remap-search-key-to" class="control" 10 <select id="xkb-remap-search-key-to" class="control"
(...skipping 17 matching lines...) Expand all
28 <td class="option-value"> 28 <td class="option-value">
29 <select id="xkb-remap-alt-key-to" class="control" data-type="number" 29 <select id="xkb-remap-alt-key-to" class="control" data-type="number"
30 pref="settings.language.xkb_remap_alt_key_to" 30 pref="settings.language.xkb_remap_alt_key_to"
31 i18n-options="xkbRemapAltKeyToValue" dialog-pref></select> 31 i18n-options="xkbRemapAltKeyToValue" dialog-pref></select>
32 </td> 32 </td>
33 </tr> 33 </tr>
34 </table> 34 </table>
35 </div> 35 </div>
36 <div class="action-area"> 36 <div class="action-area">
37 <div class="button-strip"> 37 <div class="button-strip">
38 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button>
38 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button> 39 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button>
39 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button>
40 </div> 40 </div>
41 </div> 41 </div>
42 </div> 42 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698