1
0
Fork 0
firefox/testing/web-platform/tests/css/css-tables/paint/col-paint-htb-rtl.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

19 lines
545 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-tables-3/#drawing-cell-backgrounds">
<link rel="match" href="col-paint-htb-rtl-ref.html">
<style>
table { border: solid 2px; border-spacing: 5px; padding: 5px; }
col { background: linear-gradient(60deg, red 50%, blue 50%); }
</style>
<table style="direction: rtl;">
<col style="width: 100px;"></col>
<col style="width: 50px;"></col>
<tr style="height: 100px;">
<td></td>
<td></td>
</tr>
<tr style="height: 50px;">
<td></td>
<td></td>
</tr>
</table>