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