when I change the page direction to rtl
the table margins is go incorrect,as in this picture
but when I only remove the dir
attribute from the page every thing is go correct , as in
CSS
table,td,tr {
border: 2px solid black;
padding:0px;
}
HTML
<body>
<table>
<tr> <td></td><td></td> </tr>
<tr> <td></td><td></td> </tr>
</table>
</body>
this happens in firefox but on chrome the table is correct on both directions!
how to solve this issue?
EDIT:
I just reported a new bug to Bugzilla today(after 3 years from the question :D), here is the link https://bugzilla.mozilla.org/show_bug.cgi?id=1580346