diff options
Diffstat (limited to 'layout/reftests/css-animations/print-no-animations.html')
-rw-r--r-- | layout/reftests/css-animations/print-no-animations.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/css-animations/print-no-animations.html b/layout/reftests/css-animations/print-no-animations.html new file mode 100644 index 0000000000..a52334cd86 --- /dev/null +++ b/layout/reftests/css-animations/print-no-animations.html @@ -0,0 +1,16 @@ +<!DOCTYPE HTML> +<html class="reftest-print"> +<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> |