summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/container-queries/container-units-in-at-container-dynamic.html
blob: c1f929241ca7018f636bfabf7072c1bfa549db6a (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
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<title>Container Relative Units: in @container prelude (dynamic)</title>
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#container-lengths">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/cq-testcommon.js"></script>
<style>
  #outer {
     container-type: size;
     width: 40px;
     height: 40px;
   }
  #container {
    container-type: size;
    width: 16px;
    height: 16px;
  }

  @container ((width = 16px) and (width = 50cqw)) { #child { --cqw:true;  } }

</style>

<div id=outer>
  <div id=container>
    <div id=child>Test</div>
  </div>
</div>

<script>
  setup(() => assert_implements_container_queries());

  test(() => {
    assert_equals(getComputedStyle(child).getPropertyValue('--cqw'), '');
    outer.style.width = '32px';
    assert_equals(getComputedStyle(child).getPropertyValue('--cqw'), 'true');
  }, 'Query with container-relative units are responsive to changes');
</script>