mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-22 13:27:46 +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:
committed by
Andreas Kling
parent
6d39f4342d
commit
543550d1df
@@ -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": [
|
||||
|
||||
Reference in New Issue
Block a user