-
Bug
-
Resolution: Done
-
Major
-
None
-
None
A DocumentFragment does not have to have a root element, nor does it have to be well formed.
Both of these are valid fragments:
1.
DocumentFragment {
<child>
<nested/>
</child>
<child>
<nested/>
</child>
}
2.
DocumentFragment {
This is a text node
<foo/>
}