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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 </section> | 46 </section> |
47 </if> | 47 </if> |
48 <if expr="not pp_ifdef('chromeos')"> | 48 <if expr="not pp_ifdef('chromeos')"> |
49 <!-- This section is duplicated below for ChromeOS. Both sections must stay | 49 <!-- This section is duplicated below for ChromeOS. Both sections must stay |
50 in sync. --> | 50 in sync. --> |
51 <section id="startup-section"> | 51 <section id="startup-section"> |
52 <h3 i18n-content="sectionTitleStartup"></h3> | 52 <h3 i18n-content="sectionTitleStartup"></h3> |
53 <div> | 53 <div> |
54 <div class="radio"> | 54 <div class="radio"> |
55 <label> | 55 <label> |
| 56 <input type="radio" name="startup" value="0" |
| 57 pref="session.restore_on_startup" |
| 58 metric="Options_Startup_Homepage"> |
| 59 <span i18n-content="startupShowHomePage"></span> |
| 60 </label> |
| 61 </div> |
| 62 <div class="radio"> |
| 63 <label> |
56 <input type="radio" name="startup" value="5" | 64 <input type="radio" name="startup" value="5" |
57 pref="session.restore_on_startup" | 65 pref="session.restore_on_startup" |
58 metric="Options_Startup_NewTab"> | 66 metric="Options_Startup_NewTab"> |
59 <span i18n-content="startupShowNewTab"></span> | 67 <span i18n-content="startupShowNewTab"></span> |
60 </label> | 68 </label> |
61 </div> | 69 </div> |
62 <div class="radio"> | 70 <div class="radio"> |
63 <label> | 71 <label> |
64 <input type="radio" name="startup" value="1" | 72 <input type="radio" name="startup" value="1" |
65 pref="session.restore_on_startup" | 73 pref="session.restore_on_startup" |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
566 </div> | 574 </div> |
567 </section> | 575 </section> |
568 <if expr="pp_ifdef('chromeos')"> | 576 <if expr="pp_ifdef('chromeos')"> |
569 <!-- This section is duplicated here for ChromeOS. This must stay in sync | 577 <!-- This section is duplicated here for ChromeOS. This must stay in sync |
570 with the section above. --> | 578 with the section above. --> |
571 <section id="startup-section"> | 579 <section id="startup-section"> |
572 <h3 i18n-content="sectionTitleStartup"></h3> | 580 <h3 i18n-content="sectionTitleStartup"></h3> |
573 <div> | 581 <div> |
574 <div class="radio"> | 582 <div class="radio"> |
575 <label> | 583 <label> |
| 584 <input type="radio" name="startup" value="0" |
| 585 pref="session.restore_on_startup" |
| 586 metric="Options_Startup_Homepage"> |
| 587 <span i18n-content="startupShowHomePage"></span> |
| 588 </label> |
| 589 </div> |
| 590 <div class="radio"> |
| 591 <label> |
576 <input type="radio" name="startup" value="5" | 592 <input type="radio" name="startup" value="5" |
577 pref="session.restore_on_startup" | 593 pref="session.restore_on_startup" |
578 metric="Options_Startup_NewTab"> | 594 metric="Options_Startup_NewTab"> |
579 <span i18n-content="startupShowNewTab"></span> | 595 <span i18n-content="startupShowNewTab"></span> |
580 </label> | 596 </label> |
581 </div> | 597 </div> |
582 <div class="radio"> | 598 <div class="radio"> |
583 <label> | 599 <label> |
584 <input type="radio" name="startup" value="1" | 600 <input type="radio" name="startup" value="1" |
585 pref="session.restore_on_startup" | 601 pref="session.restore_on_startup" |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
633 </section> | 649 </section> |
634 </if> | 650 </if> |
635 </div> <!-- advanced-settings-container --> | 651 </div> <!-- advanced-settings-container --> |
636 </div> <!-- advanced-settings --> | 652 </div> <!-- advanced-settings --> |
637 <footer> | 653 <footer> |
638 <button id="advanced-settings-expander" class="link-button" | 654 <button id="advanced-settings-expander" class="link-button" |
639 i18n-content="showAdvancedSettings"> | 655 i18n-content="showAdvancedSettings"> |
640 </button> | 656 </button> |
641 </footer> | 657 </footer> |
642 </div> | 658 </div> |
OLD | NEW |