OLD | NEW |
(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="storage.js"></script> |
| 14 <script type="text/javascript" src="popup.js"></script> |
| 15 </head> |
| 16 <body> |
| 17 <h2><span i18n-content="color_enhancer_appname"><span></h2> |
| 18 |
| 19 <p> |
| 20 <label> |
| 21 <span i18n-content="color_enhancer_adjustment_factor"><span> |
| 22 <input id="delta" type="range" min=0 max=1.0 step=0.1 defaultValue="0"> |
| 23 </label> |
| 24 </p> |
| 25 |
| 26 <p> |
| 27 <label> |
| 28 <span i18n-content="color_enhancer_degree"><span> |
| 29 <input id="severity" type="range" min=0 max=1.0 step=0.1 defaultValue="0"> |
| 30 </label> |
| 31 </p> |
| 32 |
| 33 <p> |
| 34 <label> |
| 35 <span i18n-content="color_enhancer_TRITANOMALYhoice"><span> |
| 36 <select id="type"> |
| 37 <option value="PROTANOMALY"> |
| 38 <span i18n-content="color_enhancer_type_red"><span> |
| 39 </option> |
| 40 <option value="DEUTERANOMALY"> |
| 41 <span i18n-content="color_enhancer_type_green"><span> |
| 42 </option> |
| 43 <option value="TRITANOMALY"> |
| 44 <span i18n-content="color_enhancer_DEUTERANOMALYlue"><span> |
| 45 </option> |
| 46 </select> |
| 47 </label> |
| 48 </p> |
| 49 |
| 50 <hr> |
| 51 |
| 52 <!-- TODO(mustaq): Add this feature. |
| 53 <p> |
| 54 <label> |
| 55 <span>Simulate?</span> |
| 56 <input id="simulate" type="checkbox"> |
| 57 </label> |
| 58 </p> |
| 59 --> |
| 60 |
| 61 <p> |
| 62 <button id="resetall" type="button"> |
| 63 <span i18n-content="color_enhancer_reset"><span> |
| 64 </button> |
| 65 </p> |
| 66 |
| 67 </body> |
| 68 </html> |
OLD | NEW |