зеркало из https://github.com/mozilla/pjs.git
38 строки
590 B
HTML
38 строки
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> |