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