[html5] r4132 - [gow] (2) <video> and <audio> never fire 'load' anymore.

whatwg at whatwg.org whatwg at whatwg.org
Wed Oct 14 03:00:26 PDT 2009


Author: ianh
Date: 2009-10-14 03:00:25 -0700 (Wed, 14 Oct 2009)
New Revision: 4132

Modified:
   complete.html
   index
   source
Log:
[gow] (2) <video> and <audio> never fire 'load' anymore.

Modified: complete.html
===================================================================
--- complete.html	2009-10-14 08:54:57 UTC (rev 4131)
+++ complete.html	2009-10-14 10:00:25 UTC (rev 4132)
@@ -21868,8 +21868,7 @@
   const unsigned short <a href=#dom-media-network_empty title=dom-media-NETWORK_EMPTY>NETWORK_EMPTY</a> = 0;
   const unsigned short <a href=#dom-media-network_idle title=dom-media-NETWORK_IDLE>NETWORK_IDLE</a> = 1;
   const unsigned short <a href=#dom-media-network_loading title=dom-media-NETWORK_LOADING>NETWORK_LOADING</a> = 2;
-  const unsigned short <a href=#dom-media-network_loaded title=dom-media-NETWORK_LOADED>NETWORK_LOADED</a> = 3;
-  const unsigned short <a href=#dom-media-network_no_source title=dom-media-NETWORK_NO_SOURCE>NETWORK_NO_SOURCE</a> = 4;
+  const unsigned short <a href=#dom-media-network_no_source title=dom-media-NETWORK_NO_SOURCE>NETWORK_NO_SOURCE</a> = 3;
   readonly attribute unsigned short <a href=#dom-media-networkstate title=dom-media-networkState>networkState</a>;
            attribute boolean <a href=#dom-media-autobuffer title=dom-media-autobuffer>autobuffer</a>;
 <!--v3BUF  readonly attribute float <span title="dom-media-bufferingRate">bufferingRate</span>;
@@ -22230,14 +22229,8 @@
 
    <dd>The user agent is actively trying to download data.</dd>
 
-   <dt><dfn id=dom-media-network_loaded title=dom-media-NETWORK_LOADED><code>NETWORK_LOADED</code></dfn> (numeric value 3)</dt>
+   <dt><dfn id=dom-media-network_no_source title=dom-media-NETWORK_NO_SOURCE><code>NETWORK_NO_SOURCE</code></dfn> (numeric value 3)</dt>
 
-   <dd>The entire <a href=#media-resource>media resource</a> has been obtained and is
-   available to the user agent locally. Network connectivity could be
-   lost without affecting the media playback.</dd>
-
-   <dt><dfn id=dom-media-network_no_source title=dom-media-NETWORK_NO_SOURCE><code>NETWORK_NO_SOURCE</code></dfn> (numeric value 4)</dt>
-
    <dd>The element<span class=impl>'s <a href=#concept-media-load-algorithm title=concept-media-load-algorithm>resource selection
    algorithm</a> is active, but it</span> has failed to find a
    <a href=#media-resource title="media resource">resource</a> to use.</dd>
@@ -22250,12 +22243,9 @@
 
   </div>
 
-  <p class=note>Some resources, e.g. streaming Web radio, can never
-  reach the <code title=dom-media-NETWORK_LOADED><a href=#dom-media-network_loaded>NETWORK_LOADED</a></code> state.</p>
 
 
 
-
   <h5 id=loading-the-media-resource><span class=secno>4.8.10.5 </span>Loading the media resource</h5>
 
   <dl class=domintro><dt><var title="">media</var> . <code title=dom-media-load><a href=#dom-media-load>load</a></code>()</dt>
@@ -22463,7 +22453,8 @@
      to false. This stops <a href=#delay-the-load-event title="delay the load event">delaying
      the load event</a>.</li>
 
-     <li><p>Abort these steps. Until the <code title=dom-media-load><a href=#dom-media-load>load()</a></code> method is invoked, the
+     <li><p>Abort these steps. Until the <code title=dom-media-load><a href=#dom-media-load>load()</a></code> method is invoked or the
+     <code title=attr-media-src><a href=#attr-media-src>src</a></code> attribute is changed, the
      element won't attempt to load another resource.</li>
      <!-- it took its ball and went home, sulking. -->
 
@@ -22992,20 +22983,9 @@
 
    </li>
 
-   <li><p>Set the <code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> attribute to
-   <code title=dom-media-NETWORK_LOADED><a href=#dom-media-network_loaded>NETWORK_LOADED</a></code>.</li>
-
-   <li><p><a href=#queue-a-task>Queue a task</a> to <a href=#fire-a-progress-event>fire a progress
-   event</a> named <code title=event-media-load><a href=#event-media-load>load</a></code> at the
-   <a href=#media-element>media element</a>, in the context of the <a href=#fetch title=fetch>fetching process</a> started by this instance of
-   this algorithm.</li>
-
-   <li><p><a href=#queue-a-task>Queue a task</a> to <a href=#fire-a-progress-event>fire a progress
-   event</a> named <code title=event-media-loadend><a href=#event-media-loadend>loadend</a></code> at
-   the <a href=#media-element>media element</a>, in the context of the <a href=#fetch title=fetch>fetching process</a> started by this instance of
-   this algorithm.</li>
-
-   <li><p>Finally, abort the overall <a href=#concept-media-load-algorithm title=concept-media-load-algorithm>resource selection
+   <li><p>If the user agent ever reaches this step (which can only
+   happen if the entire resource gets loaded and kept available):
+   abort the overall <a href=#concept-media-load-algorithm title=concept-media-load-algorithm>resource selection
    algorithm</a>.</li>
 
   </ol><p>If a <a href=#media-element>media element</a> whose <code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> has the value
@@ -24287,10 +24267,6 @@
      <td><code>ProgressEvent</code> <a href=#refsPROGRESS>[PROGRESS]</a>
      <td>The user agent is intentionally not currently fetching <a href=#media-data>media data</a>, but does not have the entire <a href=#media-resource>media resource</a> downloaded.
      <td><code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> equals <code title=dom-media-NETWORK_IDLE><a href=#dom-media-network_idle>NETWORK_IDLE</a></code>
-    <tr><td><dfn id=event-media-load title=event-media-load><code>load</code></dfn>
-     <td><code>ProgressEvent</code> <a href=#refsPROGRESS>[PROGRESS]</a>
-     <td>The user agent finishes fetching the entire <a href=#media-resource>media resource</a>.
-     <td><code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> equals <code title=dom-media-NETWORK_LOADED><a href=#dom-media-network_loaded>NETWORK_LOADED</a></code>
     <tr><td><dfn id=event-media-abort title=event-media-abort><code>abort</code></dfn>
      <td><code>ProgressEvent</code> <a href=#refsPROGRESS>[PROGRESS]</a>
      <td>The user agent stops fetching the <a href=#media-data>media data</a> before it is completely downloaded, but not due to an error.
@@ -24300,11 +24276,11 @@
      <td><code>ProgressEvent</code> <a href=#refsPROGRESS>[PROGRESS]</a>
      <td>An error occurs while fetching the <a href=#media-data>media data</a>.
      <td><code title=dom-media-error><a href=#dom-media-error>error</a></code> is an object with the code <code title=dom-MediaError-MEDIA_ERR_NETWORK><a href=#dom-mediaerror-media_err_network>MEDIA_ERR_NETWORK</a></code> or higher.
-         <code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> equals either <code title=dom-media-NETWORK_EMPTY><a href=#dom-media-network_empty>NETWORK_EMPTY</a></code> or <code title=dom-media-NETWORK_LOADED><a href=#dom-media-network_loaded>NETWORK_LOADED</a></code>, depending on when the download was aborted.
+         <code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> equals either <code title=dom-media-NETWORK_EMPTY><a href=#dom-media-network_empty>NETWORK_EMPTY</a></code> or <code title=dom-media-NETWORK_IDLE><a href=#dom-media-network_idle>NETWORK_IDLE</a></code>, depending on when the download was aborted.
     <tr><td><dfn id=event-media-loadend title=event-media-loadend><code>loadend</code></dfn>
      <td><code>ProgressEvent</code> <a href=#refsPROGRESS>[PROGRESS]</a>
      <td>The user agent stops fetching the <a href=#media-data>media data</a>, for whatever reason.
