| Index: LayoutTests/fast/css/variables/inherited-values.html
|
| diff --git a/LayoutTests/fast/css/variables/inherited-values.html b/LayoutTests/fast/css/variables/inherited-values.html
|
| index 59bfaca2ce4884409af1fc30b8a35c44b0ab9456..ff942cd6c38291e1c62dae2606b0551925987d38 100644
|
| --- a/LayoutTests/fast/css/variables/inherited-values.html
|
| +++ b/LayoutTests/fast/css/variables/inherited-values.html
|
| @@ -1,12 +1,12 @@
|
| <style>
|
| body {
|
| - -webkit-var-foreground: green;
|
| - -webkit-var-background: rgb(255, 255, 255);
|
| + var-foreground: green;
|
| + var-background: rgb(255, 255, 255);
|
| }
|
| div {
|
| - color: -webkit-var(foreground);
|
| + color: var(foreground);
|
| background-color: red;
|
| - background-color: -webkit-var(background);
|
| + background-color: var(background);
|
| }
|
| </style>
|
| <div>
|
|
|