Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<title>CSS Container Queries Test: table inside @container changing display type</title>
<link rel="help" href="https://crbug.com/1284918">
<link rel="match" href="table-inside-container-changing-display-ref.html">
<style>
@supports not (container-type: inline-size) {
#container { display: none !important; }
}
#container {
width: 200px;
height: 200px;
container-type: inline-size;
}
</style>
<p>You should see the word PASS below.</p>
<div id="container">
<div>
<table><td>PASS</td></table>
</div>
</div>
<script>
document.body.offsetTop;
document.querySelector("#container").style.display = "inline-block";
document.querySelector("table").style.color = "currentColor";
</script>