LibWeb: Alphabetize animation properties

I didn't notice this when they were added, whoops
This commit is contained in:
Sam Atkins 2023-06-09 14:07:59 +01:00 committed by Andreas Kling
parent 52d17afd7e
commit c4c35ce9b9
Notes: sideshowbarker 2024-07-17 10:08:28 +09:00

View File

@ -45,48 +45,12 @@
"animation-fill-mode"
]
},
"animation-name": {
"affects-layout": true,
"inherited": false,
"initial": "none",
"valid-types": [
"string",
"custom-ident"
],
"valid-identifiers": [
"none"
]
},
"animation-duration": {
"animation-delay": {
"affects-layout": true,
"inherited": false,
"initial": "0s",
"valid-types": [
"time [0,∞]"
]
},
"animation-timing-function": {
"affects-layout": true,
"inherited": false,
"initial": "ease",
"__comment": "FIXME: This is like...wrong.",
"valid-identifiers": [
"ease",
"linear",
"ease-in-out",
"ease-in",
"ease-out"
]
},
"animation-iteration-count": {
"affects-layout": true,
"inherited": false,
"initial": "1",
"valid-types": [
"number [0,∞]"
],
"valid-identifiers": [
"infinite"
"time [-∞,∞]"
]
},
"animation-direction": {
@ -100,21 +64,12 @@
"alternate-reverse"
]
},
"animation-play-state": {
"affects-layout": false,
"inherited": false,
"initial": "running",
"valid-identifiers": [
"running",
"paused"
]
},
"animation-delay": {
"animation-duration": {
"affects-layout": true,
"inherited": false,
"initial": "0s",
"valid-types": [
"time [-∞,∞]"
"time [0,∞]"
]
},
"animation-fill-mode": {
@ -128,6 +83,51 @@
"both"
]
},
"animation-iteration-count": {
"affects-layout": true,
"inherited": false,
"initial": "1",
"valid-types": [
"number [0,∞]"
],
"valid-identifiers": [
"infinite"
]
},
"animation-name": {
"affects-layout": true,
"inherited": false,
"initial": "none",
"valid-types": [
"string",
"custom-ident"
],
"valid-identifiers": [
"none"
]
},
"animation-play-state": {
"affects-layout": false,
"inherited": false,
"initial": "running",
"valid-identifiers": [
"running",
"paused"
]
},
"animation-timing-function": {
"affects-layout": true,
"inherited": false,
"initial": "ease",
"__comment": "FIXME: This is like...wrong.",
"valid-identifiers": [
"ease",
"linear",
"ease-in-out",
"ease-in",
"ease-out"
]
},
"appearance": {
"inherited": false,
"initial": "auto",