Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / variables / calc-inside-calc.html
1 <!DOCTYPE html>
2 <html>
3 <style>
4 div {
5   border-color: green;
6   border-style: solid;
7   border-width: -webkit-calc(var(a) + 1px);
8   var-a: -webkit-calc(1px + 3px);
9 }
10 </style>
11 <div>This text should have the default border width</div>
12 </html>