diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/block-float-3b-ref.html')
-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 000000000..2e6734c37 --- /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> |