- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 10 Aug 2011 00:47:30 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv13058
Modified Files:
index.html links.html references.html spec.html
states-of-the-type-attribute.html timers.html
Log Message:
Defer to WebIDL more. (whatwg r6399)
[updated by splitter]
Index: timers.html
===================================================================
RCS file: /sources/public/html5/spec/timers.html,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- timers.html 5 Aug 2011 15:46:29 -0000 1.52
+++ timers.html 10 Aug 2011 00:47:17 -0000 1.53
@@ -339,9 +339,11 @@
and <code title="dom-windowtimers-setInterval"><a href="#dom-windowtimers-setinterval">setInterval()</a></code>
methods allow authors to schedule timer-based callbacks.</p><pre class="idl">[NoInterfaceObject]
interface <dfn id="windowtimers">WindowTimers</dfn> {
- long <a href="#dom-windowtimers-settimeout" title="dom-windowtimers-setTimeout">setTimeout</a>(in any handler, in optional any timeout, in any... args);
+ long <a href="#dom-windowtimers-settimeout" title="dom-windowtimers-setTimeout">setTimeout</a>(in Function handler, in optional float timeout, in any... args);
+ long <a href="#dom-windowtimers-settimeout" title="dom-windowtimers-setTimeout">setTimeout</a>([AllowAny] in DOMString handler, in optional float timeout, in any... args);
void <a href="#dom-windowtimers-cleartimeout" title="dom-windowtimers-clearTimeout">clearTimeout</a>(in long handle);
- long <a href="#dom-windowtimers-setinterval" title="dom-windowtimers-setInterval">setInterval</a>(in any handler, in optional any timeout, in any... args);
+ long <a href="#dom-windowtimers-setinterval" title="dom-windowtimers-setInterval">setInterval</a>(in Function handler, in optional float timeout, in any... args);
+ long <a href="#dom-windowtimers-setinterval" title="dom-windowtimers-setInterval">setInterval</a>([AllowAny] in DOMString handler, in optional float timeout, in any... args);
void <a href="#dom-windowtimers-clearinterval" title="dom-windowtimers-clearInterval">clearInterval</a>(in long handle);
};
<a href="browsers.html#window">Window</a> implements <a href="#windowtimers">WindowTimers</a>;</pre><dl class="domintro"><dt><var title="">handle</var> = <var title="">window</var> . <code title="dom-windowtimers-setTimeout"><a href="#dom-windowtimers-settimeout">setTimeout</a></code>( <var title="">handler</var> [, <var title="">timeout</var> [, <var title="">arguments</var>... ] ] )</dt>
@@ -566,11 +568,12 @@
<ol><li>
- <p>If the first argument to the invoked method is an object that
- has an internal [[Call]] method, then return a <a href="webappapis.html#concept-task" title="concept-task">task</a> that checks if the entry for <var title="">handle</var> in <var title="">list</var> has been
- cleared, and if it has not, calls the aforementioned [[Call]]
- method with as its arguments the third and subsequent arguments to
- the invoked method (if any), and with an undefined <var title="">thisArg</var>, and abort these steps. <a href="references.html#refsECMA262">[ECMA262]</a></p>
+ <p>If the first argument to the invoked method is a
+ <code><a href="webappapis.html#function">Function</a></code>, then return a <a href="webappapis.html#concept-task" title="concept-task">task</a> that checks if the entry for <var title="">handle</var> in <var title="">list</var> has been
+ cleared, and if it has not, calls the <code><a href="webappapis.html#function">Function</a></code> with
+ as its arguments the third and subsequent arguments to the invoked
+ method (if any) and with an undefined <var title="">thisArg</var>,
+ and abort these steps. <a href="references.html#refsECMA262">[ECMA262]</a></p>
<p class="note">Setting <var title="">thisArg</var> to undefined
means that the function code will be executed with the <code title="">this</code> keyword bound to the <code><a href="browsers.html#windowproxy">WindowProxy</a></code>
@@ -581,9 +584,8 @@
</li>
- <li><p>Apply the ToString() abstract operation to the first
- argument to the method, and let <var title="">script source</var>
- be the result. <a href="references.html#refsECMA262">[ECMA262]</a></p></li>
+ <li><p>Let <var title="">script source</var> be the first argument
+ to the method.</p></li>
<li><p>Let <var title="">script language</var> be
JavaScript.</p></li>
@@ -630,12 +632,6 @@
<ol><li><p>Let <var title="">timeout</var> be the second argument to
the method, or zero if the argument was omitted.</p></li>
- <li><p>Apply the ToString() abstract operation to <var title="">timeout</var>, and let <var title="">timeout</var>
- be the result. <a href="references.html#refsECMA262">[ECMA262]</a></p></li>
-
- <li><p>Apply the ToNumber() abstract operation to <var title="">timeout</var>, and let <var title="">timeout</var> be the
- result. <a href="references.html#refsECMA262">[ECMA262]</a></p></li>
-
<li><p>If <var title="">timeout</var> is an Infinity value, a
Not-a-Number (NaN) value, or negative, let <var title="">timeout</var> be zero.</p></li>
Index: states-of-the-type-attribute.html
===================================================================
RCS file: /sources/public/html5/spec/states-of-the-type-attribute.html,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- states-of-the-type-attribute.html 28 Jul 2011 01:46:29 -0000 1.49
+++ states-of-the-type-attribute.html 10 Aug 2011 00:47:12 -0000 1.50
@@ -847,9 +847,10 @@
</dl><p>A <dfn id="valid-e-mail-address">valid e-mail address</dfn> is a string that matches the
ABNF production <code title="">1*( atext / "." ) "@" ldh-str *( "." ldh-str )</code>
- where <code title="">atext</code> is defined in RFC 5322 section
- 3.2.3, and <code title="">ldh-str</code> is defined in RFC 1034
- section 3.5. <a href="references.html#refsABNF">[ABNF]</a> <a href="references.html#refsRFC5322">[RFC5322]</a> <a href="references.html#refsRFC1034">[RFC1034]</a></p><p class="note">This requirement is a <a href="introduction.html#willful-violation">willful violation</a>
+ where <code title="">atext</code> is defined in <a href="http://tools.ietf.org/html/rfc5322#section-3.2.3">RFC 5322
+ section 3.2.3</a>, and <code title="">ldh-str</code> is defined in
+ <a href="http://tools.ietf.org/html/rfc1034#section-3.5">RFC 1034
+ section 3.5</a>. <a href="references.html#refsABNF">[ABNF]</a> <a href="references.html#refsRFC5322">[RFC5322]</a> <a href="references.html#refsRFC1034">[RFC1034]</a></p><p class="note">This requirement is a <a href="introduction.html#willful-violation">willful violation</a>
of RFC 5322, which defines a syntax for e-mail addresses that is
simultaneously too strict (before the "@" character), too vague
(after the "@" character), and too lax (allowing comments, white
Index: references.html
===================================================================
RCS file: /sources/public/html5/spec/references.html,v
retrieving revision 1.1054
retrieving revision 1.1055
diff -u -d -r1.1054 -r1.1055
--- references.html 28 Jul 2011 01:46:29 -0000 1.1054
+++ references.html 10 Aug 2011 00:47:03 -0000 1.1055
@@ -547,7 +547,7 @@
Van Deursen. W3C.</dd>
<dt id="refsMFREL">[MFREL]</dt>
- <dd><cite><a href="http://microformats.org/wiki/existing-rel-values">Microformats Wiki: existing rel values</a></cite>. Microformats.</dd>
+ <dd><cite><a href="http://microformats.org/wiki/existing-rel-values#HTML5_link_type_extensions">Microformats Wiki: existing rel values</a></cite>. Microformats.</dd>
<dt id="refsMIMESNIFF">[MIMESNIFF]</dt>
<dd><cite><a href="http://tools.ietf.org/html/draft-abarth-mime-sniff">Media
Index: index.html
===================================================================
RCS file: /sources/public/html5/spec/index.html,v
retrieving revision 1.1061
retrieving revision 1.1062
diff -u -d -r1.1061 -r1.1062
--- index.html 28 Jul 2011 01:46:27 -0000 1.1061
+++ index.html 10 Aug 2011 00:46:51 -0000 1.1062
@@ -1354,6 +1354,7 @@
<td><a href="elements.html#global-attributes" title="global attributes">globals</a>;
<code title="attr-fe-autofocus"><a href="association-of-controls-and-forms.html#attr-fe-autofocus">autofocus</a></code>;
<code title="attr-textarea-cols"><a href="the-button-element.html#attr-textarea-cols">cols</a></code>;
+ <code title="attr-textarea-dirname"><a href="the-button-element.html#attr-textarea-dirname">dirname</a></code>;
<code title="attr-fe-disabled"><a href="association-of-controls-and-forms.html#attr-fe-disabled">disabled</a></code>;
<code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form">form</a></code>;
<code title="attr-textarea-maxlength"><a href="the-button-element.html#attr-textarea-maxlength">maxlength</a></code>;
Index: links.html
===================================================================
RCS file: /sources/public/html5/spec/links.html,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -d -r1.77 -r1.78
--- links.html 6 Aug 2011 00:47:00 -0000 1.77
+++ links.html 10 Aug 2011 00:47:02 -0000 1.78
@@ -989,7 +989,7 @@
the <code title="rel-prev"><a href="#link-type-prev">prev</a></code> keyword.</p>
</div><h5 id="other-link-types"><span class="secno">4.12.4.17 </span>Other link types</h5><p><dfn id="concept-rel-extensions" title="concept-rel-extensions">Extensions to the predefined
- set of link types</dfn> may be registered in the <a href="http://microformats.org/wiki/existing-rel-values">Microformats wiki existing-rel-values page</a>. <a href="references.html#refsMFREL">[MFREL]</a></p><p>Anyone is free to edit the <span title="">Microformats wiki
+ set of link types</dfn> may be registered in the <a href="http://microformats.org/wiki/existing-rel-values#HTML5_link_type_extensions">Microformats wiki existing-rel-values page</a>. <a href="references.html#refsMFREL">[MFREL]</a></p><p>Anyone is free to edit the <span title="">Microformats wiki
existing-rel-values page</span> at any time to add a type. Extension
types must be specified with the following information:</p><dl><dt>Keyword</dt>
@@ -1148,7 +1148,7 @@
add the value to the Wiki, with the details described above, with
the "proposed" status.</p>
- </div><p>Types defined as extensions in the <a href="http://microformats.org/wiki/existing-rel-values">Microformats
+ </div><p>Types defined as extensions in the <a href="http://microformats.org/wiki/existing-rel-values#HTML5_link_type_extensions">Microformats
wiki existing-rel-values page</a> with the status "proposed" or
"ratified" may be used with the <code title="">rel</code> attribute
on <code><a href="semantics.html#the-link-element">link</a></code>, <code><a href="text-level-semantics.html#the-a-element">a</a></code>, and <code><a href="the-map-element.html#the-area-element">area</a></code> elements
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1597
retrieving revision 1.1598
diff -u -d -r1.1597 -r1.1598
--- spec.html 9 Aug 2011 23:46:25 -0000 1.1597
+++ spec.html 10 Aug 2011 00:47:03 -0000 1.1598
@@ -324,7 +324,7 @@
<h1>HTML5</h1>
<h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
- <h2 class="no-num no-toc" id="editor-s-draft-9-august-2011">Editor's Draft 9 August 2011</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-10-august-2011">Editor's Draft 10 August 2011</h2>
<dl><dt>Latest Published Version:</dt>
<dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd>
<dt>Latest Editor's Draft:</dt>
@@ -349,7 +349,7 @@
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>,
<a href="author/">web developer edition</a>.
-This is revision 1.5102.
+This is revision 1.5106.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2011 <a href="http://www.w3.org/"><abbr title="World Wide
@@ -470,7 +470,7 @@
Group</a> is the W3C working group responsible for this
specification's progress along the W3C Recommendation
track.
- This specification is the 9 August 2011 Editor's Draft.
+ This specification is the 10 August 2011 Editor's Draft.
</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group
actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working
group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
Received on Wednesday, 10 August 2011 00:47:39 UTC