mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:27:35 +00:00
LibWeb: Add none
as a valid identifier for fill
and stroke
This commit is contained in:
parent
2cea55189d
commit
2664b8ae7f
1 changed files with 7 additions and 1 deletions
|
@ -590,6 +590,9 @@
|
||||||
"initial": "black",
|
"initial": "black",
|
||||||
"valid-types": [
|
"valid-types": [
|
||||||
"color"
|
"color"
|
||||||
|
],
|
||||||
|
"valid-identifiers": [
|
||||||
|
"none"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"flex": {
|
"flex": {
|
||||||
|
@ -1168,9 +1171,12 @@
|
||||||
},
|
},
|
||||||
"stroke": {
|
"stroke": {
|
||||||
"inherited": true,
|
"inherited": true,
|
||||||
"initial": "transparent",
|
"initial": "none",
|
||||||
"valid-types": [
|
"valid-types": [
|
||||||
"color"
|
"color"
|
||||||
|
],
|
||||||
|
"valid-identifiers": [
|
||||||
|
"none"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"stroke-width": {
|
"stroke-width": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue