| Index: third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-image.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-image.html b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-image.html
|
| index 6470172070a82b02d910e0eee829565fdc49bc03..e67d2d04290c0ca2e3cb3d079b37240b7947428a 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-image.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-image.html
|
| @@ -3,10 +3,10 @@
|
| <head>
|
| <style>
|
| #borderImageNone { -webkit-border-image: none }
|
| - #borderImageStretch { -webkit-border-image: -webkit-gradient(linear, 0 0, 0 0) 25 25 25 25 stretch stretch; }
|
| - #borderImageRepeat { -webkit-border-image: -webkit-gradient(linear, 0 0, 0 0) 50 repeat; }
|
| - #borderImageWidth { -webkit-border-image: -webkit-gradient(linear, 0 0, 0 0) 25 25 25 25 / 20 20 20 20 repeat; }
|
| - #borderImageWidth2 { -webkit-border-image: -webkit-gradient(linear, 0 0, 0 0) 50 / 20 stretch stretch; }
|
| + #borderImageStretch { -webkit-border-image: linear-gradient(white, black) 25 25 25 25 stretch stretch; }
|
| + #borderImageRepeat { -webkit-border-image: linear-gradient(white, black) 50 repeat; }
|
| + #borderImageWidth { -webkit-border-image: linear-gradient(white, black) 25 25 25 25 / 20 20 20 20 repeat; }
|
| + #borderImageWidth2 { -webkit-border-image: linear-gradient(white, black) 50 / 20 stretch stretch; }
|
| </style>
|
| <script type="text/javascript">
|
| function log(msg)
|
| @@ -36,19 +36,19 @@
|
|
|
| log('');
|
|
|
| - test('borderImageStretch', '-webkit-gradient(linear, 0 0, 0 0) 25 25 25 25 stretch stretch');
|
| + test('borderImageStretch', 'linear-gradient(white, black) 25 25 25 25 stretch stretch');
|
|
|
| log('');
|
|
|
| - test('borderImageRepeat', '-webkit-gradient(linear, 0 0, 0 0) 50 repeat');
|
| + test('borderImageRepeat', 'linear-gradient(white, black) 50 repeat');
|
|
|
| log('');
|
|
|
| - test('borderImageWidth', '-webkit-gradient(linear, 0 0, 0 0) 25 25 25 25 / 20 20 20 20 repeat');
|
| + test('borderImageWidth', 'linear-gradient(white, black) 25 25 25 25 / 20 20 20 20 repeat');
|
|
|
| log('');
|
|
|
| - test('borderImageWidth2', '-webkit-gradient(linear, 0 0, 0 0) 50 / 20 stretch stretch');
|
| + test('borderImageWidth2', 'linear-gradient(white, black) 50 / 20 stretch stretch');
|
| }
|
| </script>
|
| </head>
|
|
|