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 <if expr="not pp_ifdef('chromeos')"> | 5 <if expr="not pp_ifdef('chromeos')"> |
6 <include src="sync_section.html"> | 6 <include src="sync_section.html"> |
7 </if> | 7 </if> |
8 <if expr="pp_ifdef('chromeos')"> | 8 <if expr="pp_ifdef('chromeos')"> |
9 <section> | 9 <section> |
10 <h3 i18n-content="sectionTitleInternet"></h3> | 10 <h3 i18n-content="sectionTitleInternet"></h3> |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 <div class="checkbox"> | 510 <div class="checkbox"> |
511 <label> | 511 <label> |
512 <input id="accessibility-high-contrast-check" type="checkbox"> | 512 <input id="accessibility-high-contrast-check" type="checkbox"> |
513 <span i18n-content="accessibilityHighContrast"></span> | 513 <span i18n-content="accessibilityHighContrast"></span> |
514 </label> | 514 </label> |
515 </div> | 515 </div> |
516 </div> | 516 </div> |
517 <div class="option-name"> | 517 <div class="option-name"> |
518 <div class="checkbox"> | 518 <div class="checkbox"> |
519 <label> | 519 <label> |
520 <input id="accessibility-screen-magnifier-check" type="checkbox"> | |
521 <span i18n-content="accessibilityScreenMagnifier"></span> | 520 <span i18n-content="accessibilityScreenMagnifier"></span> |
| 521 <select id="accessibility-screen-magnifier-type"> |
| 522 <option value="off" |
| 523 i18n-content="accessibilityScreenMagnifierOff"></option> |
| 524 <option value="full" |
| 525 i18n-content="accessibilityScreenMagnifierFull"> |
| 526 </option> |
| 527 <option value="partial" |
| 528 i18n-content="accessibilityScreenMagnifierPartial"> |
| 529 </option> |
| 530 </select> |
522 </label> | 531 </label> |
523 </div> | 532 </div> |
524 </div> | 533 </div> |
525 </div> | 534 </div> |
526 </section> | 535 </section> |
527 <if expr="pp_ifdef('chromeos')"> | 536 <if expr="pp_ifdef('chromeos')"> |
528 <section id="factory-reset-section" hidden> | 537 <section id="factory-reset-section" hidden> |
529 <h3 i18n-content="factoryResetTitle"></h3> | 538 <h3 i18n-content="factoryResetTitle"></h3> |
530 <div> | 539 <div> |
531 <span class="settings-row" i18n-content="factoryResetDescription"> | 540 <span class="settings-row" i18n-content="factoryResetDescription"> |
(...skipping 18 matching lines...) Expand all Loading... |
550 </section> | 559 </section> |
551 </if> | 560 </if> |
552 </div> <!-- advanced-settings-container --> | 561 </div> <!-- advanced-settings-container --> |
553 </div> <!-- advanced-settings --> | 562 </div> <!-- advanced-settings --> |
554 <footer> | 563 <footer> |
555 <button id="advanced-settings-expander" class="link-button" | 564 <button id="advanced-settings-expander" class="link-button" |
556 i18n-content="showAdvancedSettings"> | 565 i18n-content="showAdvancedSettings"> |
557 </button> | 566 </button> |
558 </footer> | 567 </footer> |
559 </div> | 568 </div> |
OLD | NEW |