summaryrefslogtreecommitdiffstats
path: root/layout/reftests/columns/min-width-1c.html
blob: 09f5105dac977dfa26c5114d10a43eb44f07301f (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:100px; column-count:2; column-gap:0; border:2px solid black; height:200px; }
  div.gap { column-gap:80px; }
  span { display:inline-block; width:200px; }
  </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>