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