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

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: greedy color repeat serializer + more tests 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/gradients/unprefixed-gradient-parsing.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..df54ea66bacee742491018e397d4952b246e57cf 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,16 @@
{ 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(blue 10%, blue 20%, white)" , computed: "conic-gradient(blue 10% 20%, white)" },
+ { style: "conic-gradient(blue 10%, blue 20%, blue 30%, white)" , computed: "conic-gradient(blue 10% 20%, blue 30%, white)" },
+ { style: "conic-gradient(blue 10%, blue 20%, blue 30%, blue 40%, white)" , computed: "conic-gradient(blue 10% 20%, blue 30% 40%, white)" },
+ { style: "conic-gradient(blue 10%, blue 20%, white 270deg, white 360deg)", computed: "conic-gradient(blue 10% 20%, white 270deg 360deg)" },
+ { style: "conic-gradient(blue 10%, blue 20% 30%, white)" , computed: "conic-gradient(blue 10% 20%, blue 30%, white)" },
+ { style: "conic-gradient(blue, blue, blue, white)" , computed: "conic-gradient(blue, blue, blue, white)" },
+
{ 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)" },
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/gradients/unprefixed-gradient-parsing.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698