Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / css3 / css-variable-definition.html
1 <html>
2 <style>
3     :root {
4         var-mycolor : red;
5     }
6     div {
7         color: var(mycolor);
8     }
9 </style>
10 <body>
11     <p>Check that a CSS variable definition accepts spaces before the ':'</p>
12     <div>This text should be red</div>
13 </body>
14 </html>