Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /quirks/tables-inherit-color-from-body-quirk-003.html - WPT Dashboard Interop Dashboard
<!-- Quirks Mode -->
<title>Quirks Mode: The tables inherit color from body quirk - Table before the body</title>
<link rel="author" title="Oriol Brufau" href="obrufau@igalia.com">
<link rel="help" href="https://quirks.spec.whatwg.org/#the-tables-inherit-color-from-body-quirk">
<link rel="match" href="../css/reference/ref-filled-green-200px-square.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
body { color: green; height: min-content; margin: 0; }
p { color: initial; }
div { color: red; display: flow-root; margin: 0 8px; }
table { font: 200px/1 Ahem; }
</style>
<body>
<div>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<table cellspacing="0" cellpadding="0">
<tr>
<td>X</td>
</tr>
</table>
</div>
</body>
<script>
document.body.before(document.querySelector("div"));
</script>