Skip to content

Commit

Permalink
Add note about :playing and :paused in the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Dec 22, 2018
1 parent f09505a commit e002329
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/src/markdown/selectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ Selector | Example | Descript
`:link` | `#!css a:link` | All links are treated as unvisited, so this will match every `#!html <a>` element with an `href` attribute.
`:optional` | `#!css input:optional` | Select every `#!html <input>` 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 <input>` 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 <input>` 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.
Expand Down

0 comments on commit e002329

Please sign in to comment.