diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/block-zero-height-2c-ref.html')
-rw-r--r-- | layout/reftests/margin-collapsing/block-zero-height-2c-ref.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-zero-height-2c-ref.html b/layout/reftests/margin-collapsing/block-zero-height-2c-ref.html new file mode 100644 index 000000000..78ed9af99 --- /dev/null +++ b/layout/reftests/margin-collapsing/block-zero-height-2c-ref.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +html, body { + margin-top: 0; +} +#a { + margin-top: 30px; + height: 10px; width: 100px; + background-color: red; +} +#b { + height: 20px; + background-color: green; + margin-top: 30px; +} +</style> +</head> +<body> +<div id="a"></div> +<div id="b"></div> +</body> +</html> |