diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/block-xhtml-root-2-ref.xhtml')
-rw-r--r-- | layout/reftests/margin-collapsing/block-xhtml-root-2-ref.xhtml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-xhtml-root-2-ref.xhtml b/layout/reftests/margin-collapsing/block-xhtml-root-2-ref.xhtml new file mode 100644 index 0000000000..148aa1ab5b --- /dev/null +++ b/layout/reftests/margin-collapsing/block-xhtml-root-2-ref.xhtml @@ -0,0 +1,29 @@ +<root> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <style type="text/css"> + root, html, body { + display: block; + margin: 0; padding: 0; + } + #the-root { + padding: 20px 0; + } + #the-html { + background-color: lightgreen; + } + #the-body { + background-color: green; + height: 100px; + } + </style> +</head> +<body> +<div id="the-root"> + <div id="the-html"> + <div id="the-body"></div> + </div> +</div> +</body> +</html> +</root> |