mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 08:27:46 +00:00
Meta/CodeGenerators+LibWeb: Implement parsing CSS easing functions
This only implements the parser bits, no functionality is implemented, and no properties are parsed because of this.
This commit is contained in:
parent
401544f68f
commit
dd073b2711
13 changed files with 471 additions and 5 deletions
23
Userland/Libraries/LibWeb/CSS/EasingFunctions.json
Normal file
23
Userland/Libraries/LibWeb/CSS/EasingFunctions.json
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"linear": {},
|
||||
"ease": {},
|
||||
"ease-in": {},
|
||||
"ease-out": {},
|
||||
"ease-in-out": {},
|
||||
"cubic-bezier": {
|
||||
"parameters": [
|
||||
"<number [0, 1]>",
|
||||
"<number>",
|
||||
"<number [0, 1]>",
|
||||
"<number>"
|
||||
]
|
||||
},
|
||||
"step-start": {},
|
||||
"step-end": {},
|
||||
"steps": {
|
||||
"parameters": [
|
||||
"<integer>",
|
||||
"<step-position>?"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue