hixie: document.all uses HTMLAllCollection. Also, add a note about webkitPreservesPitch. (whatwg r3410)

hixie: document.all uses HTMLAllCollection. Also, add a note about
webkitPreservesPitch. (whatwg r3410)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2539&r2=1.2540&f=h
http://html5.org/tools/web-apps-tracker?from=3409&to=3410

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2539
retrieving revision 1.2540
diff -u -d -r1.2539 -r1.2540
--- Overview.html 14 Jul 2009 07:21:42 -0000 1.2539
+++ Overview.html 15 Jul 2009 00:14:16 -0000 1.2540
@@ -175,7 +175,7 @@
    <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>
    <!--ZZZ:-->
    <!--<h2 class="no-num no-toc">W3C Working Draft 23 April 2009</h2>-->
-   <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 14 July 2009</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 15 July 2009</h2>
    <!--:ZZZ-->
    <dl><!-- ZZZ: update the month/day (twice), (un)comment out
     <dt>This Version:</dt>
@@ -268,7 +268,7 @@
   track.
   <!--ZZZ:-->
   <!--This specification is the 23 April 2009 Working Draft.-->
-  This specification is the 14 July 2009 Editor's Draft.
+  This specification is the 15 July 2009 Editor's Draft.
   <!--:ZZZ-->
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href="http://www.whatwg.org/">WHATWG</a>. The two specifications are
   identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to replace (be a new version of)
@@ -17546,6 +17546,8 @@
     * bufferingRate/bufferingThrottled (see v3BUF)
     * events for when the user agent's controls get shown or hidden
       so that the author's controls can get away of the UA's
+  --><!-- v2 features that already have experimental implementations:
+    * webkitPreservesPitch (for when playbackRate != 1.0)
   --><p><a href="#media-element" title="media element">Media elements</a> are used to
   present audio data, or video and audio data, to the user. This is
   referred to as <dfn id="media-data">media data</dfn> in this section, since this
@@ -65086,7 +65088,7 @@
   readonly attribute <a href="#htmlcollection-0">HTMLCollection</a> <a href="#dom-document-anchors" title="dom-document-anchors">anchors</a>;
   readonly attribute <a href="#htmlcollection-0">HTMLCollection</a> <a href="#dom-document-applets" title="dom-document-applets">applets</a>;
 
-  readonly attribute <a href="#htmlcollection-0">HTMLCollection</a> <a href="#dom-document-all" title="dom-document-all">all</a>;
+  readonly attribute <a href="#htmlallcollection-0">HTMLAllCollection</a> <a href="#dom-document-all" title="dom-document-all">all</a>;
 };</pre>
 
   <p>The <dfn id="dom-document-fgcolor" title="dom-document-fgColor"><code>fgColor</code></dfn>
@@ -65130,7 +65132,7 @@
   <code><a href="#the-applet-element">applet</a></code> elements.</p>
 
   <hr><p>The <dfn id="dom-document-all" title="dom-document-all"><code>all</code></dfn>
-  attribute must return an <code><a href="#htmlcollection-0">HTMLCollection</a></code> rooted at the
+  attribute must return an <code><a href="#htmlallcollection-0">HTMLAllCollection</a></code> rooted at the
   <code>Document</code> node, whose filter matches all elements.</p>
 
   <p>The object returned for <code title="dom-document-all"><a href="#dom-document-all">all</a></code>

Received on Wednesday, 15 July 2009 00:15:19 UTC