| Index: LayoutTests/fast/css/variables/complex-cycle.html
|
| diff --git a/LayoutTests/fast/css/variables/complex-cycle.html b/LayoutTests/fast/css/variables/complex-cycle.html
|
| index 01a76990e48db72205449f42446c849b38f7b02d..1df02b33044d894cdb0d43f82d5c9b26acc833c1 100644
|
| --- a/LayoutTests/fast/css/variables/complex-cycle.html
|
| +++ b/LayoutTests/fast/css/variables/complex-cycle.html
|
| @@ -1,12 +1,12 @@
|
| <style>
|
| body {
|
| - -webkit-var-a: -webkit-var(f);
|
| - -webkit-var-b: -webkit-var(a);
|
| - -webkit-var-c: -webkit-var(b);
|
| - -webkit-var-d: -webkit-var(c);
|
| - -webkit-var-e: -webkit-var(d);
|
| - -webkit-var-f: -webkit-var(e);
|
| - color: -webkit-var(a);
|
| + var-a: var(f);
|
| + var-b: var(a);
|
| + var-c: var(b);
|
| + var-d: var(c);
|
| + var-e: var(d);
|
| + var-f: var(e);
|
| + color: var(a);
|
| }
|
| </style>
|
| This test is successful if it does not result in a crash.
|
|
|