| Index: LayoutTests/fast/css/variables/var-inside-shape.html
|
| diff --git a/LayoutTests/fast/css/variables/var-inside-shape.html b/LayoutTests/fast/css/variables/var-inside-shape.html
|
| index 1cbf7469b4fc19312be6561cbf202f6a0db2dec4..acd76adb5f90c514968c039f79cd466d31dd127c 100644
|
| --- a/LayoutTests/fast/css/variables/var-inside-shape.html
|
| +++ b/LayoutTests/fast/css/variables/var-inside-shape.html
|
| @@ -2,19 +2,19 @@
|
| <html>
|
| <style>
|
| :root {
|
| - -webkit-var-a: 100px;
|
| + var-a: 100px;
|
| }
|
| .a {
|
| - -webkit-shape-inside: ellipse(-webkit-var(a), -webkit-var(a), -webkit-var(a), -webkit-var(a));
|
| + -webkit-shape-inside: ellipse(var(a), var(a), var(a), var(a));
|
| }
|
| .b {
|
| - -webkit-shape-inside: circle(-webkit-var(a), -webkit-var(a), -webkit-var(a));
|
| + -webkit-shape-inside: circle(var(a), var(a), var(a));
|
| }
|
| .c {
|
| - -webkit-shape-inside: rectange(-webkit-var(a));
|
| + -webkit-shape-inside: rectange(var(a));
|
| }
|
| .d {
|
| - -webkit-shape-inside: polygon(-webkit-var(a), -webkit-var(a), -webkit-var(a), -webkit-var(a));
|
| + -webkit-shape-inside: polygon(var(a), var(a), var(a), var(a));
|
| }
|
| </style>
|
| <div class="a">
|
|
|