summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-override-custom-property.html
blob: 646c0ff9ac8f184d2e234db5f7fbeea1f3353002 (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>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<style>
#e {
    width: 100px;

    --foo: {
        --before: green;
        --after: 0px;
    };

    --before: red;
    @apply --foo;
    --after: 200px;

    height: var(--after);
    background-color: var(--before);
}
</style>
<div id=e>
</div>
<script>
test(function(){
    assert_equals(getComputedStyle(e).backgroundColor, "rgb(0, 128, 0)");
    assert_equals(getComputedStyle(e).width, "100px");
    assert_equals(getComputedStyle(e).height, "200px");
}, "@apply can override custom properties");
</script>