Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / variables / inherited-values.html
1 <style>
2 body {
3     var-foreground: green;
4     var-background: rgb(255, 255, 255);
5 }
6 div {
7     color: var(foreground);
8     background-color: red;
9     background-color: var(background);
10 }
11 </style>
12 <div>
13 This text should be green on a white background. There should be no red visible.
14 </div>