mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 09:09:43 +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: 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-box: view-box
|
||||||
transform-origin: 50% 50%
|
transform-origin: 50% 50%
|
||||||
transition-delay: 0s
|
transition-delay: 0s
|
||||||
|
transition-duration: 0s
|
||||||
|
transition-property: all
|
||||||
|
transition-timing-function: ease
|
||||||
user-select: auto
|
user-select: auto
|
||||||
vertical-align: baseline
|
vertical-align: baseline
|
||||||
visibility: visible
|
visibility: visible
|
||||||
|
|
|
@ -2348,7 +2348,19 @@
|
||||||
],
|
],
|
||||||
"percentages-resolve-to": "length"
|
"percentages-resolve-to": "length"
|
||||||
},
|
},
|
||||||
|
"transition": {
|
||||||
|
"affects-layout": true,
|
||||||
|
"inherited": false,
|
||||||
|
"initial": "none",
|
||||||
|
"longhands": [
|
||||||
|
"transition-property",
|
||||||
|
"transition-duration",
|
||||||
|
"transition-timing-function",
|
||||||
|
"transition-delay"
|
||||||
|
]
|
||||||
|
},
|
||||||
"transition-delay": {
|
"transition-delay": {
|
||||||
|
"affects-layout": true,
|
||||||
"animation-type": "none",
|
"animation-type": "none",
|
||||||
"inherited": false,
|
"inherited": false,
|
||||||
"initial": "0s",
|
"initial": "0s",
|
||||||
|
@ -2356,6 +2368,38 @@
|
||||||
"time"
|
"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": {
|
"user-select": {
|
||||||
"affects-layout": false,
|
"affects-layout": false,
|
||||||
"animation-type": "discrete",
|
"animation-type": "discrete",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue