summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/normal-flow/margin-collapse-through-percentage-height-block.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/normal-flow/margin-collapse-through-percentage-height-block.html')
-rw-r--r--testing/web-platform/tests/css/CSS2/normal-flow/margin-collapse-through-percentage-height-block.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/normal-flow/margin-collapse-through-percentage-height-block.html b/testing/web-platform/tests/css/CSS2/normal-flow/margin-collapse-through-percentage-height-block.html
new file mode 100644
index 0000000000..0248ccb910
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/normal-flow/margin-collapse-through-percentage-height-block.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
+<link rel="help" href="https://www.w3.org/TR/CSS22/box.html#collapsing-margins" title="8.3.1 Collapsing margins">
+<link rel="help" href="http://crbug.com/962175">
+<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
+<meta name="assert" content="A percentage height is unresolvable (i.e. gets treated as auto) if the containing block is auto.">
+<p>Test passes if there is a filled green square.</p>
+<div style="height:200px;">
+ <div style="overflow:hidden; width:100px; background:green;">
+ <div style="margin-bottom:100px;"></div>
+ <div style="height:30%;"></div>
+ <div style="margin-top:100px;"></div>
+ </div>
+</div>