| OLD | NEW |
| 1 <div id="settings" class="page" hidden> | 1 <div id="settings" class="page" hidden> |
| 2 <header> | 2 <header> |
| 3 <h1 i18n-content="settingsTitle"></h1> | 3 <h1 i18n-content="settingsTitle"></h1> |
| 4 </header> | 4 </header> |
| 5 <include src="automatic_settings_reset_banner.html"> | 5 <include src="automatic_settings_reset_banner.html"> |
| 6 <if expr="chromeos"> | 6 <if expr="chromeos"> |
| 7 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_ico
n.html"> | 7 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_ico
n.html"> |
| 8 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.h
tml"> | 8 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.h
tml"> |
| 9 <include src="secondary_user_banner.html"> | 9 <include src="secondary_user_banner.html"> |
| 10 <section id="network-section-cros"> | 10 <section id="network-section-cros"> |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 <span i18n-content="showWindowDecorations"></span> | 100 <span i18n-content="showWindowDecorations"></span> |
| 101 </label></div> | 101 </label></div> |
| 102 </if> | 102 </if> |
| 103 </section> | 103 </section> |
| 104 <if expr="chromeos"> | 104 <if expr="chromeos"> |
| 105 <section id="device-section"> | 105 <section id="device-section"> |
| 106 <h3 i18n-content="sectionTitleDevice"></h3> | 106 <h3 i18n-content="sectionTitleDevice"></h3> |
| 107 <div> | 107 <div> |
| 108 <span i18n-content="deviceGroupDescription"></span> | 108 <span i18n-content="deviceGroupDescription"></span> |
| 109 <div id="touchpad-settings" class="settings-row" hidden> | 109 <div id="touchpad-settings" class="settings-row" hidden> |
| 110 <span class="option-name" i18n-content="touchpadSpeed"></span> | 110 <span id="touchpad-speed-label" class="option-name" |
| 111 i18n-content="touchpadSpeed"></span> |
| 111 <input id="touchpad-sensitivity-range" type="range" min="1" max="5" | 112 <input id="touchpad-sensitivity-range" type="range" min="1" max="5" |
| 112 pref="settings.touchpad.sensitivity2" class="touch-slider"> | 113 pref="settings.touchpad.sensitivity2" class="touch-slider" |
| 114 aria-labelledby="touchpad-speed-label"> |
| 113 </div> | 115 </div> |
| 114 <div id="mouse-settings" class="settings-row" hidden> | 116 <div id="mouse-settings" class="settings-row" hidden> |
| 115 <span class="option-name" i18n-content="mouseSpeed"></span> | 117 <span id="mouse-speed-label" class="option-name" |
| 118 i18n-content="mouseSpeed"></span> |
| 116 <input id="mouse-sensitivity-range" type="range" min="1" max="5" | 119 <input id="mouse-sensitivity-range" type="range" min="1" max="5" |
| 117 pref="settings.mouse.sensitivity2" class="touch-slider"> | 120 pref="settings.mouse.sensitivity2" class="touch-slider" |
| 121 aria-labelledby="mouse-speed-label"> |
| 118 </div> | 122 </div> |
| 119 <div id="no-pointing-devices" i18n-content="noPointingDevices" | 123 <div id="no-pointing-devices" i18n-content="noPointingDevices" |
| 120 class="settings-row" hidden> | 124 class="settings-row" hidden> |
| 121 </div> | 125 </div> |
| 122 <div class="settings-row"> | 126 <div class="settings-row"> |
| 123 <button id="pointer-settings-button" hidden> | 127 <button id="pointer-settings-button" hidden> |
| 124 </button> | 128 </button> |
| 125 <button id="keyboard-settings-button" | 129 <button id="keyboard-settings-button" |
| 126 i18n-content="keyboardSettingsButtonTitle"> | 130 i18n-content="keyboardSettingsButtonTitle"> |
| 127 </button> | 131 </button> |
| (...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1120 </button> | 1124 </button> |
| 1121 </div> | 1125 </div> |
| 1122 </section> | 1126 </section> |
| 1123 </div> <!-- advanced-settings-container --> | 1127 </div> <!-- advanced-settings-container --> |
| 1124 </div> <!-- advanced-settings --> | 1128 </div> <!-- advanced-settings --> |
| 1125 <footer id="advanced-settings-footer"> | 1129 <footer id="advanced-settings-footer"> |
| 1126 <a is="action-link" id="advanced-settings-expander" | 1130 <a is="action-link" id="advanced-settings-expander" |
| 1127 i18n-content="showAdvancedSettings"></a> | 1131 i18n-content="showAdvancedSettings"></a> |
| 1128 </footer> | 1132 </footer> |
| 1129 </div> | 1133 </div> |
| OLD | NEW |