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