From b569ab72e8e85b1909e6a532d3a5ef8e81206986 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Thu, 7 Dec 2023 21:07:21 +0000 Subject: [PATCH] LibWeb: Correct grid-template-areas definition The spec syntax is `none | +` and `none` is the default. --- Userland/Libraries/LibWeb/CSS/Properties.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibWeb/CSS/Properties.json b/Userland/Libraries/LibWeb/CSS/Properties.json index 1f24d8937c..6c5c98eb0f 100644 --- a/Userland/Libraries/LibWeb/CSS/Properties.json +++ b/Userland/Libraries/LibWeb/CSS/Properties.json @@ -1127,9 +1127,9 @@ }, "grid-template-areas": { "inherited": false, - "initial": "auto", + "initial": "none", "valid-identifiers": [ - "auto" + "none" ], "valid-types": [ "string"