- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 13 Feb 2010 11:26:29 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/html-device In directory hutz:/tmp/cvs-serv15605 Modified Files: Overview.html Log Message: Define whether these methods and attributes return the same object or a different object each time they are called. (whatwg r4702) Index: Overview.html =================================================================== RCS file: /sources/public/html5/html-device/Overview.html,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- Overview.html 11 Feb 2010 10:03:21 -0000 1.19 +++ Overview.html 13 Feb 2010 11:26:27 -0000 1.20 @@ -281,7 +281,7 @@ <h1>HTML Device</h1> <h2 class="no-num no-toc" id="an-addition-to-html">An addition to HTML</h2> - <h2 class="no-num no-toc" id="editor-s-draft-11-february-2010">Editor's Draft 11 February 2010</h2> + <h2 class="no-num no-toc" id="editor-s-draft-13-february-2010">Editor's Draft 13 February 2010</h2> <dl><dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/html-device/">http://www.w3.org/TR/html-device/</a></dd> <dt>Latest Editor's Draft:</dt> @@ -360,7 +360,7 @@ specification's progress along the W3C Recommendation track. - This specification is the 11 February 2010 Editor's Draft. + This specification is the 13 February 2010 Editor's Draft. </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 part of <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/">a larger specification</a> being produced by the <a href="http://www.whatwg.org/">WHATWG</a>. <!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> @@ -457,13 +457,13 @@ supported by the user agent for use in <code>audio</code> and <code>video</code> elements.<p class="XXX">This will be pinned down to a specific codec, frame dimension, and bitrate in due course.<p>When the <dfn id="dom-stream-record" title="dom-stream-record"><code>record()</code></dfn> method is - invoked, the user agent must return a <code><a href="#streamrecorder">StreamRecorder</a></code> - object associated with the stream.<pre class="idl">interface <dfn id="streamrecorder">StreamRecorder</dfn> { + invoked, the user agent must return a new + <code><a href="#streamrecorder">StreamRecorder</a></code> object associated with the stream.<pre class="idl">interface <dfn id="streamrecorder">StreamRecorder</dfn> { <span>File</span> <a href="#dom-streamrecorder-stop" title="dom-StreamRecorder-stop">stop</a>(); };</pre><p>The <dfn id="dom-streamrecorder-stop" title="dom-StreamRecorder-stop"><code>stop()</code></dfn> method - must return a <code>File</code> object representing the data that - was streamed between the creation of the <code><a href="#streamrecorder">StreamRecorder</a></code> - object and the invocation of the <code title="dom-StreamRecorder-stop"><a href="#dom-streamrecorder-stop">stop()</a></code> method. <a href="#refsFILEAPI">[FILEAPI]</a><p>For audio and video streams, the file must be in a format + must return a new <code>File</code> object representing the data + that was streamed between the creation of the + <code><a href="#streamrecorder">StreamRecorder</a></code> object and the invocation of the <code title="dom-StreamRecorder-stop"><a href="#dom-streamrecorder-stop">stop()</a></code> method. <a href="#refsFILEAPI">[FILEAPI]</a><p>For audio and video streams, the file must be in a format supported by the user agent for use in <code>audio</code> and <code>video</code> elements.<p class="XXX">This again will be pinned down to a specific codec, frame dimension, and bitrate in due course.<h2 class="no-num" id="references">References</h2><!--REFS--><p>All references are normative unless marked "Non-normative".</p><!-- Dates are only included for standards older than the Web,
Received on Saturday, 13 February 2010 11:26:30 UTC