Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-display/display-contents-table-003.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>CSS Test: CSS display:contents in table layout</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<link rel="match" href="../reference/ref-filled-green-200px-square.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
div { color: red; font: 40px / 1 Ahem; }
span { display: contents; color: green; }
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="display: table"><span>XXXXX</span></div>
<div style="display: table-caption"><span>XXXXX</span></div>
<div style="display: table-row-group"><span>XXXXX</span></div>
<div style="display: table-row"><span>XXXXX</span></div>
<div style="display: table-cell"><span>XXXXX</span></div>
<script src="/common/reftest-wait.js"></script>
<script>
document.fonts.ready.then(takeScreenshot);
</script>
</html>