diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/block-float-2b.html')
-rw-r--r-- | layout/reftests/margin-collapsing/block-float-2b.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-float-2b.html b/layout/reftests/margin-collapsing/block-float-2b.html new file mode 100644 index 0000000000..ef43207432 --- /dev/null +++ b/layout/reftests/margin-collapsing/block-float-2b.html @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +#separator { + height: 20px; + background-color: green; +} +#float { + float: right; + width: 50px; + margin: 20px 0; + background-color: green; +} +#child { + height: 20px; + margin: 40px 0; + background-color: lightgreen; +} +</style> +</head> +<body> +<div id="separator"></div> +<div id="float"> + <div id="child"></div> +</div> +</body> +</html> |