createContextualFragment method
The Range.createContextualFragment()
method returns a
DocumentFragment by invoking the HTML fragment parsing algorithm or the
XML fragment parsing algorithm with the start of the range (the parent
of the
selected node) as the context node. The HTML fragment parsing algorithm is
used if the
range belongs to a Document
whose HTMLness bit is set. In the HTML case,
if
the context node would be html
, for historical reasons the fragment
parsing
algorithm is invoked with body
as the context instead.
Implementation
external DocumentFragment createContextualFragment(JSAny string);