- add third_party src.
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / variables / multi-level-cycle.html
1 <style>
2 .a {
3     var-a: var(b);
4     var-b: red;
5 }
6 .b {
7     var-b: var(a);
8 }
9 .c {
10     var-c: var(a);
11     color: var(c);
12 }
13 </style>
14 <div id="a">
15 <div id="b">
16 <div id="c">
17 This test is successful if this text is black, and the test does not result in a crash.
18 </div>
19 </div>
20 </div>