[html5] r858 - /

whatwg at whatwg.org whatwg at whatwg.org
Mon Jun 4 17:20:00 PDT 2007


Author: ianh
Date: 2007-06-04 17:19:58 -0700 (Mon, 04 Jun 2007)
New Revision: 858

Modified:
   index
   source
Log:
[] (0) Allow async and defer to be specified without 'src'; don't allow them togother.

Modified: index
===================================================================
--- index	2007-06-02 01:59:00 UTC (rev 857)
+++ index	2007-06-05 00:19:58 UTC (rev 858)
@@ -22,7 +22,7 @@
 
    <h1 id=html-5>HTML 5</h1>
 
-   <h2 class="no-num no-toc" id=working>Working Draft — 2 June 2007</h2>
+   <h2 class="no-num no-toc" id=working>Working Draft — 5 June 2007</h2>
 
    <p>You can take part in this work. <a
     href="http://www.whatwg.org/mailing-list">Join the working group's
@@ -18775,13 +18775,9 @@
 
    <dd><code title=attr-script-src><a href="#src9">src</a></code>
 
-   <dd><code title=attr-script-defer><a href="#defer">defer</a></code> (if
-    the <code title=attr-script-src><a href="#src9">src</a></code> attribute
-    is present)
+   <dd><code title=attr-script-defer><a href="#defer">defer</a></code>
 
-   <dd><code title=attr-script-async><a href="#async">async</a></code> (if
-    the <code title=attr-script-src><a href="#src9">src</a></code> attribute
-    is present)
+   <dd><code title=attr-script-async><a href="#async">async</a></code>
 
    <dd><code title=attr-script-type><a href="#type11">type</a></code>
 
@@ -18832,6 +18828,10 @@
    immediately, before the user agent continues parsing the page. The exact
    processing details for these attributes is described below.
 
+  <p>The <code title=attr-script-async><a href="#async">async</a></code>
+   attribute must not be specified if the <code title=attr-script-defer><a
+   href="#defer">defer</a></code> attribute is specified.
+
   <p>Changing the <code title=attr-script-src><a href="#src9">src</a></code>,
    <code title=attr-script-type><a href="#type11">type</a></code>, <code
    title=attr-script-defer><a href="#defer">defer</a></code> and <code

Modified: source
===================================================================
--- source	2007-06-02 01:59:00 UTC (rev 857)
+++ source	2007-06-05 00:19:58 UTC (rev 858)
@@ -16545,8 +16545,8 @@
    attribute, the element must be empty.</dd>
    <dt>Element-specific attributes:</dt>
    <dd><code title="attr-script-src">src</code></dd>
-   <dd><code title="attr-script-defer">defer</code> (if the <code title="attr-script-src">src</code> attribute is present)</dd>
-   <dd><code title="attr-script-async">async</code> (if the <code title="attr-script-src">src</code> attribute is present)</dd>
+   <dd><code title="attr-script-defer">defer</code></dd>
+   <dd><code title="attr-script-async">async</code></dd>
    <dd><code title="attr-script-type">type</code></dd>
    <dt>DOM interface:</dt>
    <dd>
@@ -16593,6 +16593,10 @@
   parsing the page. The exact processing details for these attributes
   is described below.</p>
 
+  <p>The <code title="attr-script-async">async</code> attribute must
+  not be specified if the <code title="attr-script-defer">defer</code>
+  attribute is specified.</p>
+
   <p>Changing the <code title="attr-script-src">src</code>, <code
   title="attr-script-type">type</code>, <code
   title="attr-script-defer">defer</code> and <code




More information about the Commit-Watchers mailing list