- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 03 Aug 2011 00:01:33 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv22826
Modified Files:
Overview.html
Log Message:
The way this was written was confusing as it seemed to conflict with the earlier network error case. (whatwg r6353)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5075
retrieving revision 1.5076
diff -u -d -r1.5075 -r1.5076
--- Overview.html 2 Aug 2011 23:57:07 -0000 1.5075
+++ Overview.html 3 Aug 2011 00:01:29 -0000 1.5076
@@ -320,7 +320,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-2-august-2011">Editor's Draft 2 August 2011</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-3-august-2011">Editor's Draft 3 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>
@@ -466,7 +466,7 @@
Group</a> is the W3C working group responsible for this
specification's progress along the W3C Recommendation
track.
- This specification is the 2 August 2011 Editor's Draft.
+ This specification is the 3 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
@@ -22807,15 +22807,17 @@
</dd>
- <dt>If the connection is interrupted, causing the user agent to
+ <dt>If the connection is interrupted after some <a href="#media-data">media data</a> has been received, causing the user agent to
give up trying to fetch the resource</dt>
<dd>
<p>Fatal network errors that occur after the user agent has
established whether the <var title="">current media
- resource</var> is usable must cause the user agent to execute
- the following steps:</p>
+ resource</var> is usable (i.e. once the <a href="#media-element">media
+ element</a>'s <code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> attribute is no
+ longer <code title="dom-media-HAVE_NOTHING"><a href="#dom-media-have_nothing">HAVE_NOTHING</a></code>)
+ must cause the user agent to execute the following steps:</p>
<ol><li><p>The user agent should cancel the fetching
process.</li>
@@ -22828,13 +22830,7 @@
event</a> named <code title="event-media-error"><a href="#event-media-error">error</a></code>
at the <a href="#media-element">media element</a>.</li>
- <li><p>If the <a href="#media-element">media element</a>'s <code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> attribute has a
- value equal to <code title="dom-media-HAVE_NOTHING"><a href="#dom-media-have_nothing">HAVE_NOTHING</a></code>, set the
- element's <code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> attribute to
- the <code title="dom-media-NETWORK_EMPTY"><a href="#dom-media-network_empty">NETWORK_EMPTY</a></code>
- value and <a href="#queue-a-task">queue a task</a> to <a href="#fire-a-simple-event">fire a simple
- event</a> named <code title="event-media-emptied"><a href="#event-media-emptied">emptied</a></code>
- at the element. Otherwise, set the element's <code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> attribute to
+ <li><p>Set the element's <code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> attribute to
the <code title="dom-media-NETWORK_IDLE"><a href="#dom-media-network_idle">NETWORK_IDLE</a></code>
value.</li>
Received on Wednesday, 3 August 2011 00:01:39 UTC