Skip to content

Commit

Permalink
Fix #420: add missing error event on source element to Event Summary
Browse files Browse the repository at this point in the history
PR #425
  • Loading branch information
yuyokk authored and zcorpan committed Dec 21, 2015
1 parent 5520809 commit fda5ae3
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -30149,7 +30149,7 @@ interface <dfn>HTMLMediaElement</dfn> : <span>HTMLElement</span> {
then the load failed.</p></li>

<li><p><i>Failed with elements</i>: <span>Queue a task</span> to <span>fire a simple
event</span> named <code data-x="event-error">error</code> at the <var>candidate</var> element.</p></li>
event</span> named <code data-x="event-source-error">error</code> at the <var>candidate</var> element.</p></li>

<li><p><span>Await a stable state</span>. The <span>synchronous section</span>
consists of all the remaining steps of this algorithm until the algorithm says the
Expand Down Expand Up @@ -35990,7 +35990,8 @@ dictionary <dfn>TrackEventInit</dfn> : <span>EventInit</span> {

<td><code>Event</code>

<td>An error occurs while fetching the <span>media data</span>.
<td>An error occurs while fetching the <span>media data</span> or the type of the resource
is not supported media format.

<td><code data-x="dom-media-error">error</code> is an object with the code <code
data-x="dom-MediaError-MEDIA_ERR_NETWORK">MEDIA_ERR_NETWORK</code> or higher. <code
Expand Down Expand Up @@ -36237,6 +36238,33 @@ dictionary <dfn>TrackEventInit</dfn> : <span>EventInit</span> {

</table>


<p>The following event fires on <code>source</code> element:</p>

<table>

<thead>
<tr>

<th>Event name

<th>Interface

<th>Fired when...

<tbody>
<tr>

<td><dfn><code data-x="event-source-error">error</code></dfn>

<td><code>Event</code>

<td>An error occurs while fetching the <span>media data</span> or the type of the resource
is not supported media format.

</table>


<p>The following events fire on <code>MediaController</code> objects:</p>

<table>
Expand Down

0 comments on commit fda5ae3

Please sign in to comment.