-     <td>One of <code title=event-media-load><a href=#event-media-load>load</a></code>, <code title=event-media-abort><a href=#event-media-abort>abort</a></code>, or <code title=event-media-error><a href=#event-media-error>error</a></code> has just fired.
+     <td>One of <code title=event-media-abort><a href=#event-media-abort>abort</a></code> or <code title=event-media-error><a href=#event-media-error>error</a></code> has just fired.
     <tr><td><dfn id=event-media-emptied title=event-media-emptied><code>emptied</code></dfn>
      <td><code>Event</code>
      <td>A <a href=#media-element>media element</a> whose <code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> was previously not in the <code title=dom-media-NETWORK_EMPTY><a href=#dom-media-network_empty>NETWORK_EMPTY</a></code> state has just switched to that state (either because of a fatal error during load that's about to be reported, or because the <code title=dom-media-load><a href=#dom-media-load>load()</a></code> method was invoked while the <a href=#concept-media-load-algorithm title=concept-media-load-algorithm>resource selection algorithm</a> was already running, in which case it is fired synchronously during the <code title=dom-media-load><a href=#dom-media-load>load()</a></code> method call).

Modified: index
===================================================================
--- index	2009-10-14 08:54:57 UTC (rev 4131)
+++ index	2009-10-14 10:00:25 UTC (rev 4132)
@@ -21696,8 +21696,7 @@
   const unsigned short <a href=#dom-media-network_empty title=dom-media-NETWORK_EMPTY>NETWORK_EMPTY</a> = 0;
   const unsigned short <a href=#dom-media-network_idle title=dom-media-NETWORK_IDLE>NETWORK_IDLE</a> = 1;
   const unsigned short <a href=#dom-media-network_loading title=dom-media-NETWORK_LOADING>NETWORK_LOADING</a> = 2;
-  const unsigned short <a href=#dom-media-network_loaded title=dom-media-NETWORK_LOADED>NETWORK_LOADED</a> = 3;
-  const unsigned short <a href=#dom-media-network_no_source title=dom-media-NETWORK_NO_SOURCE>NETWORK_NO_SOURCE</a> = 4;
+  const unsigned short <a href=#dom-media-network_no_source title=dom-media-NETWORK_NO_SOURCE>NETWORK_NO_SOURCE</a> = 3;
   readonly attribute unsigned short <a href=#dom-media-networkstate title=dom-media-networkState>networkState</a>;
            attribute boolean <a href=#dom-media-autobuffer title=dom-media-autobuffer>autobuffer</a>;
 <!--v3BUF  readonly attribute float <span title="dom-media-bufferingRate">bufferingRate</span>;
@@ -22058,14 +22057,8 @@
 
    <dd>The user agent is actively trying to download data.</dd>
 
-   <dt><dfn id=dom-media-network_loaded title=dom-media-NETWORK_LOADED><code>NETWORK_LOADED</code></dfn> (numeric value 3)</dt>
+   <dt><dfn id=dom-media-network_no_source title=dom-media-NETWORK_NO_SOURCE><code>NETWORK_NO_SOURCE</code></dfn> (numeric value 3)</dt>
 
-   <dd>The entire <a href=#media-resource>media resource</a> has been obtained and is
-   available to the user agent locally. Network connectivity could be
-   lost without affecting the media playback.</dd>
-
-   <dt><dfn id=dom-media-network_no_source title=dom-media-NETWORK_NO_SOURCE><code>NETWORK_NO_SOURCE</code></dfn> (numeric value 4)</dt>
-
    <dd>The element<span class=impl>'s <a href=#concept-media-load-algorithm title=concept-media-load-algorithm>resource selection
    algorithm</a> is active, but it</span> has failed to find a
    <a href=#media-resource title="media resource">resource</a> to use.</dd>
@@ -22078,12 +22071,9 @@
 
   </div>
 
-  <p class=note>Some resources, e.g. streaming Web radio, can never
-  reach the <code title=dom-media-NETWORK_LOADED><a href=#dom-media-network_loaded>NETWORK_LOADED</a></code> state.</p>
 
 
 
-
   <h5 id=loading-the-media-resource><span class=secno>4.8.10.5 </span>Loading the media resource</h5>
 
   <dl class=domintro><dt><var title="">media</var> . <code title=dom-media-load><a href=#dom-media-load>load</a></code>()</dt>
@@ -22291,7 +22281,8 @@
      to false. This stops <a href=#delay-the-load-event title="delay the load event">delaying
      the load event</a>.</li>
 
-     <li><p>Abort these steps. Until the <code title=dom-media-load><a href=#dom-media-load>load()</a></code> method is invoked, the
+     <li><p>Abort these steps. Until the <code title=dom-media-load><a href=#dom-media-load>load()</a></code> method is invoked or the
+     <code title=attr-media-src><a href=#attr-media-src>src</a></code> attribute is changed, the
      element won't attempt to load another resource.</li>
      <!-- it took its ball and went home, sulking. -->
 
@@ -22820,20 +22811,9 @@
 
    </li>
 
-   <li><p>Set the <code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> attribute to
-   <code title=dom-media-NETWORK_LOADED><a href=#dom-media-network_loaded>NETWORK_LOADED</a></code>.</li>
-
-   <li><p><a href=#queue-a-task>Queue a task</a> to <a href=#fire-a-progress-event>fire a progress
-   event</a> named <code title=event-media-load><a href=#event-media-load>load</a></code> at the
-   <a href=#media-element>media element</a>, in the context of the <a href=#fetch title=fetch>fetching process</a> started by this instance of
-   this algorithm.</li>
-
-   <li><p><a href=#queue-a-task>Queue a task</a> to <a href=#fire-a-progress-event>fire a progress
-   event</a> named <code title=event-media-loadend><a href=#event-media-loadend>loadend</a></code> at
-   the <a href=#media-element>media element</a>, in the context of the <a href=#fetch title=fetch>fetching process</a> started by this instance of
-   this algorithm.</li>
-
-   <li><p>Finally, abort the overall <a href=#concept-media-load-algorithm title=concept-media-load-algorithm>resource selection
+   <li><p>If the user agent ever reaches this step (which can only
+   happen if the entire resource gets loaded and kept available):
+   abort the overall <a href=#concept-media-load-algorithm title=concept-media-load-algorithm>resource selection
    algorithm</a>.</li>
 
   </ol><p>If a <a href=#media-element>media element</a> whose <code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> has the value
@@ -24115,10 +24095,6 @@
      <td><code>ProgressEvent</code> <a href=#refsPROGRESS>[PROGRESS]</a>
      <td>The user agent is intentionally not currently fetching <a href=#media-data>media data</a>, but does not have the entire <a href=#media-resource>media resource</a> downloaded.
      <td><code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> equals <code title=dom-media-NETWORK_IDLE><a href=#dom-media-network_idle>NETWORK_IDLE</a></code>
-    <tr><td><dfn id=event-media-load title=event-media-load><code>load</code></dfn>
-     <td><code>ProgressEvent</code> <a href=#refsPROGRESS>[PROGRESS]</a>
-     <td>The user agent finishes fetching the entire <a href=#media-resource>media resource</a>.
-     <td><code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> equals <code title=dom-media-NETWORK_LOADED><a href=#dom-media-network_loaded>NETWORK_LOADED</a></code>
     <tr><td><dfn id=event-media-abort title=event-media-abort><code>abort</code></dfn>
      <td><code>ProgressEvent</code> <a href=#refsPROGRESS>[PROGRESS]</a>
      <td>The user agent stops fetching the <a href=#media-data>media data</a> before it is completely downloaded, but not due to an error.
@@ -24128,11 +24104,11 @@
      <td><code>ProgressEvent</code> <a href=#refsPROGRESS>[PROGRESS]</a>
      <td>An error occurs while fetching the <a href=#media-data>media data</a>.
      <td><code title=dom-media-error><a href=#dom-media-error>error</a></code> is an object with the code <code title=dom-MediaError-MEDIA_ERR_NETWORK><a href=#dom-mediaerror-media_err_network>MEDIA_ERR_NETWORK</a></code> or higher.
