diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/block-non-sibling-2b-dyn.html')
-rw-r--r-- | layout/reftests/margin-collapsing/block-non-sibling-2b-dyn.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-non-sibling-2b-dyn.html b/layout/reftests/margin-collapsing/block-non-sibling-2b-dyn.html new file mode 100644 index 0000000000..90a4b09bfa --- /dev/null +++ b/layout/reftests/margin-collapsing/block-non-sibling-2b-dyn.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<head> +<style type="text/css"> +#a { + background-color: green; + margin-bottom: 10px; + height: 20px; +} +#b { + background-color: green; + margin-top: 40px; +} +#b div { + display: none; + height: 20px; + margin-top: 20px; +} +</style> +<script type="text/javascript"> +function test() { + document.getElementsByTagName('div')[2].style.display = 'block'; + document.documentElement.removeAttribute('class'); +} +document.addEventListener('MozReftestInvalidate', test); +</script> +</head> +<body> +<div id="a"> +</div> +<div id="b"> + <div></div> +</div> +</body> +</html> |