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

Unified Diff: third_party/WebKit/LayoutTests/fast/gradients/css3-radial-gradients3.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/gradients/css3-radial-gradients3.html
diff --git a/third_party/WebKit/LayoutTests/fast/gradients/css3-radial-gradients3.html b/third_party/WebKit/LayoutTests/fast/gradients/css3-radial-gradients3.html
index c1659a834b6e9eb4201f598158dcfcb248f51e40..def1ec0d467386a9a44f337e6bf8fae7183e9376 100644
--- a/third_party/WebKit/LayoutTests/fast/gradients/css3-radial-gradients3.html
+++ b/third_party/WebKit/LayoutTests/fast/gradients/css3-radial-gradients3.html
@@ -13,13 +13,11 @@
}
.gradient1 {
- background-image: -webkit-radial-gradient(center, 50% 50%, black, white);
- background-image: -moz-radial-gradient(center, 50% 50%, black, white);
+ background-image: radial-gradient(50% 50%, black, white);
}
.gradient2 {
- background-image: -webkit-repeating-radial-gradient(center, 20% 20%, black, white, black);
- background-image: -moz-repeating-radial-gradient(center, 20% 20%, black, white, black);
+ background-image: repeating-radial-gradient(20% 20%, black, white, black);
}
</style>

Powered by Google App Engine
This is Rietveld 408576698