summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-animations/screen-animations.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-animations/screen-animations.html')
-rw-r--r--layout/reftests/css-animations/screen-animations.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/css-animations/screen-animations.html b/layout/reftests/css-animations/screen-animations.html
new file mode 100644
index 0000000000..ba1a0aa14e
--- /dev/null
+++ b/layout/reftests/css-animations/screen-animations.html
@@ -0,0 +1,16 @@
+<!DOCTYPE HTML>
+<html>
+<title>Static CSS animation</title>
+<style>
+
+@keyframes a {
+ from, to { color: blue }
+}
+
+p {
+ color: olive;
+ animation: a 1s infinite;
+}
+
+</style>
+<p>blue with animation support; olive without</p>