You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<dd>Returns a fragment of HTML or XML that represents the element's contents.
268
-
269
-
<p>Can be set, to replace the contents of the element with nodes parsed from the given string.
270
-
271
-
<p>In the case of an <a>XML document</a>, throws a "<code><a>InvalidStateError</a></code>"
272
-
<code><a>DOMException</a></code> if the element cannot be serialized to XML,
273
-
or a "<code><a>SyntaxError</a></code>" <code><a>DOMException</a></code> if the given string is
274
-
not well-formed.
275
-
</dl>
276
-
277
-
<p>On getting, return the result of invoking the <a>fragment serializing algorithm</a> on the
278
-
<a>context object</a> providing <code>true</code> for the <a><var>require well-formed</var></a> flag (this
279
-
might throw an exception instead of returning a string).
280
-
281
-
<p>On setting, these steps must be run:
282
-
283
-
<ol>
284
-
<li>Let <var>context element</var> be the <a>context object</a>'s
285
-
<adata-cite="DOM#concept-documentfragment-host">host</a> if the <a>context object</a> is a
286
-
<a>ShadowRoot</a> object, or the <a>context object</a> otherwise.
287
-
288
-
<li>Let <var>fragment</var> be the result of invoking the <a>fragment parsing algorithm</a> with
289
-
the new value as <var>markup</var>, and with <var>context element</var>.
251
+
<spanid="dom-innerhtml"></span>
290
252
291
-
<li>If the <a>context object</a> is a <code><a>template</a></code> element, then let
292
-
<a>context object</a> be the <code><a>template</a></code>'s <a>template contents</a> (a
293
-
<code><a>DocumentFragment</a></code>).
294
-
295
-
<pclass=note>Setting <adata-link-for="Element">innerHTML</a> on a <a>template</a> element will replace
296
-
all the nodes in its <a>template contents</a>
297
-
(<a>template</a>.<adata-lt="template contents">content</a>) rather than its <a>children</a>.</p>
298
-
299
-
<li><a>Replace all</a> with <var>fragment</var> within the <a>context object</a>.
300
-
</ol>
253
+
<p>The definition of <code>InnerHTML</code> has moved to <ahref="https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#the-innerhtml-property">the HTML Standard</a>.</p>
301
254
302
255
</section><!-- end InnerHTML mixin -->
303
256
@@ -583,64 +536,27 @@ <h2>Extensibility</h2>
583
536
584
537
<section><h2>Parsing</h2>
585
538
586
-
<p>The following steps form the <dfn>fragment parsing algorithm</dfn>, whose arguments are a
587
-
<var>markup</var> string and a <var>context element</var>:
588
-
589
-
<ol>
590
-
<li>If the <var>context element</var>'s <a>node document</a> is an <a>HTML document</a>: let
591
-
<var>algorithm</var> be the <a>HTML fragment parsing algorithm</a>.
592
-
593
-
<p>If the <var>context element</var>'s <a>node document</a> is an <a>XML document</a>: let
594
-
<var>algorithm</var> be the <a>XML fragment parsing algorithm</a>.
595
-
596
-
<li>Let <var>new children</var> be the result of invoking <var>algorithm</var> with
597
-
<var>markup</var> as the <var>input</var>, and <var>context element</var> as the
598
-
<var><a>context</a></var> element.
599
-
600
-
<li>Let <var>fragment</var> be a new <code><a>DocumentFragment</a></code> whose
601
-
<a>node document</a> is <var>context element</var>'s <a>node document</a>.
602
-
603
-
<li><a>Append</a> each <a>Node</a> in <var>new children</var> to <var>fragment</var> (in
604
-
<a>tree order</a>).
539
+
<spanid="dfn-fragment-parsing-algorithm"></span>
605
540
606
-
<pclass=note>This ensures the <a>node document</a> for the new <a>nodes</a> is correct.</p>
607
-
608
-
<li>Return the value of <var>fragment</var>.
609
-
</ol>
541
+
<p>The definition of <code>fragment parsing algorithm</code> has moved to <ahref="https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#fragment-parsing-algorithm-steps">the HTML Standard</a>.</p>
610
542
611
543
</section><!-- end Parsing -->
612
544
613
545
<section><h2>Serializing</h2>
614
546
615
-
<p>The following steps form the <dfn>fragment serializing algorithm</dfn>, whose arguments are a
616
-
<code><a>Node</a></code><var>node</var> and a flag <dfn>require well-formed</dfn>:
617
-
618
-
<ol>
619
-
<li>Let <var>context document</var> be the value of <var>node</var>'s <a>node document</a>.
620
-
621
-
<li>If <var>context document</var> is an <a>HTML document</a>, return an
622
-
<a>HTML serialization</a> of <var>node</var>.
623
-
624
-
<li>Otherwise, <var>context document</var> is an <a>XML document</a>; return an
625
-
<a>XML serialization</a> of <var>node</var> passing the flag <a><var>require well-formed</var></a>.
626
-
627
-
<pclass=note>The <a>XML serialization</a> defined in this document conforms to the requirements
628
-
of the <a>XML fragment serialization algorithm</a> defined in [[HTML5]].</p>
<p>To produce an <dfn>HTML serialization</dfn> of a <code><a>Node</a></code><var>node</var>, the
632
-
user agent must run the <a>HTML fragment serialization algorithm</a> on <var>node</var> and return
633
-
the string produced.
549
+
<p>The definition of <code>fragment serializing algorithm</code> has moved to <ahref="https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#fragment-serializing-algorithm-steps">the HTML Standard</a>.</p>
634
550
635
551
<section><h2>XML Serialization</h2>
636
552
637
-
<p>An <a>XML serialization</a> differs from an <a>HTML serialization</a> in the following ways:
553
+
<p>An <a>XML serialization</a> differs from an HTML serialization in the following ways:
638
554
639
555
<ul>
640
556
<li><a>Elements</a> and <adata-lt="attribute">attributes</a> will always be serialized such
641
557
that their <code>namespaceURI</code> is preserved. In some cases this means that an existing
642
558
<code>prefix</code>, prefix declaration attribute or default namespace declaration attribute
643
-
might be dropped, substituted or changed. An <a>HTML serialization</a> does not attempt to
559
+
might be dropped, substituted or changed. An HTML serialization does not attempt to
644
560
preserve the <code>namespaceURI</code>.
645
561
646
562
<li><a>Elements</a> not in the <a>HTML namespace</a> containing no <a>children</a>, are
@@ -658,7 +574,7 @@ <h2>Extensibility</h2>
658
574
<a>Attr</a> object will result in an empty string.
659
575
660
576
<p>To produce an <dfn>XML serialization</dfn> of a <code><a>Node</a></code><var>node</var> given
661
-
a flag <a><var>require well-formed</var></a>, run the following steps:
577
+
a flag <a><dfn>require well-formed</dfn></a>, run the following steps:
662
578
663
579
<ol>
664
580
<li>Let <a><var>namespace</var></a> be a <a>context namespace</a> with value <code>null</code>.
@@ -1657,15 +1573,11 @@ <h2>Dependencies</h2>
1657
1573
<li>The general concepts:
1658
1574
an <dfn><ahref="https://www.w3.org/TR/html5/single-page.html#active-document">active document</a></dfn>;
1659
1575
<li>Parsing concepts:
1660
-
a fragment parsing <dfn><ahref="https://www.w3.org/TR/html5/single-page.html#concept-frag-parse-context">context</a></dfn>;
1661
-
the <dfn><ahref="https://www.w3.org/TR/html5/single-page.html#html-fragment-parsing-algorithm">HTML fragment parsing algorithm</a></dfn>;
1662
-
the <dfn><ahref="https://www.w3.org/TR/html5/single-page.html#html-fragment-serialization-algorithm">HTML fragment serialization algorithm</a></dfn>;
1576
+
the <dfn><ahref="https://html.spec.whatwg.org/dynamic-markup-insertion.html#fragment-parsing-algorithm-steps">fragment parsing algorithm</a></dfn>;
1577
+
the <dfn><ahref="https://html.spec.whatwg.org/dynamic-markup-insertion.html#fragment-serializing-algorithm-steps">fragment serializing algorithm</a></dfn>;
0 commit comments