-         <code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> equals either <code title=dom-media-NETWORK_EMPTY><a href=#dom-media-network_empty>NETWORK_EMPTY</a></code> or <code title=dom-media-NETWORK_LOADED><a href=#dom-media-network_loaded>NETWORK_LOADED</a></code>, depending on when the download was aborted.
+         <code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> equals either <code title=dom-media-NETWORK_EMPTY><a href=#dom-media-network_empty>NETWORK_EMPTY</a></code> or <code title=dom-media-NETWORK_IDLE><a href=#dom-media-network_idle>NETWORK_IDLE</a></code>, depending on when the download was aborted.
     <tr><td><dfn id=event-media-loadend title=event-media-loadend><code>loadend</code></dfn>
      <td><code>ProgressEvent</code> <a href=#refsPROGRESS>[PROGRESS]</a>
      <td>The user agent stops fetching the <a href=#media-data>media data</a>, for whatever reason.
-     <td>One of <code title=event-media-load><a href=#event-media-load>load</a></code>, <code title=event-media-abort><a href=#event-media-abort>abort</a></code>, or <code title=event-media-error><a href=#event-media-error>error</a></code> has just fired.
+     <td>One of <code title=event-media-abort><a href=#event-media-abort>abort</a></code> or <code title=event-media-error><a href=#event-media-error>error</a></code> has just fired.
     <tr><td><dfn id=event-media-emptied title=event-media-emptied><code>emptied</code></dfn>
      <td><code>Event</code>
      <td>A <a href=#media-element>media element</a> whose <code title=dom-media-networkState><a href=#dom-media-networkstate>networkState</a></code> was previously not in the <code title=dom-media-NETWORK_EMPTY><a href=#dom-media-network_empty>NETWORK_EMPTY</a></code> state has just switched to that state (either because of a fatal error during load that's about to be reported, or because the <code title=dom-media-load><a href=#dom-media-load>load()</a></code> method was invoked while the <a href=#concept-media-load-algorithm title=concept-media-load-algorithm>resource selection algorithm</a> was already running, in which case it is fired synchronously during the <code title=dom-media-load><a href=#dom-media-load>load()</a></code> method call).

Modified: source
===================================================================
--- source	2009-10-14 08:54:57 UTC (rev 4131)
+++ source	2009-10-14 10:00:25 UTC (rev 4132)
@@ -23319,8 +23319,7 @@
   const unsigned short <span title="dom-media-NETWORK_EMPTY">NETWORK_EMPTY</span> = 0;
   const unsigned short <span title="dom-media-NETWORK_IDLE">NETWORK_IDLE</span> = 1;
   const unsigned short <span title="dom-media-NETWORK_LOADING">NETWORK_LOADING</span> = 2;
-  const unsigned short <span title="dom-media-NETWORK_LOADED">NETWORK_LOADED</span> = 3;
-  const unsigned short <span title="dom-media-NETWORK_NO_SOURCE">NETWORK_NO_SOURCE</span> = 4;
+  const unsigned short <span title="dom-media-NETWORK_NO_SOURCE">NETWORK_NO_SOURCE</span> = 3;
   readonly attribute unsigned short <span title="dom-media-networkState">networkState</span>;
            attribute boolean <span title="dom-media-autobuffer">autobuffer</span>;
 <!--v3BUF  readonly attribute float <span title="dom-media-bufferingRate">bufferingRate</span>;
@@ -23728,14 +23727,8 @@
 
    <dd>The user agent is actively trying to download data.</dd>
 
-   <dt><dfn title="dom-media-NETWORK_LOADED"><code>NETWORK_LOADED</code></dfn> (numeric value 3)</dt>
+   <dt><dfn title="dom-media-NETWORK_NO_SOURCE"><code>NETWORK_NO_SOURCE</code></dfn> (numeric value 3)</dt>
 
-   <dd>The entire <span>media resource</span> has been obtained and is
-   available to the user agent locally. Network connectivity could be
-   lost without affecting the media playback.</dd>
-
-   <dt><dfn title="dom-media-NETWORK_NO_SOURCE"><code>NETWORK_NO_SOURCE</code></dfn> (numeric value 4)</dt>
-
    <dd>The element<span class="impl">'s <span
    title="concept-media-load-algorithm">resource selection
    algorithm</span> is active, but it</span> has failed to find a
@@ -23752,13 +23745,9 @@
 
   </div>
 
-  <p class="note">Some resources, e.g. streaming Web radio, can never
-  reach the <code
-  title="dom-media-NETWORK_LOADED">NETWORK_LOADED</code> state.</p>
 
 
 
