From aee17ed05c1788abcfbf4b57a8f84805e8cc91ba Mon Sep 17 00:00:00 2001 From: Ziran Sun Date: Mon, 14 Nov 2022 15:36:47 +0000 Subject: [PATCH] style: container-queries: Stop restrict none/auto/normal from Differential Revision: https://phabricator.services.mozilla.com/D161764 --- components/style/values/specified/box.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/values/specified/box.rs b/components/style/values/specified/box.rs index f62d3c15101..87e080653ce 100644 --- a/components/style/values/specified/box.rs +++ b/components/style/values/specified/box.rs @@ -1545,7 +1545,7 @@ impl ContainerName { return Ok(Self::none()); } const DISALLOWED_CONTAINER_NAMES: &'static [&'static str] = - &["none", "not", "or", "and", "auto", "normal"]; + &["none", "not", "or", "and"]; idents.push(CustomIdent::from_ident( location, first,