1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/columns/min-width-1a.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 + <style> 1.8 + div { -moz-column-count:2; -moz-column-gap:0; border:2px solid black; height:200px; } 1.9 + div.gap { -moz-column-gap:80px; } 1.10 + span { display:inline-block; width:50px; } 1.11 + </style> 1.12 +</head> 1.13 +<body> 1.14 + <table width="1"><tr><td><div> 1.15 + <span></span> 1.16 + </div></tr></td></table> 1.17 + <table width="1"><tr><td><div class="gap"> 1.18 + <span></span> 1.19 + </div></tr></td></table> 1.20 +</body> 1.21 +</html>