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