diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/block-fix-height-last-child-1a-dyn.html')
-rw-r--r-- | layout/reftests/margin-collapsing/block-fix-height-last-child-1a-dyn.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-fix-height-last-child-1a-dyn.html b/layout/reftests/margin-collapsing/block-fix-height-last-child-1a-dyn.html new file mode 100644 index 0000000000..9e5875e453 --- /dev/null +++ b/layout/reftests/margin-collapsing/block-fix-height-last-child-1a-dyn.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<head> +<style type="text/css"> +#parent { + height: 100px; + background-color: lightgreen; +} +#last-child { + display: none; + height: 40px; + margin-bottom: 20px; + background-color: green; +} +#separator { + height: 20px; + background-color: blue; +} +</style> +<script type="text/javascript"> +function test() { + document.getElementById('last-child').style.display = 'block'; + 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> |