mirror of
https://github.com/servo/servo.git
synced 2025-08-13 01:15:34 +01:00
style: Implement :defined pseudo-class for custom elements.
Bug: 1331334 Reviewed-by: emilio
This commit is contained in:
parent
06fa3406de
commit
b68e4c2352
4 changed files with 7 additions and 1 deletions
|
@ -71,7 +71,8 @@ bitflags! {
|
|||
const IN_OPTIONAL_STATE = 1 << 22;
|
||||
/// <https://html.spec.whatwg.org/multipage/#selector-read-write>
|
||||
const IN_READ_WRITE_STATE = 1 << 22;
|
||||
/// There is a free bit at 23.
|
||||
/// <https://html.spec.whatwg.org/multipage/semantics-other.html#selector-defined>
|
||||
const IN_DEFINED_STATE = 1 << 23;
|
||||
/// <https://html.spec.whatwg.org/multipage/#selector-visited>
|
||||
const IN_VISITED_STATE = 1 << 24;
|
||||
/// <https://html.spec.whatwg.org/multipage/#selector-link>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue