html5/spec Overview.html,1.3947,1.3948

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

Modified Files:
	Overview.html 
Log Message:
async and defer are only for scripts, not data blocks (whatwg r4927)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3947
retrieving revision 1.3948
diff -u -d -r1.3947 -r1.3948
--- Overview.html	31 Mar 2010 20:36:23 -0000	1.3947
+++ Overview.html	31 Mar 2010 20:42:28 -0000	1.3948
@@ -11429,7 +11429,8 @@
   external file, if any. <a href="#refsIANACHARSET">[IANACHARSET]</a><p>The <dfn id="attr-script-async" title="attr-script-async"><code>async</code></dfn> and
   <dfn id="attr-script-defer" title="attr-script-defer"><code>defer</code></dfn> attributes
   are <a href="#boolean-attribute" title="boolean attribute">boolean attributes</a> that
-  indicate how the script should be executed.<p>There are three possible modes that can be selected using these
+  indicate how the script should be executed. These attributes must
+  not be specified when the element is used to include data blocks.<p>There are three possible modes that can be selected using these
   attributes. If the <code title="attr-script-async"><a href="#attr-script-async">async</a></code>
   attribute is present, then the script will be executed
   asynchronously, as soon as it is available. If the <code title="attr-script-async"><a href="#attr-script-async">async</a></code> attribute is not present but

Received on Wednesday, 31 March 2010 20:42:33 UTC