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

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, 3 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 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 <div class="checkbox"> 508 <div class="checkbox">
509 <label> 509 <label>
510 <input id="accessibility-high-contrast-check" type="checkbox"> 510 <input id="accessibility-high-contrast-check" type="checkbox">
511 <span i18n-content="accessibilityHighContrast"></span> 511 <span i18n-content="accessibilityHighContrast"></span>
512 </label> 512 </label>
513 </div> 513 </div>
514 </div> 514 </div>
515 <div class="option-name"> 515 <div class="option-name">
516 <div class="checkbox"> 516 <div class="checkbox">
517 <label> 517 <label>
518 <input id="accessibility-screen-magnifier-check" type="checkbox">
519 <span i18n-content="accessibilityScreenMagnifier"></span> 518 <span i18n-content="accessibilityScreenMagnifier"></span>
519 <select id="accessibility-screen-magnifier-type">
520 <option value="off"
521 i18n-content="accessibilityScreenMagnifierOff"></option>
522 <option value="full"
523 i18n-content="accessibilityScreenMagnifierFull">
524 </option>
525 <option value="partial"
526 i18n-content="accessibilityScreenMagnifierPartial">
527 </option>
528 </select>
520 </label> 529 </label>
521 </div> 530 </div>
522 </div> 531 </div>
523 </div> 532 </div>
524 </section> 533 </section>
525 </if> 534 </if>
526 <if expr="not is_macosx and not pp_ifdef('chromeos')"> 535 <if expr="not is_macosx and not pp_ifdef('chromeos')">
527 <section id="background-section"> 536 <section id="background-section">
528 <h3 i18n-content="advancedSectionTitleBackground"></h3> 537 <h3 i18n-content="advancedSectionTitleBackground"></h3>
529 <div class="checkbox"> 538 <div class="checkbox">
530 <label> 539 <label>
531 <input id="backgroundModeCheckbox" type="checkbox"> 540 <input id="backgroundModeCheckbox" type="checkbox">
532 <span i18n-content="backgroundModeCheckbox"></span> 541 <span i18n-content="backgroundModeCheckbox"></span>
533 </label> 542 </label>
534 </div> 543 </div>
535 </section> 544 </section>
536 </if> 545 </if>
537 </div> <!-- advanced-settings-container --> 546 </div> <!-- advanced-settings-container -->
538 </div> <!-- advanced-settings --> 547 </div> <!-- advanced-settings -->
539 <footer> 548 <footer>
540 <button id="advanced-settings-expander" class="link-button" 549 <button id="advanced-settings-expander" class="link-button"
541 i18n-content="showAdvancedSettings"> 550 i18n-content="showAdvancedSettings">
542 </button> 551 </button>
543 </footer> 552 </footer>
544 </div> 553 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698