summaryrefslogtreecommitdiffstats
path: root/layout/reftests/async-scrolling/position-fixed-inside-sticky-2-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/async-scrolling/position-fixed-inside-sticky-2-ref.html')
-rw-r--r--layout/reftests/async-scrolling/position-fixed-inside-sticky-2-ref.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/async-scrolling/position-fixed-inside-sticky-2-ref.html b/layout/reftests/async-scrolling/position-fixed-inside-sticky-2-ref.html
new file mode 100644
index 0000000000..8c48da5dbe
--- /dev/null
+++ b/layout/reftests/async-scrolling/position-fixed-inside-sticky-2-ref.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<style>
+body {
+ height: 4000px;
+ margin: 0;
+ overflow: hidden;
+}
+#fixed {
+ position: fixed;
+ top: 50px;
+ left: 50px;
+ width: 100px;
+ height: 100px;
+ box-sizing: border-box;
+ border: 1px solid blue;
+}
+</style>
+<div id="fixed"></div>
+</html>