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