pub trait WebHitTestResultExt: 'static {
    fn node(&self) -> Option<DOMNode>;
    fn get_property_node(&self) -> Option<DOMNode>;
}
Available on crate feature v2_8 only.
Expand description

Trait containing all WebHitTestResult methods.

Implementors

WebHitTestResult

Required Methods

Get the DOMNode in the coordinates of the Hit Test.

Returns

a DOMNode

The DOMNode

Implementors