Fix layout of RTL tables in LTR flow

Fixes #6006.
This commit is contained in:
Matt Brubeck 2015-05-15 16:50:58 -07:00
parent 0898620902
commit 179a70b305
4 changed files with 52 additions and 6 deletions

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>RTL Table reference</title>
<style>
td {
background: orange;
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<table><tr><td></td></tr></table>
</body>
</html>