From 2a3675f0c13d1f1dd2474778167a34f29cbdfc15 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Thu, 16 Sep 2021 20:59:45 +0100 Subject: [PATCH] LibWeb: Make "currentcolor" lowercase in Properties.json It's technically case-insensitive, but the spec always defines it as "currentcolor" so it feels wrong to capitalise it differently there. --- Userland/Libraries/LibWeb/CSS/Properties.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Userland/Libraries/LibWeb/CSS/Properties.json b/Userland/Libraries/LibWeb/CSS/Properties.json index df667629df..cca09ead18 100644 --- a/Userland/Libraries/LibWeb/CSS/Properties.json +++ b/Userland/Libraries/LibWeb/CSS/Properties.json @@ -78,7 +78,7 @@ ] }, "border-bottom-color": { - "initial": "currentColor", + "initial": "currentcolor", "inherited": false, "quirks": [ "hashless-hex-color" @@ -119,7 +119,7 @@ "initial": "separate" }, "border-left-color": { - "initial": "currentColor", + "initial": "currentcolor", "inherited": false, "quirks": [ "hashless-hex-color" @@ -145,7 +145,7 @@ ] }, "border-right-color": { - "initial": "currentColor", + "initial": "currentcolor", "inherited": false, "quirks": [ "hashless-hex-color" @@ -178,7 +178,7 @@ ] }, "border-top-color": { - "initial": "currentColor", + "initial": "currentcolor", "inherited": false, "quirks": [ "hashless-hex-color"