Skip to content

Commit 359f09e

Browse files
authored
Add single_color_stop to repeating-{conic,linear,radial}-gradient() (#26508)
Add single_color_stop to `repeating-conic/linear/radial-gradient()` In the original PR #26062, the following three gradient functions were missed: - repeating-conic-gradient() - repeating-linear-gradient() - repeating-radial-gradient() ```css .test { background: repeating-conic-gradient(red); } ```
1 parent da43e51 commit 359f09e

File tree

1 file changed

+105
-0
lines changed

1 file changed

+105
-0
lines changed

css/types/gradient.json

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,6 +1176,41 @@
11761176
"deprecated": false
11771177
}
11781178
}
1179+
},
1180+
"single_color_stop": {
1181+
"__compat": {
1182+
"description": "Single color stop and 0-1 positions",
1183+
"spec_url": "https://drafts.csswg.org/css-images-4/#color-stop-syntax",
1184+
"support": {
1185+
"chrome": {
1186+
"version_added": "135"
1187+
},
1188+
"chrome_android": "mirror",
1189+
"edge": "mirror",
1190+
"firefox": {
1191+
"version_added": "136"
1192+
},
1193+
"firefox_android": "mirror",
1194+
"ie": {
1195+
"version_added": false
1196+
},
1197+
"oculus": "mirror",
1198+
"opera": "mirror",
1199+
"opera_android": "mirror",
1200+
"safari": {
1201+
"version_added": "18.4"
1202+
},
1203+
"safari_ios": "mirror",
1204+
"samsunginternet_android": "mirror",
1205+
"webview_android": "mirror",
1206+
"webview_ios": "mirror"
1207+
},
1208+
"status": {
1209+
"experimental": false,
1210+
"standard_track": true,
1211+
"deprecated": false
1212+
}
1213+
}
11791214
}
11801215
},
11811216
"repeating-linear-gradient": {
@@ -1436,6 +1471,41 @@
14361471
}
14371472
}
14381473
},
1474+
"single_color_stop": {
1475+
"__compat": {
1476+
"description": "Single color stop and 0-1 positions",
1477+
"spec_url": "https://drafts.csswg.org/css-images-4/#color-stop-syntax",
1478+
"support": {
1479+
"chrome": {
1480+
"version_added": "135"
1481+
},
1482+
"chrome_android": "mirror",
1483+
"edge": "mirror",
1484+
"firefox": {
1485+
"version_added": "136"
1486+
},
1487+
"firefox_android": "mirror",
1488+
"ie": {
1489+
"version_added": false
1490+
},
1491+
"oculus": "mirror",
1492+
"opera": "mirror",
1493+
"opera_android": "mirror",
1494+
"safari": {
1495+
"version_added": "18.4"
1496+
},
1497+
"safari_ios": "mirror",
1498+
"samsunginternet_android": "mirror",
1499+
"webview_android": "mirror",
1500+
"webview_ios": "mirror"
1501+
},
1502+
"status": {
1503+
"experimental": false,
1504+
"standard_track": true,
1505+
"deprecated": false
1506+
}
1507+
}
1508+
},
14391509
"to": {
14401510
"__compat": {
14411511
"description": "`to` keyword",
@@ -1857,6 +1927,41 @@
18571927
"deprecated": false
18581928
}
18591929
}
1930+
},
1931+
"single_color_stop": {
1932+
"__compat": {
1933+
"description": "Single color stop and 0-1 positions",
1934+
"spec_url": "https://drafts.csswg.org/css-images-4/#color-stop-syntax",
1935+
"support": {
1936+
"chrome": {
1937+
"version_added": "135"
1938+
},
1939+
"chrome_android": "mirror",
1940+
"edge": "mirror",
1941+
"firefox": {
1942+
"version_added": "136"
1943+
},
1944+
"firefox_android": "mirror",
1945+
"ie": {
1946+
"version_added": false
1947+
},
1948+
"oculus": "mirror",
1949+
"opera": "mirror",
1950+
"opera_android": "mirror",
1951+
"safari": {
1952+
"version_added": "18.4"
1953+
},
1954+
"safari_ios": "mirror",
1955+
"samsunginternet_android": "mirror",
1956+
"webview_android": "mirror",
1957+
"webview_ios": "mirror"
1958+
},
1959+
"status": {
1960+
"experimental": false,
1961+
"standard_track": true,
1962+
"deprecated": false
1963+
}
1964+
}
18601965
}
18611966
}
18621967
}

0 commit comments

Comments
 (0)