diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/margin-collapsing/inline-block-horizontal-1-ref.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/inline-block-horizontal-1-ref.html b/layout/reftests/margin-collapsing/inline-block-horizontal-1-ref.html new file mode 100644 index 0000000000..1f7901bfa3 --- /dev/null +++ b/layout/reftests/margin-collapsing/inline-block-horizontal-1-ref.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +body { + font-family: sans-serif; +} +span { + display: inline-block; +} +#ib1 { + margin-right: 30px; +} +</style> +</head> +<body> +<div><span id="ib1">Hello</span><span>Kitty</span></div> +</body> +</html> |