mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 12:35:14 +00:00
LibWeb: Add transition properties to Properties.json
This commit is contained in:
parent
5dce559ed8
commit
1e6ad075f3
Notes:
sideshowbarker
2024-07-17 18:46:30 +09:00
Author: https://github.com/mattco98 Commit: https://github.com/SerenityOS/serenity/commit/1e6ad075f3 Pull-request: https://github.com/SerenityOS/serenity/pull/23762
2 changed files with 47 additions and 0 deletions
|
@ -166,6 +166,9 @@ transform: none
|
|||
transform-box: view-box
|
||||
transform-origin: 50% 50%
|
||||
transition-delay: 0s
|
||||
transition-duration: 0s
|
||||
transition-property: all
|
||||
transition-timing-function: ease
|
||||
user-select: auto
|
||||
vertical-align: baseline
|
||||
visibility: visible
|
||||
|
|
|
@ -2348,7 +2348,19 @@
|
|||
],
|
||||
"percentages-resolve-to": "length"
|
||||
},
|
||||
"transition": {
|
||||
"affects-layout": true,
|
||||
"inherited": false,
|
||||
"initial": "none",
|
||||
"longhands": [
|
||||
"transition-property",
|
||||
"transition-duration",
|
||||
"transition-timing-function",
|
||||
"transition-delay"
|
||||
]
|
||||
},
|
||||
"transition-delay": {
|
||||
"affects-layout": true,
|
||||
"animation-type": "none",
|
||||
"inherited": false,
|
||||
"initial": "0s",
|
||||
|
@ -2356,6 +2368,38 @@
|
|||
"time"
|
||||
]
|
||||
},
|
||||
"transition-duration": {
|
||||
"affects-layout": true,
|
||||
"animation-type": "none",
|
||||
"inherited": false,
|
||||
"initial": "0s",
|
||||
"valid-types": [
|
||||
"time"
|
||||
]
|
||||
},
|
||||
"transition-property": {
|
||||
"affects-layout": true,
|
||||
"animation-type": "none",
|
||||
"inherited": false,
|
||||
"initial": "all",
|
||||
"valid-types": [
|
||||
"string",
|
||||
"custom-ident"
|
||||
],
|
||||
"valid-identifiers": [
|
||||
"all",
|
||||
"none"
|
||||
]
|
||||
},
|
||||
"transition-timing-function": {
|
||||
"affects-layout": true,
|
||||
"animation-type": "none",
|
||||
"inherited": false,
|
||||
"initial": "ease",
|
||||
"valid-types": [
|
||||
"easing-function"
|
||||
]
|
||||
},
|
||||
"user-select": {
|
||||
"affects-layout": false,
|
||||
"animation-type": "discrete",
|
||||
|
|
Loading…
Add table
Reference in a new issue