- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 05 Jun 2009 10:18:03 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup
In directory hutz:/tmp/cvs-serv8724
Modified Files:
p.html script.html spec.html
Log Message:
h:tml; fixed some broken idref's and made minor wording refinements
Index: script.html
===================================================================
RCS file: /sources/public/html5/markup/script.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- script.html 3 May 2009 15:59:43 -0000 1.4
+++ script.html 5 Jun 2009 10:18:01 -0000 1.5
@@ -61,19 +61,17 @@
<dd>The address of the external script resource to use.</dd>
<dt><a class="attribute-name" id="script.attrs.defer" title="script.attrs.defer" href="script.html#script.attrs.defer">defer</a><span class="attr-values"> = "defer" | "" </span> </dt>
- <dd>The <span class="attribute">defer</span> attribute
- indicates how the script should be executed.</dd>
+ <dd>Specifies that script should be executed after the
+ document has been parsed.</dd>
<dt><a class="attribute-name" id="script.attrs.async" title="script.attrs.async" href="script.html#script.attrs.async">async</a><span class="attr-values"> = "async" | "" </span> </dt>
- <dd>The <span class="attribute">async</span> attribute
- indicates how the script should be executed.</dd>
+ <dd>Specifies that the script should be executed
+ asynchronously, as soon as it becomes available.</dd>
<dt><a class="attribute-name" id="script.attrs.charset" title="script.attrs.charset" href="script.html#script.attrs.charset">charset</a><span class="attr-values"> =
<a class="ref" href="datatypes.html#common.data.charset" title="common.data.charset">charset</a>
</span> </dt>
- <dd>The character encoding of the external script resource.
- The attribute must not be specified if the <code title="attr-script-src"><a href=".html#src9">src</a></code>
- attribute is not present.</dd>
+ <dd>The character encoding of the external script resource.</dd>
</dl></div>
Index: p.html
===================================================================
RCS file: /sources/public/html5/markup/p.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- p.html 3 May 2009 15:59:42 -0000 1.4
+++ p.html 5 Jun 2009 10:18:01 -0000 1.5
@@ -45,7 +45,7 @@
<code><a href="blockquote.html#blockquote">blockquote</a></code>,
<code><a href="datagrid.html#datagrid">datagrid</a></code>,
<code><a href="dialog.html#dialog">dialog</a></code>,
- <code><a href=".html#dir">dir</a></code>,
+ <code>dir</code>,
<code><a href="div.html#div">div</a></code>,
<code><a href="dl.html#dl">dl</a></code>,
<code><a href="fieldset.html#fieldset">fieldset</a></code>,
Index: spec.html
===================================================================
RCS file: /sources/public/html5/markup/spec.html,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- spec.html 5 Jun 2009 10:01:25 -0000 1.22
+++ spec.html 5 Jun 2009 10:18:01 -0000 1.23
@@ -11150,7 +11150,7 @@
<code><a href="#blockquote">blockquote</a></code>,
<code><a href="#datagrid">datagrid</a></code>,
<code><a href="#dialog">dialog</a></code>,
- <code><a href="#dir">dir</a></code>,
+ <code>dir</code>,
<code><a href="#div">div</a></code>,
<code><a href="#dl">dl</a></code>,
<code><a href="#fieldset">fieldset</a></code>,
@@ -11794,21 +11794,19 @@
<dt>
<a class="attribute-name" id="script.attrs.defer" title="script.attrs.defer" href="#script.attrs.defer">defer</a><span class="attr-values"> = "defer" | "" </span> </dt>
- <dd>The <span class="attribute">defer</span> attribute
- indicates how the script should be executed.</dd>
+ <dd>Specifies that script should be executed after the
+ document has been parsed.</dd>
<dt>
<a class="attribute-name" id="script.attrs.async" title="script.attrs.async" href="#script.attrs.async">async</a><span class="attr-values"> = "async" | "" </span> </dt>
- <dd>The <span class="attribute">async</span> attribute
- indicates how the script should be executed.</dd>
+ <dd>Specifies that the script should be executed
+ asynchronously, as soon as it becomes available.</dd>
<dt>
<a class="attribute-name" id="script.attrs.charset" title="script.attrs.charset" href="#script.attrs.charset">charset</a><span class="attr-values"> =
<a class="ref" href="#common.data.charset" title="common.data.charset">charset</a>
</span> </dt>
- <dd>The character encoding of the external script resource.
- The attribute must not be specified if the <code title="attr-script-src"><a href="#src9">src</a></code>
- attribute is not present.</dd>
+ <dd>The character encoding of the external script resource.</dd>
</dl>
</div>
Received on Friday, 5 June 2009 10:18:09 UTC