diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2015-08-24 11:45:41 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2015-08-24 11:45:41 +0200 |
commit | daedee844f9adc535b89aeef22286933c8fab00e (patch) | |
tree | b57e9b780ab2a0abdaaf52a7232c1e72c633658e /components/script/dom/node.rs | |
parent | 6567c269cfcf0be14c3aa7e6694f4080cdfffc99 (diff) | |
download | servo-daedee844f9adc535b89aeef22286933c8fab00e.tar.gz servo-daedee844f9adc535b89aeef22286933c8fab00e.zip |
Add spec link for the IN_ACTIVE_STATE flag.
Diffstat (limited to 'components/script/dom/node.rs')
-rw-r--r-- | components/script/dom/node.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs index fc332186913..aceaf2ee130 100644 --- a/components/script/dom/node.rs +++ b/components/script/dom/node.rs @@ -170,7 +170,9 @@ bitflags! { #[doc = "Specifies whether this node is focusable and whether it is supposed \ to be reachable with using sequential focus navigation."] const SEQUENTIALLY_FOCUSABLE = 0x400, - #[doc = "Specifies whether this node is active."] + #[doc = "Specifies whether this node is [being activated]\ + (https://html.spec.whatwg.org/multipage/#selector-active). \ + FIXME(#7333): set/unset this when appropriate"] const IN_ACTIVE_STATE = 0x800, } } |