Skip to content

Commit aaa9248

Browse files
committed
Remove innerHTML mixin and fragment parsing/serializing algorithms.
These have been moved to the HTML spec.
1 parent cf5826e commit aaa9248

File tree

1 file changed

+15
-103
lines changed

1 file changed

+15
-103
lines changed

index.html

+15-103
Original file line numberDiff line numberDiff line change
@@ -246,58 +246,11 @@ <h2>Extensibility</h2>
246246

247247
</section><!-- end XMLSerializer interface -->
248248

249-
<section><h2>The <dfn>InnerHTML</dfn> mixin</h2>
249+
<section><h2>The <code>InnerHTML</code> mixin</h2>
250250

251-
<pre class="idl">
252-
interface mixin InnerHTML {
253-
[CEReactions] attribute [LegacyNullToEmptyString] HTMLString innerHTML;
254-
};
255-
256-
Element includes InnerHTML;
257-
ShadowRoot includes InnerHTML;
258-
</pre>
259-
260-
<!-- innerHTML -->
261-
262-
<p>The <dfn data-dfn-for="InnerHTML"><code>innerHTML</code></dfn> IDL attribute represents the markup of the
263-
element's contents.
264-
265-
<dl class=domintro>
266-
<dt><var>element</var> . <a data-link-for="InnerHTML">innerHTML</a> [ = <var>value</var> ]
267-
<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-
<a data-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+
<span id="dom-innerhtml"></span>
290252

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-
<p class=note>Setting <a data-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>.<a data-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 <a href="https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#the-innerhtml-property">the HTML Standard</a>.</p>
301254

302255
</section><!-- end InnerHTML mixin -->
303256

@@ -583,64 +536,27 @@ <h2>Extensibility</h2>
583536

584537
<section><h2>Parsing</h2>
585538

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+
<span id="dfn-fragment-parsing-algorithm"></span>
605540

606-
<p class=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 <a href="https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#fragment-parsing-algorithm-steps">the HTML Standard</a>.</p>
610542

611543
</section><!-- end Parsing -->
612544

613545
<section><h2>Serializing</h2>
614546

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-
<p class=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>
629-
</ol>
547+
<span id="dfn-fragment-serializing-algorithm"></span>
630548

631-
<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 <a href="https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#fragment-serializing-algorithm-steps">the HTML Standard</a>.</p>
634550

635551
<section><h2>XML Serialization</h2>
636552

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:
638554

639555
<ul>
640556
<li><a>Elements</a> and <a data-lt="attribute">attributes</a> will always be serialized such
641557
that their <code>namespaceURI</code> is preserved. In some cases this means that an existing
642558
<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
644560
preserve the <code>namespaceURI</code>.
645561

646562
<li><a>Elements</a> not in the <a>HTML namespace</a> containing no <a>children</a>, are
@@ -658,7 +574,7 @@ <h2>Extensibility</h2>
658574
<a>Attr</a> object will result in an empty string.
659575

660576
<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:
662578

663579
<ol>
664580
<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>
16571573
<li>The general concepts:
16581574
an <dfn><a href="https://www.w3.org/TR/html5/single-page.html#active-document">active document</a></dfn>;
16591575
<li>Parsing concepts:
1660-
a fragment parsing <dfn><a href="https://www.w3.org/TR/html5/single-page.html#concept-frag-parse-context">context</a></dfn>;
1661-
the <dfn><a href="https://www.w3.org/TR/html5/single-page.html#html-fragment-parsing-algorithm">HTML fragment parsing algorithm</a></dfn>;
1662-
the <dfn><a href="https://www.w3.org/TR/html5/single-page.html#html-fragment-serialization-algorithm">HTML fragment serialization algorithm</a></dfn>;
1576+
the <dfn><a href="https://html.spec.whatwg.org/dynamic-markup-insertion.html#fragment-parsing-algorithm-steps">fragment parsing algorithm</a></dfn>;
1577+
the <dfn><a href="https://html.spec.whatwg.org/dynamic-markup-insertion.html#fragment-serializing-algorithm-steps">fragment serializing algorithm</a></dfn>;
16631578
<dfn><a href="https://www.w3.org/TR/html5/single-page.html#html-parser">HTML parser</a></dfn>;
16641579
<dfn><a href="https://www.w3.org/TR/html5/single-page.html#parsing-xhtml-documents">parsing XHTML documents</a></dfn>;
1665-
the <dfn><a href="https://www.w3.org/TR/html5/single-page.html#xml-fragment-parsing-algorithm">XML fragment parsing algorithm</a></dfn>;
1666-
the <dfn><a href="https://www.w3.org/TR/html5/single-page.html#xml-fragment-serialization-algorithm">XML fragment serialization algorithm</a></dfn>;
16671580
<dfn><a href="https://www.w3.org/TR/html5/single-page.html#xml-parser">XML parser</a></dfn>;
1668-
<li>A <dfn><a href="https://www.w3.org/TR/html5/single-page.html#scripting-flag">scripting flag</a></dfn>
16691581
<li>A document <dfn><a href="https://www.w3.org/TR/html5/single-page.html#location">location</a></dfn>
16701582
<li>The following elements:
16711583
<dfn><a href="https://www.w3.org/TR/html5/single-page.html#meta">meta</a></dfn>,
@@ -1675,6 +1587,7 @@ <h2>Dependencies</h2>
16751587
<li><dfn><a href="https://www.w3.org/TR/html5/single-page.html#void-elements">void elements</a></dfn>
16761588
<li>The <a>template</a>'s <dfn data-lt="template content"><a href="https://www.w3.org/TR/html5/single-page.html#template-contents">template contents</a></dfn>
16771589
<li>The <dfn data-lt="CEReactions"><a href="https://www.w3.org/TR/html5/single-page.html#cereactios">[CEReactions]</a></dfn> IDL <a>extended attribute</a>
1590+
<li>The <dfn><a href="https://html.spec.whatwg.org/dynamic-markup-insertion.html#dom-element-innerhtml">innerHTML</a></dfn> property;
16781591
</ul>
16791592

16801593
The DOM specification [[!DOM4]] defines the following terms used in this document:
@@ -1694,9 +1607,8 @@ <h2>Dependencies</h2>
16941607
a <dfn data-lt="concept namespace"><a href="https://www.w3.org/TR/dom/#concept-element-namespace">namespace</a> concept</dfn>;
16951608
a <dfn><a href="https://www.w3.org/TR/dom/#concept-node-document">node document</a></dfn>;
16961609
the <dfn><a href="https://www.w3.org/TR/dom/#concept-node-append">append</a></dfn>,
1697-
<dfn><a href="https://www.w3.org/TR/dom/#concept-node-insert">insert</a></dfn>,
1698-
<dfn><a href="https://www.w3.org/TR/dom/#concept-node-replace">replace</a></dfn> and
1699-
<dfn><a href="https://www.w3.org/TR/dom/#concept-node-replace-all">replace all</a></dfn> operations;
1610+
<dfn><a href="https://www.w3.org/TR/dom/#concept-node-insert">insert</a></dfn> and
1611+
<dfn><a href="https://www.w3.org/TR/dom/#concept-node-replace">replace</a></dfn> operations;
17001612
<dfn><a href="https://www.w3.org/TR/dom/#concept-tree-order">tree order</a></dfn>;
17011613
a range's <dfn><a href="https://www.w3.org/TR/dom/#concept-range-start-node">start node</a></dfn>;
17021614
document <dfn><a href="https://www.w3.org/TR/dom/#concept-document-url">URL</a></dfn>;

0 commit comments

Comments
 (0)