html5/spec Overview.html,1.2756,1.2757

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv7493

Modified Files:
	Overview.html 
Log Message:
Make innerHTML, outerHTML, and insertAdjacentHTML() trigger mutation events as if a DocumentFragment had been inserted. (whatwg r3564)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2756
retrieving revision 1.2757
diff -u -d -r1.2756 -r1.2757
--- Overview.html	8 Aug 2009 01:41:36 -0000	1.2756
+++ Overview.html	8 Aug 2009 07:50:44 -0000	1.2757
@@ -8457,7 +8457,7 @@
     <p>Append all the <var title="">new children</var> nodes to the
     node whose <code title="dom-innerHTML"><a href="#dom-innerhtml">innerHTML</a></code> attribute
     is being set, preserving their order, and firing mutation events
-    as appropriate.</p>
+    as if a <code>DocumentFragment</code> containing the <var title="">new children</var> had been inserted.</p>
 
    </li>
 
@@ -8556,7 +8556,9 @@
     <p>Remove <var title="">target</var> from its parent node, firing
     mutation events as appropriate, and then insert in its place all
     the <var title="">new children</var> nodes, preserving their
-    order, and again firing mutation events as appropriate.</p>
+    order, and again firing mutation events as if a
+    <code>DocumentFragment</code> containing the <var title="">new
+    children</var> had been inserted.</p>
 
    </li>
 
@@ -8723,7 +8725,7 @@
 
     </dl><p>The <var title="">new children</var> nodes must be inserted in
     a manner that preserves their order and fires mutation events as
-    appropriate.</p>
+    if a <code>DocumentFragment</code> containing the <var title="">new children</var> had been inserted.</p>
 
    </li>
 

Received on Saturday, 8 August 2009 07:51:00 UTC