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