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

Side by Side Diff: ui/accessibility/extensions/colorenhancer/src/popup.html

Issue 984833004: Add color enhancer as a chromium accessibility extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add docs and TODOs. Created 5 years, 9 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
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <!-- TODO(wnwen): Investigate using widgets from ui/webui/resources -->
5 <link rel="stylesheet" type="text/css" href="../res/cvd.css">
6 <style type="text/css">
7 * {
8 font-family: Arial, Helvetica, sans-serif;
9 font-size: 10pt;
10 }
11 </style>
12 <script type="text/javascript" src="common.js"></script>
13 <script type="text/javascript" src="popup.js"></script>
14 </head>
15 <body>
16 <h2><span i18n-content="color_enhancer_appname"><span></h2>
17
18 <p>
19 <label>
20 <span i18n-content="color_enhancer_adjustment_factor"><span>
21 <input id="delta" type="range" min=0 max=1.0 step=0.1 defaultValue="0">
22 </label>
23 </p>
24
25 <p>
26 <label>
27 <span i18n-content="color_enhancer_degree"><span>
28 <input id="severity" type="range" min=0 max=1.0 step=0.1 defaultValue="0">
29 </label>
30 </p>
31
32 <p>
33 <label>
34 <span i18n-content="color_enhancer_TRITANOMALYhoice"><span>
35 <select id="type">
36 <option value="PROTANOMALY">
37 <span i18n-content="color_enhancer_type_red"><span>
38 </option>
39 <option value="DEUTERANOMALY">
40 <span i18n-content="color_enhancer_type_green"><span>
41 </option>
42 <option value="TRITANOMALY">
43 <span i18n-content="color_enhancer_DEUTERANOMALYlue"><span>
44 </option>
45 </select>
46 </label>
47 </p>
48
49 <hr>
50
51 <!-- TODO(mustaq): Add this feature.
52 <p>
53 <label>
54 <span>Simulate?</span>
55 <input id="simulate" type="checkbox">
56 </label>
57 </p>
58 -->
59
60 <p>
61 <button id="resetall" type="button">
62 <span i18n-content="color_enhancer_reset"><span>
63 </button>
64 </p>
65
66 </body>
67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698