diff --git a/css-scoping-1/Overview.bs b/css-scoping-1/Overview.bs index 30f21f0b46f..c6b13adac1c 100644 --- a/css-scoping-1/Overview.bs +++ b/css-scoping-1/Overview.bs @@ -396,57 +396,6 @@ Selecting Slot-Assigned Content: the ''::slotted()'' pseudo-element The only way to style assigned text nodes is by styling the slot and relying on inheritance. - - -
- <x-foo> - <"shadow tree"> - <div> - <span id="not-top">...</span> - </div> - <span id="top">...</span> - <x-bar> - <"shadow tree"> - <span id="nested">...</span> - </> - </x-bar> - </> - </x-foo> -- - For a stylesheet in the outer document, - the selector ''x-foo >>> span'' - selects all three of
<span> elements:
- ''#top'', ''#not-top'', and ''#nested''.
-