1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

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

View file

@ -45,48 +45,12 @@
"animation-fill-mode" "animation-fill-mode"
] ]
}, },
"animation-name": { "animation-delay": {
"affects-layout": true,
"inherited": false,
"initial": "none",
"valid-types": [
"string",
"custom-ident"
],
"valid-identifiers": [
"none"
]
},
"animation-duration": {
"affects-layout": true, "affects-layout": true,
"inherited": false, "inherited": false,
"initial": "0s", "initial": "0s",
"valid-types": [ "valid-types": [
"time [0,∞]" "time [-∞,∞]"
]
},
"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"
] ]
}, },
"animation-direction": { "animation-direction": {
@ -100,21 +64,12 @@
"alternate-reverse" "alternate-reverse"
] ]
}, },
"animation-play-state": { "animation-duration": {
"affects-layout": false,
"inherited": false,
"initial": "running",
"valid-identifiers": [
"running",
"paused"
]
},
"animation-delay": {
"affects-layout": true, "affects-layout": true,
"inherited": false, "inherited": false,
"initial": "0s", "initial": "0s",
"valid-types": [ "valid-types": [
"time [-∞,∞]" "time [0,∞]"
] ]
}, },
"animation-fill-mode": { "animation-fill-mode": {
@ -128,6 +83,51 @@
"both" "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": { "appearance": {
"inherited": false, "inherited": false,
"initial": "auto", "initial": "auto",