mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
26 lines
819 B
HTML
26 lines
819 B
HTML
<!doctype html>
|
|
<title>CSS Container Queries Test: table inside @container changing display type</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#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>
|