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