summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-properties-values-api/registered-property-crosstalk.html
blob: 8108894369528cee3fde453c721b1093ffa1cc6a (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
38
39
40
41
42
43
<!DOCTYPE html>
<link rel="help" href="https://drafts.css-houdini.org/css-properties-values-api-1" />
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1238686" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>

  @property --x {
    syntax: "<number>";
    inherits: true;
    initial-value: 0;
  }

  #a {
    --y: 0;
  }

  #b {
    --z: 0;
  }

  #c {
    --x: 42;
  }

</style>

<div id=a>
  <div id=b>
    <div id=c>
    </div>
  </div>
</div>

<script>

test(function(){
  assert_equals(getComputedStyle(a).getPropertyValue('--x'), '0');
  assert_equals(getComputedStyle(b).getPropertyValue('--x'), '0');
  assert_equals(getComputedStyle(c).getPropertyValue('--x'), '42');
}, 'Only #c should be affected by --x:42');

</script>