diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/margin-collapsing/block-float-3b-ref.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-float-3b-ref.html b/layout/reftests/margin-collapsing/block-float-3b-ref.html new file mode 100644 index 0000000000..2e6734c370 --- /dev/null +++ b/layout/reftests/margin-collapsing/block-float-3b-ref.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +#float1, #float2 { + width: 100px; + height: 20px; + background-color: green; + margin-left: auto; +} +#spacer { + height: 30px; +} +</style> +</head> +<body> +<div id="container"> + <div id="float1"></div> + <div id="spacer"></div> + <div id="float2"></div> +</div> +</body> +</html> |