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