(&self, parent_filter: &impl Fn(&Node) -> FilterResult)
| 597 | // does nothing. This stance is a departure from Chromium. |
| 598 | |
| 599 | pub fn is_clickable(&self, parent_filter: &impl Fn(&Node) -> FilterResult) -> bool { |
| 600 | self.supports_action(Action::Click, parent_filter) |
| 601 | } |
| 602 | |
| 603 | pub fn is_selectable(&self) -> bool { |
| 604 | // It's selectable if it has the attribute, whether it's true or false. |
no test coverage detected