| Index: LayoutTests/fast/css/variables/var-inside-shorthand.html
|
| diff --git a/LayoutTests/fast/css/variables/var-inside-shorthand.html b/LayoutTests/fast/css/variables/var-inside-shorthand.html
|
| index 069a58f35b439673d6a2c922ae5028e8791ba699..262a5bf80046164308a014299a07e2b4f60c9942 100644
|
| --- a/LayoutTests/fast/css/variables/var-inside-shorthand.html
|
| +++ b/LayoutTests/fast/css/variables/var-inside-shorthand.html
|
| @@ -1,8 +1,8 @@
|
| <style>
|
| body {
|
| - -webkit-var-MyBorderColor: green;
|
| + var-MyBorderColor: green;
|
| border: 10px solid red;
|
| - border: 10px solid -webkit-var(MyBorderColor);
|
| + border: 10px solid var(MyBorderColor);
|
| }
|
| </style>
|
| This text should be surrounded by a green border. There should be no red visible.
|
|
|