Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / variables / invalid-variable-value.html
1 <style>
2 div {
3     var-a: green;
4     var-a: 10px;
5     color: var(a);
6 }
7 </style>
8 <div>
9 This text should be black.
10 </div>