Skip to content

Commit

Permalink
fix: correct scroll-timeline-axis and mask-repeat initial value (#622)
Browse files Browse the repository at this point in the history
1. The current scroll-animations spec says the initial value is 'block'.
https://w3c.github.io/csswg-drafts/scroll-animations/#scroll-timeline-axis.
`none` does not look like a legal value to me.
2. The `mask-repeat` initial value is `repeat`:
https://drafts.fxtf.org/css-masking/#the-mask-repeat
You can even check that on the MDN page that says the initial value is
`no-repeat` by setting `mask-repeat` to `initial`.
  • Loading branch information
wbamberg authored Oct 28, 2022
2 parents 428c681 + b36469e commit e48302d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions css/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -6624,7 +6624,7 @@
"groups": [
"CSS Masking"
],
"initial": "no-repeat",
"initial": "repeat",
"appliesto": "allElementsSVGContainerElements",
"computed": "consistsOfTwoDimensionKeywords",
"order": "perGrammar",
Expand Down Expand Up @@ -8627,7 +8627,7 @@
"groups": [
"CSS Animations"
],
"initial": "none",
"initial": "block",
"appliesto": "scrollContainers",
"computed": "asSpecified",
"order": "perGrammar",
Expand Down

0 comments on commit e48302d

Please sign in to comment.