Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-image.html

Issue 2746583003: Send deprecation messages for prefixed gradients now that it's possible. (Closed)
Patch Set: recommit Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698