querySelectorAll method
The DocumentFragment.querySelectorAll()
method returns a
NodeList of elements within the DocumentFragment (using
depth-first pre-order traversal of the document's nodes) that matches the
specified
group of selectors.
If the selectors specified in parameter are invalid a DOMException with
a SYNTAX_ERR
value is raised.
Implementation
external NodeList querySelectorAll(String selectors);