[1]
The :-manakai-contains(s)
pseudo-class has the same semantics and syntax as of
:contains(s)
pseudo-class
<http://www.w3.org/TR/2001/CR-css3-selectors-20011113/#content-selectors>.
[2]
The :-manakai-current
pseudo-class represents an element that is currently
selected for the purpose of querying (known as
current element).
Unless explicitly defined by a specification, current element is null and therefore no element matches with this pseudo-class.
For selectors specified in the first argument of
querySelector
or
querySelectorAll
method
of ElementSelector
interface,
the current element is the element on which
the method is invoked.
Element
nodes: first, second, and fourthp
elements, but thirdp
element in the childsection
element will not returned. Note that$doc->query_selector (':-manakai-current > p')
will return no node, since current element is not defined for theDocumentSelector
interface.