Skip to content

Commit 17746f9

Browse files
eslintbotfasttime
andauthored
fix: update baseline data (#347)
Co-authored-by: fasttime <6367844+fasttime@users.noreply.github.com>
1 parent d672b93 commit 17746f9

2 files changed

Lines changed: 49 additions & 8 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
"rollup-plugin-delete": "^3.0.1",
107107
"tailwind-csstree": "^0.1.0",
108108
"typescript": "^5.9.2",
109-
"web-features": "^3.11.1",
109+
"web-features": "^3.12.0",
110110
"yorkie": "^2.0.0"
111111
},
112112
"engines": {

src/data/baseline-data.js

Lines changed: 48 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ export const properties = new Map([
294294
["mask-repeat", "5:2023"],
295295
["mask-size", "5:2023"],
296296
["math-depth", "0:"],
297-
["math-shift", "0:"],
297+
["math-shift", "5:2025"],
298298
["math-style", "5:2023"],
299299
["max-height", "10:2015"],
300300
["max-width", "10:2015"],
@@ -405,7 +405,8 @@ export const properties = new Map([
405405
["scroll-snap-align", "10:2020"],
406406
["scroll-snap-stop", "10:2022"],
407407
["scroll-snap-type", "10:2022"],
408-
["scrollbar-color", "0:"],
408+
["scroll-target-group", "0:"],
409+
["scrollbar-color", "5:2025"],
409410
["scrollbar-gutter", "5:2024"],
410411
["scrollbar-width", "5:2024"],
411412
["shape-image-threshold", "10:2020"],
@@ -757,6 +758,9 @@ export const selectors = new Map([
757758
["root", "10:2015"],
758759
["scope", "10:2020"],
759760
["scroll-button", "0:"],
761+
["target-after", "0:"],
762+
["target-before", "0:"],
763+
["target-current", "0:"],
760764
["scroll-marker", "0:"],
761765
["scroll-marker-group", "0:"],
762766
["selection", "0:"],
@@ -1081,7 +1085,13 @@ export const propertyValues = new Map([
10811085
],
10821086
["place-items", new Map([["anchor-center", "0:"]])],
10831087
["place-self", new Map([["anchor-center", "0:"]])],
1084-
["position-anchor", new Map([["auto", "0:"]])],
1088+
[
1089+
"position-anchor",
1090+
new Map([
1091+
["auto", "0:"],
1092+
["none", "0:"],
1093+
]),
1094+
],
10851095
[
10861096
"position-area",
10871097
new Map([
@@ -1112,6 +1122,8 @@ export const propertyValues = new Map([
11121122
["span-end", "0:"],
11131123
["span-inline-end", "0:"],
11141124
["span-inline-start", "0:"],
1125+
["span-left", "0:"],
1126+
["span-right", "0:"],
11151127
["span-self-block-end", "0:"],
11161128
["span-self-block-start", "0:"],
11171129
["span-self-end", "0:"],
@@ -1144,6 +1156,14 @@ export const propertyValues = new Map([
11441156
["flip-start", "0:"],
11451157
["none", "0:"],
11461158
["position-area", "0:"],
1159+
["self-x-end", "0:"],
1160+
["self-x-start", "0:"],
1161+
["self-y-end", "0:"],
1162+
["self-y-start", "0:"],
1163+
["span-self-x-end", "0:"],
1164+
["span-self-x-start", "0:"],
1165+
["span-self-y-end", "0:"],
1166+
["span-self-y-start", "0:"],
11471167
]),
11481168
],
11491169
[
@@ -1156,6 +1176,19 @@ export const propertyValues = new Map([
11561176
["normal", "0:"],
11571177
]),
11581178
],
1179+
[
1180+
"position-try",
1181+
new Map([
1182+
["self-x-end", "0:"],
1183+
["self-x-start", "0:"],
1184+
["self-y-end", "0:"],
1185+
["self-y-start", "0:"],
1186+
["span-self-x-end", "0:"],
1187+
["span-self-x-start", "0:"],
1188+
["span-self-y-end", "0:"],
1189+
["span-self-y-start", "0:"],
1190+
]),
1191+
],
11591192
[
11601193
"position-visibility",
11611194
new Map([
@@ -1739,16 +1772,17 @@ export const propertyValues = new Map([
17391772
["contain-intrinsic-inline-size", new Map([["none", "5:2023"]])],
17401773
["contain-intrinsic-size", new Map([["none", "5:2023"]])],
17411774
["contain-intrinsic-width", new Map([["none", "5:2023"]])],
1742-
["container-name", new Map([["none", "10:2023"]])],
17431775
[
17441776
"container-type",
17451777
new Map([
1778+
["anchored", "0:"],
17461779
["inline-size", "10:2023"],
17471780
["normal", "10:2023"],
17481781
["size", "10:2023"],
17491782
["scroll-state", "0:"],
17501783
]),
17511784
],
1785+
["container-name", new Map([["none", "10:2023"]])],
17521786
[
17531787
"content",
17541788
new Map([
@@ -2867,7 +2901,14 @@ export const propertyValues = new Map([
28672901
["y", "10:2022"],
28682902
]),
28692903
],
2870-
["scrollbar-color", new Map([["auto", "0:"]])],
2904+
[
2905+
"scroll-target-group",
2906+
new Map([
2907+
["auto", "0:"],
2908+
["none", "0:"],
2909+
]),
2910+
],
2911+
["scrollbar-color", new Map([["auto", "5:2025"]])],
28712912
[
28722913
"scrollbar-gutter",
28732914
new Map([
@@ -3067,11 +3108,11 @@ export const propertyValues = new Map([
30673108
[
30683109
"text-decoration-line",
30693110
new Map([
3070-
["grammar-error", "0:"],
3111+
["grammar-error", "5:2025"],
30713112
["line-through", "10:2020"],
30723113
["none", "10:2020"],
30733114
["overline", "10:2020"],
3074-
["spelling-error", "0:"],
3115+
["spelling-error", "5:2025"],
30753116
["underline", "10:2020"],
30763117
["blink", "0:"],
30773118
]),

0 commit comments

Comments
 (0)