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

Side by Side Diff: ui/accessibility/extensions/highcontrast/popup.html

Issue 610453002: Move accessibility extension translations to grd file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>High Contrast Pop-up</title>
5 <link rel="stylesheet" type="text/css" href="highcontrast.css"> 4 <link rel="stylesheet" type="text/css" href="highcontrast.css">
6 <style type="text/css"> 5 <style type="text/css">
7 html { 6 html {
8 border-radius: 6px; 7 border-radius: 6px;
9 } 8 }
10 body { 9 body {
11 width: 18em; 10 width: 18em;
12 padding: 0.75em; 11 padding: 0.75em;
13 border-radius: 6px; 12 border-radius: 6px;
14 } 13 }
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 } 55 }
57 input[type="radio"] { 56 input[type="radio"] {
58 margin-left: 1em; 57 margin-left: 1em;
59 } 58 }
60 </style> 59 </style>
61 <script type="text/javascript" src="common.js"></script> 60 <script type="text/javascript" src="common.js"></script>
62 <script type="text/javascript" src="popup.js"></script> 61 <script type="text/javascript" src="popup.js"></script>
63 </head> 62 </head>
64 <body> 63 <body>
65 64
66 <h2 id="title" tabIndex="0"></h2> 65 <h2 id="title"></h2>
67 66
68 <button id="toggle"></button> 67 <button id="toggle"></button>
69 68
70 <div id="subcontrols"> 69 <div id="subcontrols">
71 70
72 <fieldset> 71 <fieldset>
73 <legend id="scheme_title"></legend> 72 <legend id="scheme_title"></legend>
74 <label> 73 <label>
75 <input type="radio" name="scheme" value="0"> 74 <input type="radio" name="scheme" value="0">
76 Normal 75 <span i18n-content="normal"></span>
77 </label> 76 </label>
78 <label> 77 <label>
79 <input type="radio" name="scheme" value="1"> 78 <input type="radio" name="scheme" value="1">
80 Increased Contrast 79 <span i18n-content="increased_contrast"><span>Increased Contrast
81 </label> 80 </label>
82 <label> 81 <label>
83 <input type="radio" name="scheme" value="2"> 82 <input type="radio" name="scheme" value="2">
84 Grayscale 83 Grayscale
85 </label> 84 </label>
86 <label> 85 <label>
87 <input type="radio" name="scheme" value="3"> 86 <input type="radio" name="scheme" value="3">
88 Inverted Color 87 Inverted Color
89 </label> 88 </label>
90 <label> 89 <label>
91 <input type="radio" name="scheme" value="4"> 90 <input type="radio" name="scheme" value="4">
92 Inverted Grayscale 91 Inverted Grayscale
93 </label> 92 </label>
94 <label> 93 <label>
95 <input type="radio" name="scheme" value="5"> 94 <input type="radio" name="scheme" value="5">
96 Yellow on Black 95 Yellow on Black
97 </label> 96 </label>
98 </fieldset> 97 </fieldset>
99 98
100 <button id="make_default">Set as default scheme</button> 99 <button id="make_default">Set as default scheme</button>
101 100
102 <button id="forget">Forget site customizations</button> 101 <button id="forget">Forget site customizations</button>
103 102
104 </div> 103 </div>
105 104
106 </body> 105 </body>
107 </html> 106 </html>
OLDNEW
« no previous file with comments | « ui/accessibility/extensions/highcontrast/manifest.json ('k') | ui/accessibility/extensions/highcontrast/popup.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698