Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/tentative/collapsed-borders-painting-order-012.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Painting order of collapsed table borders</title>
<link rel="author" title="Oriol Brufau" href="obrufau@igalia.com">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="
The collapsed border of the outer table is painted behind the collapsed border
of the inner table, when the inner table has `display: inline-table`.
">
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<table style="border-collapse: collapse; line-height: 0">
<td style="border: 50px solid red; padding: 0">
<table style="border-collapse: collapse; margin: -50px; display: inline-table; vertical-align: top">
<td style="border: 50px solid green; padding: 0"></td>
</table>
</td>
</table>