diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2021-09-16 20:59:45 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-17 23:06:45 +0200 |
commit | 2a3675f0c13d1f1dd2474778167a34f29cbdfc15 (patch) | |
tree | 5cb47fc15973381d79c02d149d7b987b118c9f34 | |
parent | 854d6e5822e1b0e93ccc8c64ca49019b266d36ee (diff) | |
download | serenity-2a3675f0c13d1f1dd2474778167a34f29cbdfc15.zip |
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.
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/Properties.json | 8 |
1 files 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" |