summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/paint/col-paint-vrl-rtl.html
blob: d76ea59dac6b32f6dfa047e413c2daa306ca60e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-tables-3/#drawing-cell-backgrounds">
<link rel="match" href="col-paint-vrl-rtl-ref.html">
<style>
table { border: solid 2px; border-spacing: 5px; padding: 5px; }
col { background: linear-gradient(30deg, red 50%, blue 50%); }
</style>
<table style="writing-mode: vertical-rl; direction: rtl;">
  <col style="height: 50px;"></col>
  <col style="height: 100px;"></col>
  <tr style="width: 100px;">
    <td></td>
    <td></td>
  </tr>
  <tr style="width: 50px;">
    <td></td>
    <td></td>
  </tr>
</table>