diff options
Diffstat (limited to 'layout/reftests/margin-collapsing/inline-block-child-2-ref.html')
-rw-r--r-- | layout/reftests/margin-collapsing/inline-block-child-2-ref.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/inline-block-child-2-ref.html b/layout/reftests/margin-collapsing/inline-block-child-2-ref.html new file mode 100644 index 0000000000..7380c72d46 --- /dev/null +++ b/layout/reftests/margin-collapsing/inline-block-child-2-ref.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +#inline-block { + display: inline-block; + margin: 10px 0; + padding: 10px 0; + background-color: green; +} +#block { + display: inline-block; + background-color: lightgreen; +} +</style> +</head> +<body> +<div id="inline-block"><span id="block">Hello Kitty</span></div> +</body> +</html> |