summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/paint/col-paint-htb-rtl-ref.html
blob: 107a960958a762fb5579593760d9957b7b9d7d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<style>
table { border: solid 2px; border-spacing: 5px; padding: 5px; }
col { background: linear-gradient(60deg, red 50%, blue 50%); }
</style>
<table>
  <col style="width: 50px;"></col>
  <col style="width: 100px;"></col>
  <tr style="height: 100px;">
    <td></td>
    <td></td>
  </tr>
  <tr style="height: 50px;">
    <td></td>
    <td></td>
  </tr>
</table>