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/display-contents-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Test: `display: contents` inside table</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<link rel="match" href="display-contents-001-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<meta name="assert" content="
The contents of the table (anonymous or not) should inherit the green color from the
element with `display: contents`.
">
<div style="display: table; font: 25px/1 Ahem; color: red">
<div style="display: table-row-group">
<div style="display: contents; color: green">
X
<div style="display: table-cell">X</div>
X
<div style="display: table-row">X</div>
X
</div>
</div>
</div>