diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/margin-collapsing/block-percent-2.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-percent-2.html b/layout/reftests/margin-collapsing/block-percent-2.html new file mode 100644 index 0000000000..0137dc9b9f --- /dev/null +++ b/layout/reftests/margin-collapsing/block-percent-2.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +#parent1 { + width: 200px; +} +#block1 { + height: 50px; + margin-bottom: 20%; + background-color: green; +} +#parent2 { + width: 500px; +} +#block2 { + height: 50px; + margin-top: 10%; + background-color: green; +} +</style> +</head> +<body> +<div id="parent1"> + <div id="block1"></div> +</div> +<div id="parent2"> + <div id="block2"></div> +</div> +</body> +</html> |