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

Unified Diff: third_party/WebKit/LayoutTests/fast/backgrounds/background-fill-zero-area-crash.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/backgrounds/background-fill-zero-area-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/backgrounds/background-fill-zero-area-crash.html b/third_party/WebKit/LayoutTests/fast/backgrounds/background-fill-zero-area-crash.html
index f7bec67613a5ad1a308e66851aa4b27f8387f879..df37c7cade66d0c674d6fd80e54979e7313c81ee 100644
--- a/third_party/WebKit/LayoutTests/fast/backgrounds/background-fill-zero-area-crash.html
+++ b/third_party/WebKit/LayoutTests/fast/backgrounds/background-fill-zero-area-crash.html
@@ -7,7 +7,7 @@
</script>
<style>
#a {
- background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
+ background-image: linear-gradient(white, black);
-webkit-background-size: auto 50px;
-webkit-box-sizing: border-box;
border: 1px solid black;
@@ -15,7 +15,7 @@
height: 2px;
}
#b {
- background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
+ background-image: linear-gradient(white, black);
-webkit-background-size: 50px auto;
-webkit-box-sizing: border-box;
border: 1px solid black;
@@ -23,7 +23,7 @@
height: 100px;
}
#c {
- background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
+ background-image: linear-gradient(white, black);
-webkit-background-size: contain;
-webkit-box-sizing: border-box;
border: 1px solid black;
@@ -31,7 +31,7 @@
height: 100px;
}
#d {
- background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(black));
+ background-image: linear-gradient(white, black);
-webkit-background-size: contain;
-webkit-box-sizing: border-box;
border: 1px solid black;

Powered by Google App Engine
This is Rietveld 408576698