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

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

Issue 1109953003: Check in animation policy extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@update_versions
Patch Set: Created 5 years, 7 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 <style type="text/css">
5 body {
6 width: 30em;
7 padding: 0.75em;
8 border-radius: 6px;
9 }
10 * {
11 font-family: Arial, Helvetica, sans-serif;
12 font-size: 10pt;
13 }
14 label {
15 display: block;
16 }
17 fieldset {
18 border: none;
19 margin: 0;
20 margin-bottom: 1em;
21 padding: 0;
22 }
23 legend {
24 font-size: 12pt;
25 font-weight: bold;
26 padding-top: 1em;
27 padding-bottom: 0.5em;
28 }
29 input[type="radio"] {
30 margin-left: 1em;
31 }
32 </style>
33 <script src="popup.js"></script>
34 </head>
35 <body>
36 <fieldset>
37 <legend id="title" i18n-content="animation_policy"></legend>
38 <label>
39 <input type="radio" name="animation" value="allowed">
40 <span i18n-content="animation_allowed"></span>
41 </label>
42 <label>
43 <input type="radio" name="animation" value="once">
44 <span i18n-content="animation_once"></span>
45 </label>
46 <label>
47 <input type="radio" name="animation" value="none">
48 <span i18n-content="animation_none"></span>
49 </label>
50 </fieldset>
51 </body>
52 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698