Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-conditional/container-queries/table-inside-container-changing-display.html
<!doctype html> <title>CSS Container Queries Test: table inside @container changing display type</title> <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#container-queries"> <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>
/css/css-conditional/container-queries/table-inside-container-changing-display-ref.html
<!doctype html> <title>CSS Test Reference</title> <p>You should see the word PASS below.</p> <table><td>PASS</td></table>