diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/margin-collapsing/block-no-content-3b-dyn.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-no-content-3b-dyn.html b/layout/reftests/margin-collapsing/block-no-content-3b-dyn.html new file mode 100644 index 0000000000..4a00ff49a1 --- /dev/null +++ b/layout/reftests/margin-collapsing/block-no-content-3b-dyn.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<head> +<style type="text/css"> +#separator { + height: 20px; + background-color: green; +} +#parent { + background-color: green; + margin-top: -10px; +} +#first-child { + margin-bottom: 70px; +} +#last-child { + height: 20px; +} +</style> +<script type="text/javascript"> +function test() { + document.getElementById('first-child').style.marginTop = '-40px'; + document.documentElement.removeAttribute('class'); +} +document.addEventListener('MozReftestInvalidate', test); +</script> +</head> +<body> +<div id="separator"></div> +<div id="parent"> + <div id="first-child"></div> + <div id="last-child"></div> +</div> +</body> +</html> |