diff --git a/css-cascade-6/Overview.bs b/css-cascade-6/Overview.bs index 454d365154c..15e5d972762 100644 --- a/css-cascade-6/Overview.bs +++ b/css-cascade-6/Overview.bs @@ -435,7 +435,7 @@ Syntax of ''@scope''
@scope [(<@@ -445,7 +445,10 @@ Syntax of ''@scope'' used to identify the [=scoping root=](s). * <>)]? [to (< >)]? { - < > + < > }
+ @scope (.foo) { + border: 1px solid black; + } ++ + is equivalent to: + +
+ @scope (.foo) { + :where(:scope) { + border: 1px solid black; + } + } ++