diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/css-animations/partially-out-of-view-animation-ref.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/css-animations/partially-out-of-view-animation-ref.html b/layout/reftests/css-animations/partially-out-of-view-animation-ref.html new file mode 100644 index 0000000000..fafb98b2dc --- /dev/null +++ b/layout/reftests/css-animations/partially-out-of-view-animation-ref.html @@ -0,0 +1,15 @@ +<!DOCTYPE HTML> +<html> +<title>Animation on element which is partially out of the view</title> +<style> + +div { + position: absolute; + width: 200px; + height: 200px; + background-color: blue; + top: -100px; +} + +</style> +<div></div> |