blob: c7006fe77da5056dcdc37d094efb1bd89d9f17be (
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
|
<!doctype html>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<style>
#e1 {
--props: {
width: 100px;
background-color: red;
}
}
#e2 {
--props-copy: var(--props);
}
#e3 {
--props: {
@apply --props-copy;
background-color: green;
height: 200px;
}
}
#e4 {
@apply --props;
}
</style>
<div id=e1>
<div id=e2>
<div id=e3>
<div id=e4>
</div>
</div>
</div>
</div>
<script>
test(function(){
assert_equals(getComputedStyle(e4).backgroundColor, "rgb(0, 128, 0)");
assert_equals(getComputedStyle(e4).width, "100px");
assert_equals(getComputedStyle(e4).height, "200px");
}, "Custom property sets can be extended with the cascade trick");
</script>
|