| OLD | NEW |
| 1 <div id="browserPage" class="page" hidden> | 1 <div id="browserPage" class="page" hidden> |
| 2 <header> | 2 <header> |
| 3 <h1 i18n-content="browserPage"></h1> | 3 <h1 i18n-content="browserPage"></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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 </if> | 243 </if> |
| 244 </section> | 244 </section> |
| 245 <if expr="not pp_ifdef('chromeos')"> | 245 <if expr="not pp_ifdef('chromeos')"> |
| 246 <section> | 246 <section> |
| 247 <h3 i18n-content="sectionTitleDefaultBrowser"></h3> | 247 <h3 i18n-content="sectionTitleDefaultBrowser"></h3> |
| 248 <div> | 248 <div> |
| 249 <button id="defaultBrowserUseAsDefaultButton" | 249 <button id="defaultBrowserUseAsDefaultButton" |
| 250 i18n-content="defaultBrowserUseAsDefault" hidden></button> | 250 i18n-content="defaultBrowserUseAsDefault" hidden></button> |
| 251 <div id="defaultBrowserState" | 251 <div id="defaultBrowserState" |
| 252 i18n-content="defaultBrowserUnknown"></div> | 252 i18n-content="defaultBrowserUnknown"></div> |
| 253 <div id="autoLaunchOption" class="checkbox" hidden> |
| 254 <label id="autoLaunchLabel"> |
| 255 <input id="autoLaunch" type="checkbox"> |
| 256 <span i18n-content="autoLaunchText"></span> |
| 257 </label> |
| 258 </div> |
| 253 </div> | 259 </div> |
| 254 </section> | 260 </section> |
| 255 </if> | 261 </if> |
| 256 <if expr="pp_ifdef('chromeos')"> | 262 <if expr="pp_ifdef('chromeos')"> |
| 257 <!-- This section is temporarily duplicated here for ChromeOS. --> | 263 <!-- This section is temporarily duplicated here for ChromeOS. --> |
| 258 <!-- TODO(csilv): Move to 'Under the Hood' for ChromeOS only. --> | 264 <!-- TODO(csilv): Move to 'Under the Hood' for ChromeOS only. --> |
| 259 <!-- http://crbug.com/110527 --> | 265 <!-- http://crbug.com/110527 --> |
| 260 <section id="startupSection"> | 266 <section id="startupSection"> |
| 261 <h3 i18n-content="sectionTitleStartup"></h3> | 267 <h3 i18n-content="sectionTitleStartup"></h3> |
| 262 <div> | 268 <div> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 293 </section> | 299 </section> |
| 294 </if> | 300 </if> |
| 295 <section> | 301 <section> |
| 296 <h3 i18n-content="sectionTitleAdvanced"></h3> | 302 <h3 i18n-content="sectionTitleAdvanced"></h3> |
| 297 <div> | 303 <div> |
| 298 <button id="advancedOptionsButton" | 304 <button id="advancedOptionsButton" |
| 299 i18n-content="advancedOptionsButtonTitle"></button> | 305 i18n-content="advancedOptionsButtonTitle"></button> |
| 300 </div> | 306 </div> |
| 301 </section> | 307 </section> |
| 302 </div> | 308 </div> |
| OLD | NEW |