diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/margin-collapsing/block-non-sibling-2a-dyn.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-non-sibling-2a-dyn.html b/layout/reftests/margin-collapsing/block-non-sibling-2a-dyn.html new file mode 100644 index 0000000000..9ad8c44d23 --- /dev/null +++ b/layout/reftests/margin-collapsing/block-non-sibling-2a-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: 20px; +} +#b div { + display: none; + height: 20px; + margin-top: 40px; +} +</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> |