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

Unified 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, 8 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: ui/accessibility/extensions/animation/popup.html
diff --git a/ui/accessibility/extensions/animation/popup.html b/ui/accessibility/extensions/animation/popup.html
new file mode 100644
index 0000000000000000000000000000000000000000..9f7723a118e623207053d2cfe89438108ee5aacd
--- /dev/null
+++ b/ui/accessibility/extensions/animation/popup.html
@@ -0,0 +1,52 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style type="text/css">
+ body {
+ width: 30em;
+ padding: 0.75em;
+ border-radius: 6px;
+ }
+ * {
+ font-family: Arial, Helvetica, sans-serif;
+ font-size: 10pt;
+ }
+ label {
+ display: block;
+ }
+ fieldset {
+ border: none;
+ margin: 0;
+ margin-bottom: 1em;
+ padding: 0;
+ }
+ legend {
+ font-size: 12pt;
+ font-weight: bold;
+ padding-top: 1em;
+ padding-bottom: 0.5em;
+ }
+ input[type="radio"] {
+ margin-left: 1em;
+ }
+ </style>
+ <script src="popup.js"></script>
+ </head>
+ <body>
+ <fieldset>
+ <legend id="title" i18n-content="animation_policy"></legend>
+ <label>
+ <input type="radio" name="animation" value="allowed">
+ <span i18n-content="animation_allowed"></span>
+ </label>
+ <label>
+ <input type="radio" name="animation" value="once">
+ <span i18n-content="animation_once"></span>
+ </label>
+ <label>
+ <input type="radio" name="animation" value="none">
+ <span i18n-content="animation_none"></span>
+ </label>
+ </fieldset>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698