mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:37:35 +00:00
LibWeb: Quote all initial values in Properties.json
This is in preparation for parsing these into StyleValues automatically. Having them all be Strings makes the generation code simpler.
This commit is contained in:
parent
6d39f4342d
commit
543550d1df
1 changed files with 7 additions and 7 deletions
|
@ -72,11 +72,11 @@
|
|||
"inherited": false
|
||||
},
|
||||
"border-bottom-left-radius": {
|
||||
"initial": 0,
|
||||
"initial": "0",
|
||||
"inherited": false
|
||||
},
|
||||
"border-bottom-right-radius": {
|
||||
"initial": 0,
|
||||
"initial": "0",
|
||||
"inherited": false
|
||||
},
|
||||
"border-bottom-style": {
|
||||
|
@ -148,11 +148,11 @@
|
|||
"inherited": false
|
||||
},
|
||||
"border-top-left-radius": {
|
||||
"initial": 0,
|
||||
"initial": "0",
|
||||
"inherited": false
|
||||
},
|
||||
"border-top-right-radius": {
|
||||
"initial": 0,
|
||||
"initial": "0",
|
||||
"inherited": false
|
||||
},
|
||||
"border-top-style": {
|
||||
|
@ -230,11 +230,11 @@
|
|||
},
|
||||
"flex-grow": {
|
||||
"inherited": false,
|
||||
"initial": 0
|
||||
"initial": "0"
|
||||
},
|
||||
"flex-shrink": {
|
||||
"inherited": false,
|
||||
"initial": 1
|
||||
"initial": "1"
|
||||
},
|
||||
"flex-wrap": {
|
||||
"inherited": false,
|
||||
|
@ -354,7 +354,7 @@
|
|||
},
|
||||
"opacity": {
|
||||
"inherited": false,
|
||||
"initial": 1
|
||||
"initial": "1"
|
||||
},
|
||||
"overflow": {
|
||||
"longhands": [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue