diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/block-overflow-2-ref2.html')
-rw-r--r-- | layout/reftests/margin-collapsing/block-overflow-2-ref2.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-overflow-2-ref2.html b/layout/reftests/margin-collapsing/block-overflow-2-ref2.html new file mode 100644 index 0000000000..5698c631f8 --- /dev/null +++ b/layout/reftests/margin-collapsing/block-overflow-2-ref2.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +.separator { + height: 20px; + background-color: blue; +} +.spacer { + height: 20px; +} +#margin { + height: 40px; + background-color: lightgreen; +} +#child { + height: 160px; + background-color: green; +} +</style> +</head> +<body> +<div class="separator"></div> +<div class="spacer"></div> +<div> + <div id="margin"></div> + <div id="child"></div> +</div> +<div class="spacer"></div> +<div class="separator"></div> +</body> +</html> |