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