1
Fork 0
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:
Sam Atkins 2022-01-24 15:40:45 +00:00 committed by Andreas Kling
parent 2cea55189d
commit 2664b8ae7f

View file

@ -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": {