Chromium Code Reviews| OLD | NEW |
|---|---|
| 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> |
| 8 <label class="option-name" for="xkb-remap-search-key-to" | |
| 9 i18n-content="xkbRemapSearchKeyToContent"> | |
|
James Hawkins
2012/08/01 20:07:27
nit: Not entirely sure, but it looks like this is
dmazzoni
2012/08/01 20:23:05
It looks like it was a little inconsistent elsewhe
James Hawkins
2012/08/01 20:44:51
Thanks!
| |
| 10 </label> | |
| 8 </td> | 11 </td> |
| 9 <td class="option-value"> | 12 <td class="option-value"> |
| 10 <select id="xkb-remap-search-key-to" class="control" | 13 <select id="xkb-remap-search-key-to" class="control" |
| 11 data-type="number" i18n-options="xkbRemapSearchKeyToValue" | 14 data-type="number" i18n-options="xkbRemapSearchKeyToValue" |
| 12 pref="settings.language.xkb_remap_search_key_to" dialog-pref> | 15 pref="settings.language.xkb_remap_search_key_to" dialog-pref> |
| 13 </select> | 16 </select> |
| 14 </td> | 17 </td> |
| 15 </tr> | 18 </tr> |
| 16 <tr> | 19 <tr> |
| 17 <td class="option-name" | 20 <td> |
| 18 i18n-content="xkbRemapControlKeyToContent"></td> | 21 <label class="option-name" for="xkb-remap-control-key-to" |
| 22 i18n-content="xkbRemapControlKeyToContent"> | |
| 23 </label> | |
| 24 </td> | |
| 19 <td class="option-value"> | 25 <td class="option-value"> |
| 20 <select id="xkb-remap-control-key-to" class="control" | 26 <select id="xkb-remap-control-key-to" class="control" |
| 21 data-type="number" i18n-options="xkbRemapControlKeyToValue" | 27 data-type="number" i18n-options="xkbRemapControlKeyToValue" |
| 22 pref="settings.language.xkb_remap_control_key_to" dialog-pref> | 28 pref="settings.language.xkb_remap_control_key_to" dialog-pref> |
| 23 </select> | 29 </select> |
| 24 </td> | 30 </td> |
| 25 </tr> | 31 </tr> |
| 26 <tr> | 32 <tr> |
| 27 <td class="option-name" i18n-content="xkbRemapAltKeyToContent"></td> | 33 <td> |
| 34 <label class="option-name" for="xkb-remap-alt-key-to" | |
| 35 i18n-content="xkbRemapAltKeyToContent"> | |
| 36 </label> | |
| 37 </td> | |
| 28 <td class="option-value"> | 38 <td class="option-value"> |
| 29 <select id="xkb-remap-alt-key-to" class="control" data-type="number" | 39 <select id="xkb-remap-alt-key-to" class="control" data-type="number" |
| 30 pref="settings.language.xkb_remap_alt_key_to" | 40 pref="settings.language.xkb_remap_alt_key_to" |
| 31 i18n-options="xkbRemapAltKeyToValue" dialog-pref></select> | 41 i18n-options="xkbRemapAltKeyToValue" dialog-pref></select> |
| 32 </td> | 42 </td> |
| 33 </tr> | 43 </tr> |
| 34 </table> | 44 </table> |
| 35 </div> | 45 </div> |
| 36 <div class="action-area"> | 46 <div class="action-area"> |
| 37 <div class="button-strip"> | 47 <div class="button-strip"> |
| 38 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> | 48 <button id="keyboard-cancel" type="reset" i18n-content="cancel"></button> |
| 39 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button> | 49 <button id="keyboard-confirm" type="submit" i18n-content="ok"></button> |
| 40 </div> | 50 </div> |
| 41 </div> | 51 </div> |
| 42 </div> | 52 </div> |
| OLD | NEW |