1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
use selectors::Element;
use selectors::attr::{AttrSelectorOperation, NamespaceConstraint};
use html5ever::{Namespace, LocalName};
use selectors::matching;
use super::ElementRef;
use selector::{Simple, NonTSPseudoClass, PseudoElement};
impl<'a> Element for ElementRef<'a> {
type Impl = Simple;
fn parent_element(&self) -> Option<Self> {
self.parent().and_then(ElementRef::wrap)
}
fn first_child_element(&self) -> Option<Self> {
self.children()
.find(|child| child.value().is_element())
.map(ElementRef::new)
}
fn last_child_element(&self) -> Option<Self> {
self.children()
.rev()
.find(|child| child.value().is_element())
.map(ElementRef::new)
}
fn prev_sibling_element(&self) -> Option<Self> {
self.prev_siblings()
.find(|sibling| sibling.value().is_element())
.map(ElementRef::new)
}
fn next_sibling_element(&self) -> Option<Self> {
self.next_siblings()
.find(|sibling| sibling.value().is_element())
.map(ElementRef::new)
}
fn is_html_element_in_html_document(&self) -> bool {
self.value().name.ns == ns!(html)
}
fn get_local_name(&self) -> &LocalName {
&self.value().name.local
}
fn get_namespace(&self) -> &Namespace {
&self.value().name.ns
}
fn match_non_ts_pseudo_class<F>(
&self,
_pc: &NonTSPseudoClass,
_context: &mut matching::MatchingContext,
_flags_setter: &mut F,
) -> bool {
false
}
fn get_id(&self) -> Option<LocalName> {
self.value().id.clone()
}
fn has_class(&self, name: &LocalName) -> bool {
self.value().classes.contains(name)
}
fn is_empty(&self) -> bool {
!self.children()
.any(|child| child.value().is_element() || child.value().is_text())
}
fn is_root(&self) -> bool {
self.parent()
.map_or(false, |parent| parent.value().is_document())
}
fn attr_matches(
&self,
ns: &NamespaceConstraint<&Namespace>,
local_name: &LocalName,
operation: &AttrSelectorOperation<&String>,
) -> bool {
self.value().attrs.iter().any(|(key, value)| {
!matches!(*ns, NamespaceConstraint::Specific(url) if *url != key.ns) &&
*local_name == key.local && operation.eval_str(value)
})
}
fn match_pseudo_element(
&self,
_pe: &PseudoElement,
_context: &mut matching::MatchingContext,
) -> bool {
false
}
}