From 53d852497a2a741ac6b658f771b56d2751c990fe Mon Sep 17 00:00:00 2001 From: Dave Letorey Date: Mon, 25 Mar 2024 15:49:36 +0000 Subject: [PATCH 1/2] updated the appliesTo for align-content --- css/properties.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/properties.json b/css/properties.json index 626bdaa2..2434ca11 100644 --- a/css/properties.json +++ b/css/properties.json @@ -1713,7 +1713,7 @@ "CSS Box Alignment" ], "initial": "normal", - "appliesto": "multilineFlexContainers", + "appliesto": "blockContainersFlexContainersGridContainers", "computed": "asSpecified", "order": "uniqueOrder", "status": "standard", From 3210f233a2c4ebd921ebf217853030c262cad6df Mon Sep 17 00:00:00 2001 From: Dave Letorey Date: Tue, 2 Apr 2024 18:08:32 +0100 Subject: [PATCH 2/2] added a new applies to enum and used it for the align-content property --- css/properties.json | 2 +- css/properties.schema.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/css/properties.json b/css/properties.json index 94f912f9..ee2f00aa 100644 --- a/css/properties.json +++ b/css/properties.json @@ -1713,7 +1713,7 @@ "CSS Box Alignment" ], "initial": "normal", - "appliesto": "blockContainersFlexContainersGridContainers", + "appliesto": "blockContainersMultiColumnContainersFlexContainersGridContainers", "computed": "asSpecified", "order": "uniqueOrder", "status": "standard", diff --git a/css/properties.schema.json b/css/properties.schema.json index cebf15ff..b7880d60 100644 --- a/css/properties.schema.json +++ b/css/properties.schema.json @@ -200,6 +200,7 @@ "blockContainersExceptMultiColumnContainers", "blockContainersExceptTableWrappers", "blockContainersFlexContainersGridContainers", + "blockContainersMultiColumnContainersFlexContainersGridContainers", "blockElementsInNormalFlow", "blockLevelElements", "blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems",