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

Unified Diff: third_party/WebKit/LayoutTests/fast/gradients/repeating-conic-gradient.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/repeating-conic-gradient.html
diff --git a/third_party/WebKit/LayoutTests/fast/gradients/repeating-conic-gradient.html b/third_party/WebKit/LayoutTests/fast/gradients/repeating-conic-gradient.html
index 165e57b03b73acba4d453ca42cfeb411d1c5e8fe..c0efa07a6c59eabd5ffb80b3edd8c100671e1560 100644
--- a/third_party/WebKit/LayoutTests/fast/gradients/repeating-conic-gradient.html
+++ b/third_party/WebKit/LayoutTests/fast/gradients/repeating-conic-gradient.html
@@ -12,7 +12,7 @@ div {
/* basic */
.conic1 {
- background: #0ac repeating-conic-gradient(hsla(0,0%,100%,.2) 0, hsla(0,0%,100%,.2) 15deg, hsla(0,0%,100%,0) 15deg, hsla(0,0%,100%,0) 30deg);
+ background: #0ac repeating-conic-gradient(hsla(0,0%,100%,.2) 0deg, hsla(0,0%,100%,.2) 15deg, hsla(0,0%,100%,0) 15deg, hsla(0,0%,100%,0) 30deg);
}
/* kitchen sink */
@@ -21,7 +21,7 @@ div {
radial-gradient(#000 3%, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0) 30%),
conic-gradient(red, orange, lime, aqua, blue, magenta, red),
radial-gradient(closest-side, #444 0%, #444 1%, #bbb 0%, #bbb 2%, #444 0%, #444 4%, #bbb 0%, #bbb 8%, #444 0%, #444 16%, #bbb 0%, #bbb 32%, #444 0%, #444 64%, #bbb 0%, #bbb 100%),
- repeating-conic-gradient(#bbb 0, #bbb 6.25%, #444 0, #444 12.5%);
+ repeating-conic-gradient(#bbb 0%, #bbb 6.25%, #444 0%, #444 12.5%);
background-blend-mode: normal, multiply, exclusion, normal;
}

Powered by Google App Engine
This is Rietveld 408576698