summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/abspos/static-fixed-inside-abspos.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/abspos/static-fixed-inside-abspos.html')
-rw-r--r--testing/web-platform/tests/css/CSS2/abspos/static-fixed-inside-abspos.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/abspos/static-fixed-inside-abspos.html b/testing/web-platform/tests/css/CSS2/abspos/static-fixed-inside-abspos.html
new file mode 100644
index 0000000000..e3c3aa450d
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/abspos/static-fixed-inside-abspos.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<title>Static position fixed inside static position absolute</title>
+<link rel="author" title="Martin Robinson" href="mrobinson@igalia.com">
+<link rel="help" href="https://www.w3.org/TR/CSS22/visudet.html#abs-non-replaced-width" title="10.3.7 Absolutely positioned, non-replaced elements">
+<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
+
+<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
+
+<div style="display: absolute; width: 100px; height: 100px; background: green;">
+ <div style="position: absolute; width: 50px; height: 50px; margin-left: 50px; margin-top: 50px; background: red;">
+ <div style="position: fixed; width: 50px; height: 50px; background: green;"></div>
+ </div>
+</div>