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

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

Issue 6381007: Make the accessibility checkbox affect LocalState rather than the... (Closed) Base URL: svn://chrome-svn/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="systemPage"> 1 <div class="page hidden" id="systemPage">
2 <h1 i18n-content="systemPage"></h1> 2 <h1 i18n-content="systemPage"></h1>
3 <section> 3 <section>
4 <h3 i18n-content="datetime_title"></h3> 4 <h3 i18n-content="datetime_title"></h3>
5 <table class="option-control-table"> 5 <table class="option-control-table">
6 <tr> 6 <tr>
7 <td class="option-name" i18n-content="timezone"></td> 7 <td class="option-name" i18n-content="timezone"></td>
8 <td class="option-value"> 8 <td class="option-value">
9 <select id="timezone-select" class="control" 9 <select id="timezone-select" class="control"
10 i18n-options="timezoneList" 10 i18n-options="timezoneList"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 </td> 48 </td>
49 </tr> 49 </tr>
50 </table> 50 </table>
51 </section> 51 </section>
52 <section> 52 <section>
53 <h3 i18n-content="accessibility_title"></h3> 53 <h3 i18n-content="accessibility_title"></h3>
54 <table class="option-control-table"> 54 <table class="option-control-table">
55 <tr> 55 <tr>
56 <td class="option-name"> 56 <td class="option-name">
57 <label class="checkbox"> 57 <label class="checkbox">
58 <input id="accesibility-check" 58 <input id="accesibility-check" type="checkbox">
59 pref="settings.accessibility" type="checkbox">
60 <span i18n-content="accessibility"></span> 59 <span i18n-content="accessibility"></span>
61 </label> 60 </label>
62 </td> 61 </td>
63 </tr> 62 </tr>
64 </table> 63 </table>
65 </section> 64 </section>
66 </div> 65 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698