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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/browser_options.html
diff --git a/chrome/browser/resources/options/browser_options.html b/chrome/browser/resources/options/browser_options.html
index d5f8e641b1b9a63976b6a15e75212acc385a287b..b52203e6919e3331cf0faa6ef3da86fbe9fc6acd 100644
--- a/chrome/browser/resources/options/browser_options.html
+++ b/chrome/browser/resources/options/browser_options.html
@@ -517,8 +517,17 @@
<div class="option-name">
<div class="checkbox">
<label>
- <input id="accessibility-screen-magnifier-check" type="checkbox">
<span i18n-content="accessibilityScreenMagnifier"></span>
+ <select id="accessibility-screen-magnifier-type">
+ <option value="off"
+ i18n-content="accessibilityScreenMagnifierOff"></option>
+ <option value="full"
+ i18n-content="accessibilityScreenMagnifierFull">
+ </option>
+ <option value="partial"
+ i18n-content="accessibilityScreenMagnifierPartial">
+ </option>
+ </select>
</label>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698