Skip to content

Commit

Permalink
[] (0) Clarify that anything that mutates the document via the parser…
Browse files Browse the repository at this point in the history
… doesn't involve mutation events.

git-svn-id: http://svn.whatwg.org/webapps@2518 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Dec 2, 2008
1 parent 825bb4c commit 64a2045
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
16 changes: 11 additions & 5 deletions index
Expand Up @@ -7604,7 +7604,7 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20HTML%3E%0
<li>

<p>Remove the children of the element whose <code title=dom-innerHTML-HTML><a href=#dom-innerhtml-html>innerHTML</a></code> attribute is being
set.</p>
set, without firing any mutation events.</p>

</li>

Expand All @@ -7628,7 +7628,8 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20HTML%3E%0

<p>Append all the <var title="">new children</var> nodes to the
node whose <code title=dom-innerHTML-HTML><a href=#dom-innerhtml-html>innerHTML</a></code>
attribute is being set, preserving their order.</p>
attribute is being set, preserving their order, without firing any
mutation events.</p>

</li>

Expand Down Expand Up @@ -7700,7 +7701,8 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20HTML%3E%0

<p>Remove <var title="">target</var> from its parent node and
insert in its place all the <var title="">new children</var>
nodes, preserving their order.</p>
nodes, preserving their order, without firing any mutation
events.</p>

</li>

Expand Down Expand Up @@ -7837,7 +7839,10 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20HTML%3E%0

</dd>

</dl></li>
</dl><p>The above mutations must be performed without firing any
mutation events.</p>

</li>

</ol><!-- XXX must make sure we spec that innerHTML et al causes mutation
events to fire, but document.write() doesn't. (the latter is already
Expand Down Expand Up @@ -42057,7 +42062,8 @@ http://developer.apple.com/documentation/AppleApplications/Conceptual/SafariJSPr
<i><a href=#context>context</a></i> element and with the <var title="">value</var>
argument as <i><a href=#the-input-element>input</a></i>.</li>
<li><p>Insert the nodes returned by the previous step into the
document at the location of the caret.</li>
document at the location of the caret, without firing any
mutation events.</li>
</ol></dd>
<dd><strong>Enabled When:</strong> The document is <a href=#ready-for-editing-host-commands>ready for
editing host commands</a>.</dd>
Expand Down
14 changes: 10 additions & 4 deletions source
Expand Up @@ -7823,7 +7823,7 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20HTML%3E%0

<p>Remove the children of the element whose <code
title="dom-innerHTML-HTML">innerHTML</code> attribute is being
set.</p>
set, without firing any mutation events.</p>

</li>

Expand All @@ -7848,7 +7848,8 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20HTML%3E%0

<p>Append all the <var title="">new children</var> nodes to the
node whose <code title="dom-innerHTML-HTML">innerHTML</code>
attribute is being set, preserving their order.</p>
attribute is being set, preserving their order, without firing any
mutation events.</p>

</li>

Expand Down Expand Up @@ -7931,7 +7932,8 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20HTML%3E%0

<p>Remove <var title="">target</var> from its parent node and
insert in its place all the <var title="">new children</var>
nodes, preserving their order.</p>
nodes, preserving their order, without firing any mutation
events.</p>

</li>

Expand Down Expand Up @@ -8087,6 +8089,9 @@ http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C%21DOCTYPE%20HTML%3E%0

</dl>

<p>The above mutations must be performed without firing any
mutation events.</p>

</li>

</ol>
Expand Down Expand Up @@ -47997,7 +48002,8 @@ http://developer.apple.com/documentation/AppleApplications/Conceptual/SafariJSPr
<i>context</i> element and with the <var title="">value</var>
argument as <i>input</i>.</p></li>
<li><p>Insert the nodes returned by the previous step into the
document at the location of the caret.</p></li>
document at the location of the caret, without firing any
mutation events.</p></li>
</ol>
</dd>
<dd><strong>Enabled When:</strong> The document is <span>ready for
Expand Down

0 comments on commit 64a2045

Please sign in to comment.