diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/inline-block-sibling-1-ref.html')
-rw-r--r-- | layout/reftests/margin-collapsing/inline-block-sibling-1-ref.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/inline-block-sibling-1-ref.html b/layout/reftests/margin-collapsing/inline-block-sibling-1-ref.html new file mode 100644 index 000000000..1e1026bb8 --- /dev/null +++ b/layout/reftests/margin-collapsing/inline-block-sibling-1-ref.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> +<head> +<!-- specifying all heights in em units so that large font sizes + don't disrupt relationships; everything will scale together --> +<style type="text/css"> +#parent { + width: 200px; + background-color: lightgreen; +} +#inline-block1, #inline-block2 { + height: 2em; + background-color: green; +} +#margin { + height: 2em; +} +</style> +</head> +<body> +<div id="parent"> + <div id="inline-block1"></div> + <div id="margin"></div> + <div id="inline-block2"></div> +</div> +</body> +</html> |