summaryrefslogtreecommitdiffstats
path: root/layout/reftests/columns/min-width-1b.html
blob: 1deb4f0c84b3ea89d4c567a19769fda771241af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
  <style>
  div { column-width:200px; column-count:2; column-gap:0; border:2px solid black; height:200px; }
  div.gap { 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>