Files
servo/tests/wpt/css-tests/css21_dev/html4/bidi-table-001.htm

38 lines
1.2 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: direction: rtl on table</title>
<link rel="author" title="Eira Monstad, Opera Software ASA" href="mailto:public-testsuites@opera.com">
<link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#table-layout">
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction">
<meta name="flags" content="">
<meta name="assert" content="direction:rtl on table should reverse order of table cells">
<style type="text/css">
table {border-spacing: 0; margin-bottom: 1em;}
table.test {direction:rtl;}
td.a {background-color: navy; color: navy;}
td.b {background-color: magenta; color: magenta;}
td.c {background-color: cyan; color: cyan;}
</style>
</head>
<body>
<p>You should see two identical colored bands below:</p>
<table class="test">
<tr>
<td class="a">xxxxxx</td>
<td class="b">xxxxxx</td>
<td class="c">xxxxxx</td>
</tr>
</table>
<table>
<tr>
<td class="c">xxxxxx</td>
<td class="b">xxxxxx</td>
<td class="a">xxxxxx</td>
</tr>
</table>
</body>
</html>