- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 16 Mar 2010 22:36:40 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv12643
Modified Files:
acknowledgements.html spec.html syntax.html
Log Message:
Make <script async> not delay DOMContentLoaded. (whatwg r4850)
[updated by splitter]
Index: acknowledgements.html
===================================================================
RCS file: /sources/public/html5/spec/acknowledgements.html,v
retrieving revision 1.883
retrieving revision 1.884
diff -u -d -r1.883 -r1.884
--- acknowledgements.html 16 Mar 2010 09:06:35 -0000 1.883
+++ acknowledgements.html 16 Mar 2010 22:36:37 -0000 1.884
@@ -374,6 +374,7 @@
Brett Zamir,
Brian Campbell,
Brian Korver,
+ Brian Kuhn,
Brian Ryner,
Brian Smith,
Brian Wilson,
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.888
retrieving revision 1.889
diff -u -d -r1.888 -r1.889
--- spec.html 16 Mar 2010 09:06:35 -0000 1.888
+++ spec.html 16 Mar 2010 22:36:38 -0000 1.889
@@ -307,7 +307,7 @@
</dl><p>This specification is available in the following formats:
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>.
-This is revision 1.3885.
+This is revision 1.3886.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2010 <a href="http://www.w3.org/"><abbr title="World Wide
Index: syntax.html
===================================================================
RCS file: /sources/public/html5/spec/syntax.html,v
retrieving revision 1.876
retrieving revision 1.877
diff -u -d -r1.876 -r1.877
--- syntax.html 11 Mar 2010 04:56:34 -0000 1.876
+++ syntax.html 16 Mar 2010 22:36:38 -0000 1.877
@@ -8005,14 +8005,17 @@
</li></ol></li>
- <li><p><a href="webappapis.html#spin-the-event-loop">Spin the event loop</a> until the <a href="semantics.html#list-of-scripts-that-will-execute-as-soon-as-possible">list of
- scripts that will execute as soon as possible</a> is
- empty.</p></li>
-
<li><p><a href="webappapis.html#queue-a-task">Queue a task</a> to <a href="webappapis.html#fire-a-simple-event">fire a simple
event</a> named <code title="event-DOMContentLoaded">DOMContentLoaded</code> at the
<code><a href="infrastructure.html#document">Document</a></code>.</p></li>
+ <li><p><a href="webappapis.html#spin-the-event-loop">Spin the event loop</a> until the <a href="semantics.html#list-of-scripts-that-will-execute-as-soon-as-possible">list of
+ scripts that will execute as soon as possible</a> is
+ empty.</p></li> <!-- this step is redundant with the next one,
+ really, since all those scripts also delay the load event. It's
+ here in case we add an event between this step and the next or if
+ we move the previous step (DOMContentLoaded) down again. -->
+
<li><p><a href="webappapis.html#spin-the-event-loop">Spin the event loop</a> until there is nothing that
<dfn id="delay-the-load-event" title="delay the load event">delays the load event</dfn> in
the <code><a href="infrastructure.html#document">Document</a></code>.</p></li>
Received on Tuesday, 16 March 2010 22:36:41 UTC