From 2664b8ae7f2de4dc533389274a426a4dd84048a9 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 24 Jan 2022 15:40:45 +0000 Subject: [PATCH] LibWeb: Add `none` as a valid identifier for `fill` and `stroke` --- Userland/Libraries/LibWeb/CSS/Properties.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/CSS/Properties.json b/Userland/Libraries/LibWeb/CSS/Properties.json index b513822c89..629f71faa2 100644 --- a/Userland/Libraries/LibWeb/CSS/Properties.json +++ b/Userland/Libraries/LibWeb/CSS/Properties.json @@ -590,6 +590,9 @@ "initial": "black", "valid-types": [ "color" + ], + "valid-identifiers": [ + "none" ] }, "flex": { @@ -1168,9 +1171,12 @@ }, "stroke": { "inherited": true, - "initial": "transparent", + "initial": "none", "valid-types": [ "color" + ], + "valid-identifiers": [ + "none" ] }, "stroke-width": {