Skip to content

Commit

Permalink
[] (0) Allow async and defer to be specified without 'src'; don't all…
Browse files Browse the repository at this point in the history
…ow them togother.

git-svn-id: http://svn.whatwg.org/webapps@858 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jun 5, 2007
1 parent 8b67322 commit 78124f8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
14 changes: 7 additions & 7 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<h1 id=html-5>HTML 5</h1>

<h2 class="no-num no-toc" id=working>Working Draft &mdash; 2 June 2007</h2>
<h2 class="no-num no-toc" id=working>Working Draft &mdash; 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
Expand Down Expand Up @@ -18775,13 +18775,9 @@ notes on what would need to be defined for dashed lines:

<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>

Expand Down Expand Up @@ -18832,6 +18828,10 @@ notes on what would need to be defined for dashed lines:
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
Expand Down
8 changes: 6 additions & 2 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -16545,8 +16545,8 @@ notes on what would need to be defined for dashed lines:
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>
Expand Down Expand Up @@ -16593,6 +16593,10 @@ notes on what would need to be defined for dashed lines:
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
Expand Down

0 comments on commit 78124f8

Please sign in to comment.