Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: chrome/browser/resources/options/browser_options.html

Issue 10915140: Add the partial screen magnifier to Chrome OS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Code review fixes Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698