DocumentFragment : Node
A **DocumentFragment** is a container for %%Node|**Node**%%s. When adding a **DocumentFragment**
to a **Node**, all the children of the **DocumentFragment** become direct children
of the **Node**. Use %%Document#createDocumentFragment|**document.createDocumentFragment()**%%
to create a **DocumentFragment**.
Spec:
https://dom.spec.whatwg.org/#interface-documentfragment
----
prototype.querySelector(cssSelector : String) : Element
Returns the first %%/Element|**Element**%% that matches the CSS selector.
foo1
baz1
baz2
Spec:
http://www.w3.org/TR/selectors-api/#queryselector
----
prototype.querySelectorAll(cssSelector : String) : NodeList
Returns a **NodeList** containing the %%/Element|**Element**%%s in the
document that match the CSS selector.
foo1
baz1
baz2
Spec:
http://www.w3.org/TR/selectors-api/#queryselectorall