summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scrolling/uncovering-1-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/scrolling/uncovering-1-ref.html')
-rw-r--r--layout/reftests/scrolling/uncovering-1-ref.html23
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 0000000000..52d7a1463c
--- /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>