diff options
Diffstat (limited to 'layout/reftests/percent-overflow-sizing/nestedHeightQuirks.html')
-rw-r--r-- | layout/reftests/percent-overflow-sizing/nestedHeightQuirks.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/layout/reftests/percent-overflow-sizing/nestedHeightQuirks.html b/layout/reftests/percent-overflow-sizing/nestedHeightQuirks.html new file mode 100644 index 0000000000..5b369b3fb6 --- /dev/null +++ b/layout/reftests/percent-overflow-sizing/nestedHeightQuirks.html @@ -0,0 +1,8 @@ +<!-- Quirks mode --> +<body onload="document.getElementById('a').style.removeProperty('height');"> +<div id="a" style="overflow:auto; height:200px; width:200px"> + <div style="overflow:auto"> + <div style="background: green; height:100%"></div> + </div> +</div> +</body> |