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