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