hixie: Make the readyState change, the 'readystatechange' event, and the 'load' event all happen synchronously in the same task so that you can check readyState to know whether you still have to attach an 'onload' event handler. (whatwg r6882)

hixie: Make the readyState change, the 'readystatechange' event, and the
'load' event all happen synchronously in the same task so that you can
check readyState to know whether you still have to attach an 'onload'
event handler. (whatwg r6882)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5480&r2=1.5481&f=h
http://html5.org/tools/web-apps-tracker?from=6881&to=6882

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5480
retrieving revision 1.5481
diff -u -d -r1.5480 -r1.5481
--- Overview.html 7 Jan 2012 00:14:02 -0000 1.5480
+++ Overview.html 10 Jan 2012 00:08:40 -0000 1.5481
@@ -320,7 +320,7 @@
 
    <h1>HTML5</h1>
    <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
-   <h2 class="no-num no-toc" id="editor-s-draft-7-january-2012">Editor's Draft 7 January 2012</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-10-january-2012">Editor's Draft 10 January 2012</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -467,7 +467,7 @@
   Group</a> is the W3C working group responsible for this
   specification's progress along the W3C Recommendation
   track.
-  This specification is the 7 January 2012 Editor's Draft.
+  This specification is the 10 January 2012 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group
   actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working
   group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
@@ -64862,13 +64862,10 @@
    the <code><a href="#document">Document</a></code>.</li>
 
    <li><p><a href="#queue-a-task">Queue a task</a> to set the <a href="#current-document-readiness">current document
-   readiness</a> to "<code title="">complete</code>". </li>
-
-   <li><p>If the <code><a href="#document">Document</a></code> is in a <a href="#browsing-context">browsing
-   context</a>, then <a href="#queue-a-task">queue a task</a> to <a href="#fire-a-simple-event">fire a
-   simple event</a> named <code title="event-load">load</code> at
-   the <code><a href="#document">Document</a></code>'s <code><a href="#window">Window</a></code> object, but with
-   its <code title="dom-event-target"><a href="#dom-event-target">target</a></code> set to the
+   readiness</a> to "<code title="">complete</code>", and then, if the
+   <code><a href="#document">Document</a></code> is in a <a href="#browsing-context">browsing context</a>, to
+   <a href="#fire-a-simple-event">fire a simple event</a> named <code title="event-load">load</code> at the <code><a href="#document">Document</a></code>'s
+   <code><a href="#window">Window</a></code> object, but with its <code title="dom-event-target"><a href="#dom-event-target">target</a></code> set to the
    <code><a href="#document">Document</a></code> object (and the <code title="dom-event-currentTarget">currentTarget</code> set to the
    <code><a href="#window">Window</a></code> object).</li>

Received on Tuesday, 10 January 2012 00:11:05 UTC