-
   <h5>Loading the media resource</h5>
 
   <dl class="domintro">
@@ -24025,7 +24014,8 @@
      the load event</span>.</p></li>
 
      <li><p>Abort these steps. Until the <code
-     title="dom-media-load">load()</code> method is invoked, the
+     title="dom-media-load">load()</code> method is invoked or the
+     <code title="attr-media-src">src</code> attribute is changed, the
      element won't attempt to load another resource.</p></li>
      <!-- it took its ball and went home, sulking. -->
 
@@ -24674,24 +24664,9 @@
 
    </li>
 
-   <li><p>Set the <code
-   title="dom-media-networkState">networkState</code> attribute to
-   <code
-   title="dom-media-NETWORK_LOADED">NETWORK_LOADED</code>.</p></li>
-
-   <li><p><span>Queue a task</span> to <span>fire a progress
-   event</span> named <code title="event-media-load">load</code> at the
-   <span>media element</span>, in the context of the <span
-   title="fetch">fetching process</span> started by this instance of
-   this algorithm.</p></li>
-
-   <li><p><span>Queue a task</span> to <span>fire a progress
-   event</span> named <code title="event-media-loadend">loadend</code> at
-   the <span>media element</span>, in the context of the <span
-   title="fetch">fetching process</span> started by this instance of
-   this algorithm.</p></li>
-
-   <li><p>Finally, abort the overall <span
+   <li><p>If the user agent ever reaches this step (which can only
+   happen if the entire resource gets loaded and kept available):
+   abort the overall <span
    title="concept-media-load-algorithm">resource selection
    algorithm</span>.</p></li>
 
@@ -26184,11 +26159,6 @@
      <td>The user agent is intentionally not currently fetching <span>media data</span>, but does not have the entire <span>media resource</span> downloaded.
      <td><code title="dom-media-networkState">networkState</code> equals <code title="dom-media-NETWORK_IDLE">NETWORK_IDLE</code>
     <tr>
-     <td><dfn title="event-media-load"><code>load</code></dfn>
-     <td><code>ProgressEvent</code> <a href="#refsPROGRESS">[PROGRESS]</a>
-     <td>The user agent finishes fetching the entire <span>media resource</span>.
-     <td><code title="dom-media-networkState">networkState</code> equals <code title="dom-media-NETWORK_LOADED">NETWORK_LOADED</code>
-    <tr>
      <td><dfn title="event-media-abort"><code>abort</code></dfn>
      <td><code>ProgressEvent</code> <a href="#refsPROGRESS">[PROGRESS]</a>
      <td>The user agent stops fetching the <span>media data</span> before it is completely downloaded, but not due to an error.
@@ -26199,12 +26169,12 @@
      <td><code>ProgressEvent</code> <a href="#refsPROGRESS">[PROGRESS]</a>
      <td>An error occurs while fetching the <span>media data</span>.
      <td><code title="dom-media-error">error</code> is an object with the code <code title="dom-MediaError-MEDIA_ERR_NETWORK">MEDIA_ERR_NETWORK</code> or higher.
-         <code title="dom-media-networkState">networkState</code> equals either <code title="dom-media-NETWORK_EMPTY">NETWORK_EMPTY</code> or <code title="dom-media-NETWORK_LOADED">NETWORK_LOADED</code>, depending on when the download was aborted.
+         <code title="dom-media-networkState">networkState</code> equals either <code title="dom-media-NETWORK_EMPTY">NETWORK_EMPTY</code> or <code title="dom-media-NETWORK_IDLE">NETWORK_IDLE</code>, depending on when the download was aborted.
     <tr>
      <td><dfn title="event-media-loadend"><code>loadend</code></dfn>
      <td><code>ProgressEvent</code> <a href="#refsPROGRESS">[PROGRESS]</a>
      <td>The user agent stops fetching the <span>media data</span>, for whatever reason.
-     <td>One of <code title="event-media-load">load</code>, <code title="event-media-abort">abort</code>, or <code title="event-media-error">error</code> has just fired.
+     <td>One of <code title="event-media-abort">abort</code> or <code title="event-media-error">error</code> has just fired.
     <tr>
      <td><dfn title="event-media-emptied"><code>emptied</code></dfn>
      <td><code>Event</code>




More information about the Commit-Watchers mailing list