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