bmlk%gmx.de c2a9780647 adding testcases to layout regression tests, npob
git-svn-id: svn://10.0.0.236/trunk@184977 18797224-902f-48f8-a5cc-f745e15eee43
2005-11-19 20:25:41 +00:00

38 lines
590 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML Transitional 4.01//EN">
<html>
<head>
<style type="text/css">
body {
direction: rtl;
}
table {
border-collapse: collapse;
}
td + td {
border-left: 2px solid black;
/* from this point on, the stlye is just for visual emphasis
of the cells, it has nothing to do with the bug
manifestation
*/
background-color: cyan;
}
td {
background-color: magenta;
}
</style>
</head>
<body>
<p dir="ltr">the second table cell (td 2) should have a left border.</p>
<table>
<tr>
<td>row 1 td 1</td>
<td>row 1 td 2</td>
</tr>
</table>
</body>
</html>