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