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