From c2ecc43b561f7b70beca4cb040c805044d880106 Mon Sep 17 00:00:00 2001 From: Guillaume Date: Sat, 31 Jan 2026 21:07:24 +0100 Subject: [PATCH] [selectors] Move column combinator to Selectors 5 --- selectors-4/Overview.bs | 3 +-- selectors-5/Overview.bs | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/selectors-4/Overview.bs b/selectors-4/Overview.bs index be4cbcec735e..86b1f34e1cc4 100644 --- a/selectors-4/Overview.bs +++ b/selectors-4/Overview.bs @@ -4456,7 +4456,7 @@ Grammar <simple-selector> = <> | <> - <combinator> = '>' | '+' | '~' | [ '|' '|' ] + <combinator> = '>' | '+' | '~' <wq-name> = <>? <> <ns-prefix> = [ <> | '*' ]? '|' @@ -4501,7 +4501,6 @@ Grammar * Between the components of an <>. * Between the <> or <>s in a <> - * Between the components of a <>. Whitespace is required between two <>s diff --git a/selectors-5/Overview.bs b/selectors-5/Overview.bs index 53cda1ae5f8a..8dad16be1afd 100644 --- a/selectors-5/Overview.bs +++ b/selectors-5/Overview.bs @@ -469,6 +469,22 @@ Reference combinators /ref/ +

+Grammar

+ + This module extends the CSS grammar of selectors with: + +
+	<combinator> = '>' | '+' | '~' | [ '|' '|' ] | [ / <> / ]
+	
+
+	
    +
  • + White space is forbidden: + * Between the components of a <>. +
+ +

Changes