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