| Index: LayoutTests/fast/css/variables/colors-test.html
|
| diff --git a/LayoutTests/fast/css/variables/colors-test.html b/LayoutTests/fast/css/variables/colors-test.html
|
| index aede39d465e8fe119177cabacb45445b9f5ca0ac..e1f8895db7ff5b4361bd39e367c19a9420726e1d 100644
|
| --- a/LayoutTests/fast/css/variables/colors-test.html
|
| +++ b/LayoutTests/fast/css/variables/colors-test.html
|
| @@ -1,10 +1,10 @@
|
| <style>
|
| body {
|
| - -webkit-var-foreground: green;
|
| - -webkit-var-background: rgb(255, 255, 255);
|
| - color: -webkit-var(foreground);
|
| + var-foreground: green;
|
| + var-background: rgb(255, 255, 255);
|
| + color: var(foreground);
|
| background-color: red;
|
| - background-color: -webkit-var(background);
|
| + background-color: var(background);
|
| }
|
| </style>
|
| This text should be green on a white background. There should be no red visible.
|
|
|