diff options
Diffstat (limited to 'layout/reftests/columns/min-width-1b.html')
-rw-r--r-- | layout/reftests/columns/min-width-1b.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/columns/min-width-1b.html b/layout/reftests/columns/min-width-1b.html new file mode 100644 index 000000000..ad78979b5 --- /dev/null +++ b/layout/reftests/columns/min-width-1b.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> +<head> + <style> + div { -moz-column-width:200px; -moz-column-count:2; -moz-column-gap:0; border:2px solid black; height:200px; } + div.gap { -moz-column-gap:80px; } + span { display:inline-block; width:100px; } + </style> +</head> +<body> + <table width="1"><tr><td><div> + <span></span> + </div></tr></td></table> + <table width="1"><tr><td><div class="gap"> + <span></span> + </div></tr></td></table> +</body> +</html> |