summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/container-queries/table-inside-container-changing-display.html
blob: 33a4f4fe721b11e6ea10b0c15b8e42465fd1f1f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!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>