html5/spec Overview.html,1.1506,1.1507

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv18725

Modified Files:
	Overview.html 
Log Message:
wrong argument name for new Audio(). (bug 6057) (whatwg r2334)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1506
retrieving revision 1.1507
diff -u -d -r1.1506 -r1.1507
--- Overview.html	15 Oct 2008 20:16:09 -0000	1.1506
+++ Overview.html	15 Oct 2008 21:01:51 -0000	1.1507
@@ -13280,7 +13280,7 @@
    <dt>DOM interface:</dt>
    <dd>
     <pre class=idl>[NamedConstructor=<a href=#dom-audio title=dom-Audio>Audio</a>(),
- NamedConstructor=<a href=#dom-audio-u title=dom-Audio-u>Audio</a>(in DOMString url)]
+ NamedConstructor=<a href=#dom-audio-s title=dom-Audio-s>Audio</a>(in DOMString src)]
 interface <dfn id=htmlaudioelement>HTMLAudioElement</dfn> : <a href=#htmlmediaelement>HTMLMediaElement</a> {
   // no members
 };</pre>
@@ -13303,7 +13303,7 @@
   the <a href=#current-playback-position>current playback position</a>, at the specified <a href=#dom-media-volume title=dom-media-volume>volume</a> with the specified <a href=#dom-media-muted title=dom-media-muted>mute state</a>.<p>When an <code><a href=#audio>audio</a></code> element is not <a href=#potentially-playing>potentially
   playing</a>, audio must not play for the element.<p>Two constructors are provided for creating
   <code><a href=#htmlaudioelement>HTMLAudioElement</a></code> objects (in addition to the factory
-  methods from DOM Core such as <code title="">createElement()</code>): <dfn id=dom-audio title=dom-Audio><code>Audio()</code></dfn> and <dfn id=dom-audio-u title=dom-Audio-u><code>Audio(<var title="">url</var>)</code></dfn>. When invoked as constructors,
+  methods from DOM Core such as <code title="">createElement()</code>): <dfn id=dom-audio title=dom-Audio><code>Audio()</code></dfn> and <dfn id=dom-audio-s title=dom-Audio-s><code>Audio(<var title="">src</var>)</code></dfn>. When invoked as constructors,
   these must return a new <code><a href=#htmlaudioelement>HTMLAudioElement</a></code> object (a new
   <code><a href=#audio>audio</a></code> element). If the <var title="">src</var> argument
   is present, the object created must have its <code title=dom-media-src><a href=#dom-media-src>src</a></code> content attribute set to the

Received on Wednesday, 15 October 2008 21:02:02 UTC