- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 20 Oct 2009 21:53:30 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv15718 Modified Files: Overview.html Log Message: Make 'abort' and 'emptied' events in load() fire asynchronously. (whatwg r4212) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.3357 retrieving revision 1.3358 diff -u -d -r1.3357 -r1.3358 --- Overview.html 20 Oct 2009 21:34:00 -0000 1.3357 +++ Overview.html 20 Oct 2009 21:53:27 -0000 1.3358 @@ -19552,17 +19552,16 @@ value of the <code title="dom-media-defaultPlaybackRate"><a href="#dom-media-defaultplaybackrate">defaultPlaybackRate</a></code> attribute.</li> - <li><p>If <var title="">aborted</var> is true, set the <code title="dom-media-error"><a href="#dom-media-error">error</a></code> attribute to a new - <code><a href="#mediaerror">MediaError</a></code> object whose <code title="dom-MediaError-code"><a href="#dom-mediaerror-code">code</a></code> attribute is set to <code title="dom-MediaError-MEDIA_ERR_ABORTED"><a href="#dom-mediaerror-media_err_aborted">MEDIA_ERR_ABORTED</a></code>, - and <a href="#fire-a-simple-event">fire a simple event</a> named <code title="event-media-abort"><a href="#event-media-abort">abort</a></code> at the <a href="#media-element">media - element</a>.</li> - <li><p>Set the <code title="dom-media-error"><a href="#dom-media-error">error</a></code> attribute to null and the <a href="#autoplaying-flag">autoplaying flag</a> to true.</li> - <li><p>If <var title="">emptied</var> is true, <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 <a href="#media-element">media element</a>.</li> + <li><p>If <var title="">aborted</var> is true, <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-abort"><a href="#event-media-abort">abort</a></code> at the <a href="#media-element">media + element</a>.</li> + + <li><p>If <var title="">emptied</var> is true, <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 <a href="#media-element">media + element</a>.</li> <li><p>Invoke the <a href="#media-element">media element</a>'s <a href="#concept-media-load-algorithm" title="concept-media-load-algorithm">resource selection algorithm</a>.</li>
Received on Tuesday, 20 October 2009 21:53:32 UTC