summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/container-queries/style-change-in-container.html
blob: ed4baa7e8b619f77782466e3c0db1fbe4274091c (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
<!doctype html>
<title>CSS Container Queries Test: recompute style inside a @container</title>
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#container-queries">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/cq-testcommon.js"></script>
<style>
  #container { container-type: size; }
  @container (min-width: 1px) {
    #content { color: green; }
  }
</style>
<div id="container">
  <div id="content"></div>
</div>
<script>
  setup(() => assert_implements_container_queries());

  let content = document.getElementById("content");

  test(() => {
    assert_equals(getComputedStyle(content).color, "rgb(0, 128, 0)");

    // Dirty style of an element inside the container:
    content.style.backgroundColor = "lime";

    // The container query should still evaluate correctly:
    assert_equals(getComputedStyle(content).color, 'rgb(0, 128, 0)');
  }, "Basic test for container query evaluation stability");
</script>