summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/reference/position-fixed-001-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/reference/position-fixed-001-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/reference/position-fixed-001-ref.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/reference/position-fixed-001-ref.html b/testing/web-platform/tests/css/css-flexbox/reference/position-fixed-001-ref.html
new file mode 100644
index 0000000000..4943f537f7
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/reference/position-fixed-001-ref.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+
+<style>
+.fixed-pos{
+ position: fixed;
+ background: green;
+}
+</style>
+
+<body>
+
+<p>You should see no red.</p>
+
+<div class="fixed-pos" >
+ <div>
+ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
+ </div>
+ <div>
+ YYYY
+ </div>
+</div>
+
+</body>
+</html>