mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:37:44 +00:00
LibWeb: Add border-radius to the CSS-parser
And resolve the shorthands.
This commit is contained in:
parent
d13526e1e7
commit
0c261a1c95
1 changed files with 25 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"background": {
|
"background": {},
|
||||||
},
|
|
||||||
"background-attachment": {
|
"background-attachment": {
|
||||||
"inherited": false,
|
"inherited": false,
|
||||||
"initial": "scroll"
|
"initial": "scroll"
|
||||||
|
@ -72,6 +71,14 @@
|
||||||
"initial": "currentColor",
|
"initial": "currentColor",
|
||||||
"inherited": false
|
"inherited": false
|
||||||
},
|
},
|
||||||
|
"border-bottom-left-radius": {
|
||||||
|
"initial": 0,
|
||||||
|
"inherited": false
|
||||||
|
},
|
||||||
|
"border-bottom-right-radius": {
|
||||||
|
"initial": 0,
|
||||||
|
"inherited": false
|
||||||
|
},
|
||||||
"border-bottom-style": {
|
"border-bottom-style": {
|
||||||
"initial": "none",
|
"initial": "none",
|
||||||
"inherited": false
|
"inherited": false
|
||||||
|
@ -104,6 +111,14 @@
|
||||||
"initial": "medium",
|
"initial": "medium",
|
||||||
"inherited": false
|
"inherited": false
|
||||||
},
|
},
|
||||||
|
"border-radius": {
|
||||||
|
"longhands": [
|
||||||
|
"border-top-left-radius",
|
||||||
|
"border-top-right-radius",
|
||||||
|
"border-bottom-left-radius",
|
||||||
|
"border-bottom-right-radius"
|
||||||
|
]
|
||||||
|
},
|
||||||
"border-right-color": {
|
"border-right-color": {
|
||||||
"initial": "currentColor",
|
"initial": "currentColor",
|
||||||
"inherited": false
|
"inherited": false
|
||||||
|
@ -132,6 +147,14 @@
|
||||||
"initial": "currentColor",
|
"initial": "currentColor",
|
||||||
"inherited": false
|
"inherited": false
|
||||||
},
|
},
|
||||||
|
"border-top-left-radius": {
|
||||||
|
"initial": 0,
|
||||||
|
"inherited": false
|
||||||
|
},
|
||||||
|
"border-top-right-radius": {
|
||||||
|
"initial": 0,
|
||||||
|
"inherited": false
|
||||||
|
},
|
||||||
"border-top-style": {
|
"border-top-style": {
|
||||||
"initial": "none",
|
"initial": "none",
|
||||||
"inherited": false
|
"inherited": false
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue