Chromium Code Reviews| Index: LayoutTests/fast/css/variables/redefinition.html |
| diff --git a/LayoutTests/fast/css/variables/redefinition.html b/LayoutTests/fast/css/variables/redefinition.html |
| index e438f5a5a25b1818f68e797b532db0781b6abdbe..681ad60560f5224addef59e86bd6a8976b53eb06 100644 |
| --- a/LayoutTests/fast/css/variables/redefinition.html |
| +++ b/LayoutTests/fast/css/variables/redefinition.html |
| @@ -1,15 +1,15 @@ |
| <style> |
| body { |
| - -webkit-var-a: red; |
| + var-a: red; |
| } |
| #a { |
| - -webkit-var-a: green; |
| + var-a: green; |
| } |
| #b { |
| - -webkit-var-a: blue; |
| + var-a: blue; |
| } |
| div { |
| - color: -webkit-var(a); |
| + color: var(a); |
| } |
| </style> |
| <div> |