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

Unified Diff: third_party/WebKit/LayoutTests/fast/gradients/conic-gradient-parsing.html

Issue 2799793002: Implement color stop position syntax from CSS Image Values 4 (Closed)
Patch Set: hide behind RTEF 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/conic-gradient-parsing.html
diff --git a/third_party/WebKit/LayoutTests/fast/gradients/conic-gradient-parsing.html b/third_party/WebKit/LayoutTests/fast/gradients/conic-gradient-parsing.html
index df19cc6ce117dead20dede73cb7d6726acfcee31..9ac88331a051b3a6542146edb514615022dfa52a 100644
--- a/third_party/WebKit/LayoutTests/fast/gradients/conic-gradient-parsing.html
+++ b/third_party/WebKit/LayoutTests/fast/gradients/conic-gradient-parsing.html
@@ -36,6 +36,8 @@
{ style: "conic-gradient(from 0 at top left black, white)" , computed: "none" },
{ style: "conic-gradient(from 0, at top left, black, white)" , computed: "none" },
{ style: "conic-gradient(at top left from 0, black, white)" , computed: "none" },
+ { style: "conic-gradient(black 10% 20% 30%, white)" , computed: "none" },
+ { style: "conic-gradient(black, 30% 50%, white)" , computed: "none" },
{ style: "conic-gradient(black, white)" , computed: "conic-gradient(black, white)" },
{ style: "conic-gradient(black 0, white)" , computed: "conic-gradient(black 0deg, white)" },
@@ -48,6 +50,10 @@
{ style: "conic-gradient(black 10%, white 50%)" , computed: "conic-gradient(black 10%, white 50%)" },
{ style: "conic-gradient(black 10%, white 180deg)", computed: "conic-gradient(black 10%, white 180deg)" },
+ { style: "conic-gradient(black 10% 20%, white)" , computed: "conic-gradient(black 10% 20%, white)" },
+ { style: "conic-gradient(black, white 270deg 360deg)" , computed: "conic-gradient(black, white 270deg 360deg)" },
+ { style: "conic-gradient(black 10% 20%, white 270deg 360deg)", computed: "conic-gradient(black 10% 20%, white 270deg 360deg)" },
+
{ style: "conic-gradient(at top left, black, white)" , computed: "conic-gradient(at left top, black, white)" },
{ style: "conic-gradient(at bottom right, black, white)" , computed: "conic-gradient(at right bottom, black, white)" },
{ style: "conic-gradient(at center, black, white)" , computed: "conic-gradient(at center center, black, white)" },

Powered by Google App Engine
This is Rietveld 408576698