From e00232969cc99a5e78b24ee540a34e810d209cf2 Mon Sep 17 00:00:00 2001 From: facelessuser Date: Sat, 22 Dec 2018 13:33:16 -0700 Subject: [PATCH] Add note about :playing and :paused in the documentation --- docs/src/markdown/selectors.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/markdown/selectors.md b/docs/src/markdown/selectors.md index 17c552db..e40e4fef 100644 --- a/docs/src/markdown/selectors.md +++ b/docs/src/markdown/selectors.md @@ -85,7 +85,9 @@ Selector | Example | Descript `:link` | `#!css a:link` | All links are treated as unvisited, so this will match every `#!html ` element with an `href` attribute. `:optional` | `#!css input:optional` | Select every `#!html ` element without a `required` attribute. `:past` | `#!css p:past` | As the document is not rendered, this will never match. +`:paused` | `#!css :paused` | Pausing is not applicable in the Soup Sieve environment, so this will match nothing. `:placeholder-shown` | `#!css input:placeholder-shown` | Selects every `#!html ` element that is showing a placeholder via the `placeholder` attribute. +`:playing` | `#!css :playing` | Playing is not applicable in the Soup Sieve environment, so this will match nothing. `:required` | `#!css input:required` | Select every `#!html ` element with a `required` attribute. `:target` | `#!css #news:target` | Elements cannot be targeted, so this will never match. `:user-invalid` | `#!css input:user-invalid` | User interaction is not applicable, so this will never match.