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

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

Issue 2835009: Split options page code/html into its own set of files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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
(Empty)
1 <div class="page hidden" id="systemPage">
2 <div class="section">
3 <div class="section-title" i18n-content="datetime_title"></div>
4 <div class="option">
5 <table class="option-control-table">
6 <tr>
7 <td class="option-name" i18n-content="timezone"></td>
8 <td class="option-value">
9 <select id="timezone-select" class="control"
10 pref="settings.datetime.timezone"></select>
11 </td>
12 </tr>
13 </table>
14 </div>
15 </div>
16 <div class="section">
17 <div class="section-title" i18n-content="touchpad"></div>
18 <table class="option-control-table">
19 <tr>
20 <td class="option-name" i18n-content="sensitivity"></td>
21 <td class="option-value">
22 <input id="sensitivity-range" type="range" min="1" max="10"
23 pref="settings.touchpad.sensitivity" class="touch-slider">
24 </td>
25 </tr>
26 <tr>
27 <td class="option-name" i18n-content="speed_factor"></td>
28 <td class="option-value">
29 <input id="speed-range" type="range" min="1" max="10"
30 pref="settings.touchpad.speed_factor" class="touch-slider">
31 </td>
32 </tr>
33 <tr>
34 <td class="option-name" colspan="2"><label><input
35 id="tap-to-click-check"
36 pref="settings.touchpad.enable_tap_to_click"
37 type="checkbox"><span i18n-content="enable_tap_to_click"></span></ label></td>
38 </tr>
39 <tr>
40 <td class="option-name" colspan="2"><label><input
41 id="vert-scroll-check"
42 pref="settings.touchpad.enable_vert_edge_scroll"
43 type="checkbox"><span
44 i18n-content="enable_vert_edge_scroll"></span></label></td>
45 </tr>
46 </table>
47 </div>
48 <div class="section">
49 <div class="section-title" i18n-content="language"></div>
50 <table class="option-control-table">
51 <tr>
52 <td class="option-name"><button id="language-button"
53 i18n-content="language_customize"></button>
54 </td>
55 </tr>
56 </table>
57 </div>
58 <div class="section">
59 <div class="section-title" i18n-content="accessibility_title"></div>
60 <table class="option-control-table">
61 <tr>
62 <td class="option-name"><label><input id="accesibility-check"
63 pref="settings.accessibility" type="checkbox"><span
64 i18n-content="accessibility"></span></label></td>
65 </tr>
66 </table>
67 </div>
68 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options.html ('k') | chrome/browser/resources/options/chromeos_system_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698