diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/block-fix-height-last-child-4h-dyn.html')
-rw-r--r-- | layout/reftests/margin-collapsing/block-fix-height-last-child-4h-dyn.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-fix-height-last-child-4h-dyn.html b/layout/reftests/margin-collapsing/block-fix-height-last-child-4h-dyn.html new file mode 100644 index 0000000000..8d293f79cb --- /dev/null +++ b/layout/reftests/margin-collapsing/block-fix-height-last-child-4h-dyn.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<head> +<style type="text/css"> +#parent { + max-height: 150px; + background-color: lightgreen; +} +#last-child { + height: 10px; + margin-bottom: -20px; + background-color: green; +} +#separator { + height: 20px; + background-color: blue; +} +</style> +<script type="text/javascript"> +function test() { + document.getElementById('parent').style.height = '100px'; + document.documentElement.removeAttribute('class'); +} +document.addEventListener('MozReftestInvalidate', test); +</script> +</head> +<body> +<div id="parent"> + <div id="last-child"></div> +</div> +<div id="separator"></div> +</body> +</html> |