chromium/third_party/blink/web_tests/fast/css/table-text-align-quirk.html

<html>
<head>
<title></title>
</head>
<body>
<div>
The text below should be left-justified since text-align does not inherit in quirks mode.
</div>
<div style="text-align: center;">
<table style="border: 1px solid black;">
  <tr>
    <td style="width: 100px;">hello.</td>
  </tr>
</table>
</div>
</body>
</html>