diff options
Diffstat (limited to 'layout/reftests/scrolling/uncovering-1-ref.html')
-rw-r--r-- | layout/reftests/scrolling/uncovering-1-ref.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/layout/reftests/scrolling/uncovering-1-ref.html b/layout/reftests/scrolling/uncovering-1-ref.html new file mode 100644 index 000000000..52d7a1463 --- /dev/null +++ b/layout/reftests/scrolling/uncovering-1-ref.html @@ -0,0 +1,23 @@ +<!DOCTYPE HTML> +<html> +<head> +<style> +body { + width: 1500px; + overflow: hidden; +} +div#bottom { + position: fixed; + left: 0; + top: 0; + height: 200px; + width: 200px; + background: green; +} +</style> +</head> +<body> +<div id="bottom"></div> +<div style="width:600px; height:100px; background:pink;"></div> +</body> +</html> |