summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/css3/css-variable-definition-expected.html
blob: 18fbf334e61fb3f828a7b06a985ae89efacc750c (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>