diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/block-clear-2.html')
-rw-r--r-- | layout/reftests/margin-collapsing/block-clear-2.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-clear-2.html b/layout/reftests/margin-collapsing/block-clear-2.html new file mode 100644 index 0000000000..152c014db9 --- /dev/null +++ b/layout/reftests/margin-collapsing/block-clear-2.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> +<head> +<!-- Without floats, no clearance applies, thus margin-top of #clear + should collapse with margin-bottom of its parent element. --> +<style type="text/css"> +#parent { + margin-bottom: 10px; +} +.separator { + height: 20px; + background-color: green; +} +#clear { + clear: left; + margin-top: 20px; +} +</style> +</head> +<body> +<div id="parent"> + <div class="separator"></div> + <div id="clear"></div> +</div> +<div class="separator"></div> +</body> +</html> |