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