| Index: LayoutTests/fast/css/variables/border-width.html
|
| diff --git a/LayoutTests/fast/css/variables/border-width.html b/LayoutTests/fast/css/variables/border-width.html
|
| index 235c12720cf8f90c42af5348627dbb55e5c1bdba..1c9a77088fa79b55dd9ce63f9b2a74edff1747d4 100644
|
| --- a/LayoutTests/fast/css/variables/border-width.html
|
| +++ b/LayoutTests/fast/css/variables/border-width.html
|
| @@ -2,9 +2,9 @@
|
| div {
|
| border-color: green;
|
| border-style: solid;
|
| - border-width: -webkit-var(a) -webkit-var(b);
|
| - -webkit-var-a: 3px;
|
| - -webkit-var-b: 10px
|
| + border-width: var(a) var(b);
|
| + var-a: 3px;
|
| + var-b: 10px
|
| }
|
| </style>
|
| <div>This text should have top and bottom borders of 3px and left and right borders of 10px</div>
|
|
|