From 269558380c37b912806be0e2d94b8ab85acd655c Mon Sep 17 00:00:00 2001 From: Eric Willigers Date: Thu, 9 Aug 2018 23:00:59 +1000 Subject: [PATCH] [css-grid] Exclude 'auto' from line name The custom-ident for line name cannot be 'auto'. Resolved in https://github.com/w3c/csswg-drafts/issues/2856#issuecomment-411476346 fixes #2856 --- css-grid-1/Overview.bs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/css-grid-1/Overview.bs b/css-grid-1/Overview.bs index b0a8eec8afb..89464326573 100644 --- a/css-grid-1/Overview.bs +++ b/css-grid-1/Overview.bs @@ -1583,9 +1583,9 @@ Named Grid Lines: the [<>*] syntax - A line name cannot be span, + A line name cannot be span or auto, i.e. the <> in the <> production - excludes the keyword span. + excludes the keywords span and auto.