| 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 <span id="browser-options-search-field-container" | 4 <span id="browser-options-search-field-container" |
| 5 class="search-field-container"> | 5 class="search-field-container"> |
| 6 <input id="search-field" type="search" | 6 <input id="search-field" type="search" |
| 7 i18n-values="placeholder:searchPlaceholder; | 7 i18n-values="placeholder:searchPlaceholder; |
| 8 aria-label:searchPlaceholder" incremental> | 8 aria-label:searchPlaceholder" incremental> |
| 9 </span> | 9 </span> |
| 10 </header> | 10 </header> |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 </section> | 254 </section> |
| 255 <if expr="not pp_ifdef('chromeos')"> | 255 <if expr="not pp_ifdef('chromeos')"> |
| 256 <section> | 256 <section> |
| 257 <h3 i18n-content="sectionTitleDefaultBrowser"></h3> | 257 <h3 i18n-content="sectionTitleDefaultBrowser"></h3> |
| 258 <div> | 258 <div> |
| 259 <button id="set-as-default-browser" | 259 <button id="set-as-default-browser" |
| 260 i18n-content="defaultBrowserUseAsDefault" hidden> | 260 i18n-content="defaultBrowserUseAsDefault" hidden> |
| 261 </button> | 261 </button> |
| 262 <div id="default-browser-state" i18n-content="defaultBrowserUnknown"> | 262 <div id="default-browser-state" i18n-content="defaultBrowserUnknown"> |
| 263 </div> | 263 </div> |
| 264 <div id="auto-launch-option" class="checkbox" hidden> |
| 265 <label id="auto-launch-label"> |
| 266 <input id="auto-launch" type="checkbox"> |
| 267 <span i18n-content="autoLaunchText"></span> |
| 268 </label> |
| 269 </div> |
| 264 </div> | 270 </div> |
| 265 </section> | 271 </section> |
| 266 </if> | 272 </if> |
| 267 <if expr="pp_ifdef('chromeos')"> | 273 <if expr="pp_ifdef('chromeos')"> |
| 268 <!-- This section is temporarily duplicated here for ChromeOS. --> | 274 <!-- This section is temporarily duplicated here for ChromeOS. --> |
| 269 <!-- TODO(csilv): Move to 'Under the Hood' for ChromeOS only. --> | 275 <!-- TODO(csilv): Move to 'Under the Hood' for ChromeOS only. --> |
| 270 <!-- http://crbug.com/110527 --> | 276 <!-- http://crbug.com/110527 --> |
| 271 <section id="startup-section"> | 277 <section id="startup-section"> |
| 272 <h3 i18n-content="sectionTitleStartup"></h3> | 278 <h3 i18n-content="sectionTitleStartup"></h3> |
| 273 <div> | 279 <div> |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 </if> | 313 </if> |
| 308 <section> | 314 <section> |
| 309 <h3 i18n-content="sectionTitleAdvanced"></h3> | 315 <h3 i18n-content="sectionTitleAdvanced"></h3> |
| 310 <div> | 316 <div> |
| 311 <button id="advanced-settings" | 317 <button id="advanced-settings" |
| 312 i18n-content="advancedSettings"> | 318 i18n-content="advancedSettings"> |
| 313 </button> | 319 </button> |
| 314 </div> | 320 </div> |
| 315 </section> | 321 </section> |
| 316 </div> | 322 </div> |
| OLD | NEW |