Chromium Code Reviews| Index: LayoutTests/css3/css-variable-definition.html |
| diff --git a/LayoutTests/css3/css-variable-definition.html b/LayoutTests/css3/css-variable-definition.html |
| index 23371c6fc5c348672e966130d75ce5a96e9f1926..d7b047b3652c29ef075dde19f3123ce6d8f713b5 100644 |
| --- a/LayoutTests/css3/css-variable-definition.html |
| +++ b/LayoutTests/css3/css-variable-definition.html |
| @@ -1,10 +1,10 @@ |
| <html> |
| <style> |
| :root { |
| - -webkit-var-mycolor : red; |
| + var-mycolor : red; |
| } |
| div { |
| - color: -webkit-var(mycolor); |
| + color: var(mycolor); |
| } |
| </style> |
| <body> |