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