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

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

Issue 2908053002: CSS Conic Gradients: do not support unitless 0 angles (Closed)
Patch Set: Created 3 years, 7 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 4118478becdb9df4e77cc560b21a3130f0abdc6f..0eae6168009505a55f9f08df74008b2399de0146 100644
--- a/third_party/WebKit/LayoutTests/fast/gradients/conic-gradient-parsing.html
+++ b/third_party/WebKit/LayoutTests/fast/gradients/conic-gradient-parsing.html
@@ -32,16 +32,21 @@
{ style: "conic-gradient(at left left, black, white)" , computed: "none" },
{ style: "conic-gradient(at top left black, white)" , computed: "none" },
{ style: "conic-gradient(black 0%, 10%, 10%, green .5turn, 50%, white)", computed: "none" },
+ { style: "conic-gradient(black 0, white)" , computed: "none" },
+ { style: "conic-gradient(black 10%, white 0)" , computed: "none" },
+ { style: "conic-gradient(from 0, black, white)" , computed: "none" },
{ style: "conic-gradient(from 0 black, white)" , computed: "none" },
+ { style: "conic-gradient(from 0deg black, white)" , computed: "none" },
{ style: "conic-gradient(from 0 at top left black, white)" , computed: "none" },
+ { style: "conic-gradient(from 0deg at top left black, white)" , computed: "none" },
{ style: "conic-gradient(from 0, at top left, black, white)" , computed: "none" },
+ { style: "conic-gradient(from 0deg, 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 calc(360deg / 10 + 50%)" , computed: "none" },
{ style: "conic-gradient(black, white)" , computed: "conic-gradient(black, white)" },
- { style: "conic-gradient(black 0, white)" , computed: "conic-gradient(black 0deg, white)" },
{ style: "conic-gradient(black 0%, white)" , computed: "conic-gradient(black 0%, white)" },
{ style: "conic-gradient(black 0deg, white)" , computed: "conic-gradient(black 0deg, white)" },
{ style: "conic-gradient(black 0grad, white)" , computed: "conic-gradient(black 0grad, white)" },
@@ -66,7 +71,7 @@
{ style: "conic-gradient(at center, black, white)" , computed: "conic-gradient(at center center, black, white)" },
{ style: "conic-gradient(at center center, black, white)", computed: "conic-gradient(at center center, black, white)" },
- { style: "conic-gradient(from 0, black, white)" , computed: "conic-gradient(from 0deg, black, white)" },
+ { style: "conic-gradient(from 0deg, black, white)" , computed: "conic-gradient(from 0deg, black, white)" },
{ style: "conic-gradient(from 10deg, black, white)" , computed: "conic-gradient(from 10deg, black, white)" },
{ style: "conic-gradient(from 10deg at center, black, white)", computed: "conic-gradient(from 10deg at center center, black, white)" },

Powered by Google App Engine
This is Rietveld 408576698