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