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/computed-style-cross-fade.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/computed-style-cross-fade.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-cross-fade.html b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-cross-fade.html
index a07ef735b6e116e334dbcb6c03f8c7320cd5db3f..859fc4560d13158f3c360a917d7b870db176ea35 100644
--- a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-cross-fade.html
+++ b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/computed-style-cross-fade.html
@@ -25,7 +25,7 @@ shouldBeEqualToString('testCrossfade("opacity: 500%", "opacity")', '1');
shouldBeEqualToString('testCrossfade("background-image: -webkit-cross-fade(url(dummy://example.png), url(dummy://example.png), 50%)", "background-image")', '-webkit-cross-fade(url("dummy://example.png"), url("dummy://example.png"), 0.5)');
shouldBeEqualToString('testCrossfade("background-image: -webkit-cross-fade(-webkit-cross-fade(url(dummy://a.png), url(dummy://b.png), 25%), url(dummy://example.png), 50%)", "background-image")', '-webkit-cross-fade(-webkit-cross-fade(url("dummy://a.png"), url("dummy://b.png"), 0.25), url("dummy://example.png"), 0.5)');
shouldBeEqualToString('testCrossfade("background-image: -webkit-cross-fade(url(dummy://c.png), -webkit-cross-fade(url(dummy://a.png), url(dummy://b.png), 25%), 50%)", "background-image")', '-webkit-cross-fade(url("dummy://c.png"), -webkit-cross-fade(url("dummy://a.png"), url("dummy://b.png"), 0.25), 0.5)');
-shouldBeEqualToString('testCrossfade("background-image: -webkit-cross-fade(-webkit-linear-gradient(black, white), url(dummy://example.png), 10%)", "background-image")', '-webkit-cross-fade(-webkit-linear-gradient(top, black, white), url("dummy://example.png"), 0.1)');
+shouldBeEqualToString('testCrossfade("background-image: -webkit-cross-fade(linear-gradient(black, white), url(dummy://example.png), 10%)", "background-image")', '-webkit-cross-fade(linear-gradient(black, white), url("dummy://example.png"), 0.1)');
shouldBeEqualToString('testCrossfade("background-image: -webkit-cross-fade(url(dummy://example.png), url(dummy://example.png), 1.0)", "background-image")', '-webkit-cross-fade(url("dummy://example.png"), url("dummy://example.png"), 1)');
shouldBeEqualToString('testCrossfade("background-image: -webkit-cross-fade(url(dummy://example.png), url(dummy://example.png), 0.5)", "background-image")', '-webkit-cross-fade(url("dummy://example.png"), url("dummy://example.png"), 0.5)');

Powered by Google App Engine
This is Rietveld 408576698