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