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