summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/css3/css-variable-definition.html
blob: d7b047b3652c29ef075dde19f3123ce6d8f713b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<style>
    :root {
        var-mycolor : red;
    }
    div {
        color: var(mycolor);
    }
</style>
<body>
    <p>Check that a CSS variable definition accepts spaces before the ':'</p>
    <div>This text should be red</div>
</body>
</html>