diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2020-02-06 03:55:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 03:55:01 -0500 |
commit | 5ef30c67334739c52fd3e82c21ff39e058a16fe5 (patch) | |
tree | f0f37658b09d663a1baf49184242342b89bfcd1b /components/script/dom | |
parent | 5f55cd5d71df9c555fbc24777168396ddd539f28 (diff) | |
parent | 4ea0a7061bb4b0e0c8dfdafe227c6ba54620f913 (diff) | |
download | servo-5ef30c67334739c52fd3e82c21ff39e058a16fe5.tar.gz servo-5ef30c67334739c52fd3e82c21ff39e058a16fe5.zip |
Auto merge of #25696 - pshaughn:4105comment, r=Manishearth
Remove outdated comment about #4105
<!-- Please describe your changes on the following line: -->
Just taking out a comment for an issue that had already been resolved.
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/node.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs index 0c5de3f67fb..b6d4389d441 100644 --- a/components/script/dom/node.rs +++ b/components/script/dom/node.rs @@ -165,12 +165,11 @@ bitflags! { #[doc = "Specifies whether this node needs style recalc on next reflow."] const HAS_DIRTY_DESCENDANTS = 1 << 1; - // TODO: find a better place to keep this (#4105) - // https://critic.hoppipolla.co.uk/showcomment?chain=8873 - // Perhaps using a Set in Document? + #[doc = "Specifies whether or not there is an authentic click in progress on \ this element."] const CLICK_IN_PROGRESS = 1 << 2; + #[doc = "Specifies whether this node is focusable and whether it is supposed \ to be reachable with using sequential focus navigation."] const SEQUENTIALLY_FOCUSABLE = 1 << 3; |