Skip to content

Commit

Permalink
[giow] (0) Remove stream.onreadystatechange
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@5958 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Mar 18, 2011
1 parent 8e7cc05 commit 6a3e853
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 48 deletions.
16 changes: 1 addition & 15 deletions complete.html
Expand Up @@ -71250,7 +71250,6 @@ <h3 id=stream-api><span class=secno>9.3 </span>Stream API</h3>
const unsigned short <a href=#dom-stream-live title=dom-stream-LIVE>LIVE</a> = 1;
const unsigned short <a href=#dom-stream-ended title=dom-stream-ENDED>ENDED</a> = 2;
readonly attribute unsigned short <a href=#dom-stream-readystate title=dom-stream-readyState>readyState</a>;
attribute <a href=#function>Function</a> <a href=#handler-stream-onreadystatechange title=handler-stream-onreadystatechange>onreadystatechange</a>;
attribute <a href=#function>Function</a> <a href=#handler-stream-onended title=handler-stream-onended>onended</a>;
};
<a href=#stream>Stream</a> implements <a href=#eventtarget>EventTarget</a>;
Expand Down Expand Up @@ -71368,9 +71367,6 @@ <h3 id=stream-api><span class=secno>9.3 </span>Stream API</h3>

<li><p>Set the object's <code title=dom-stream-readyState><a href=#dom-stream-readystate>readyState</a></code> attribute to <code title=dom-stream-ENDED><a href=#dom-stream-ended>ENDED</a></code> (2).</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-readystatechange><a href=#event-readystatechange>readystatechange</a></code> at the
object.</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-stream-ended>ended</code> at the object.</li>

</ol><p>If the end of the stream was reached due to a user request, the
Expand Down Expand Up @@ -71419,9 +71415,6 @@ <h3 id=stream-api><span class=secno>9.3 </span>Stream API</h3>

<li><p>Set the object's <code title=dom-stream-readyState><a href=#dom-stream-readystate>readyState</a></code> attribute to <code title=dom-stream-ENDED><a href=#dom-stream-ended>ENDED</a></code> (2).</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-readystatechange><a href=#event-readystatechange>readystatechange</a></code> at the
object.</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-stream-ended>ended</code> at the object.</li>

</ol><hr><p>When a <code><a href=#generatedstream>GeneratedStream</a></code> object's <dfn id=dom-stream-pause title=dom-stream-pause><code>pause()</code></dfn> method is
Expand All @@ -71443,9 +71436,6 @@ <h3 id=stream-api><span class=secno>9.3 </span>Stream API</h3>

<li><p>Set the object's <code title=dom-stream-readyState><a href=#dom-stream-readystate>readyState</a></code> attribute to <code title=dom-stream-PAUSED><a href=#dom-stream-paused>PAUSED</a></code> (3).</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-readystatechange><a href=#event-readystatechange>readystatechange</a></code> at the
object.</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-stream-pause>pause</code> at the object.</li>

</ol><p>When a <code><a href=#generatedstream>GeneratedStream</a></code> object's <dfn id=dom-stream-resume title=dom-stream-resume><code>resume()</code></dfn> method is
Expand All @@ -71460,9 +71450,6 @@ <h3 id=stream-api><span class=secno>9.3 </span>Stream API</h3>

<li><p>Set the object's <code title=dom-stream-readyState><a href=#dom-stream-readystate>readyState</a></code> attribute to <code title=dom-stream-LIVE><a href=#dom-stream-live>LIVE</a></code> (1).</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-readystatechange><a href=#event-readystatechange>readystatechange</a></code> at the
object.</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-stream-play>play</code> at the object.</li>

</ol><hr><p>The <a href=#task-source>task source</a> for the <a href=#concept-task title=concept-task>tasks</a> queued for the <code title=dom-stream-stop><a href=#dom-stream-stop>stop()</a></code>, <code title=dom-stream-pause><a href=#dom-stream-pause>pause()</a></code>, and <code title=dom-stream-resume><a href=#dom-stream-resume>resume()</a></code> methods is the <a href=#dom-manipulation-task-source>DOM
Expand All @@ -71474,8 +71461,7 @@ <h3 id=stream-api><span class=secno>9.3 </span>Stream API</h3>
all objects implementing the <code><a href=#stream>Stream</a></code> interface:</p>

<table><thead><tr><th><a href=#event-handlers title="event handlers">Event handler</a> <th><a href=#event-handler-event-type>Event handler event type</a>
<tbody><tr><td><dfn id=handler-stream-onreadystatechange title=handler-stream-onreadystatechange><code>onreadystatechange</code></dfn> <td> <code title=event-stream-readystatechange>readystatechange</code>
<tr><td><dfn id=handler-stream-onended title=handler-stream-onended><code>onended</code></dfn> <td> <code title=event-stream-ended>ended</code>
<tbody><tr><td><dfn id=handler-stream-onended title=handler-stream-onended><code>onended</code></dfn> <td> <code title=event-stream-ended>ended</code>
</table><p>The following are the additional <a href=#event-handlers>event handlers</a> (and
their corresponding <a href=#event-handler-event-type title="event handler event type">event
handler event types</a>) that must be supported, as IDL
Expand Down
16 changes: 1 addition & 15 deletions index
Expand Up @@ -71259,7 +71259,6 @@ interface <dfn id=navigatorusermediaerrorcallback>NavigatorUserMediaErrorCallbac
const unsigned short <a href=#dom-stream-live title=dom-stream-LIVE>LIVE</a> = 1;
const unsigned short <a href=#dom-stream-ended title=dom-stream-ENDED>ENDED</a> = 2;
readonly attribute unsigned short <a href=#dom-stream-readystate title=dom-stream-readyState>readyState</a>;
attribute <a href=#function>Function</a> <a href=#handler-stream-onreadystatechange title=handler-stream-onreadystatechange>onreadystatechange</a>;
attribute <a href=#function>Function</a> <a href=#handler-stream-onended title=handler-stream-onended>onended</a>;
};
<a href=#stream>Stream</a> implements <a href=#eventtarget>EventTarget</a>;
Expand Down Expand Up @@ -71377,9 +71376,6 @@ interface <dfn id=generatedstream>GeneratedStream</dfn> : <a href=#stream>Stream

<li><p>Set the object's <code title=dom-stream-readyState><a href=#dom-stream-readystate>readyState</a></code> attribute to <code title=dom-stream-ENDED><a href=#dom-stream-ended>ENDED</a></code> (2).</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-readystatechange><a href=#event-readystatechange>readystatechange</a></code> at the
object.</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-stream-ended>ended</code> at the object.</li>

</ol><p>If the end of the stream was reached due to a user request, the
Expand Down Expand Up @@ -71428,9 +71424,6 @@ interface <dfn id=generatedstream>GeneratedStream</dfn> : <a href=#stream>Stream

<li><p>Set the object's <code title=dom-stream-readyState><a href=#dom-stream-readystate>readyState</a></code> attribute to <code title=dom-stream-ENDED><a href=#dom-stream-ended>ENDED</a></code> (2).</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-readystatechange><a href=#event-readystatechange>readystatechange</a></code> at the
object.</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-stream-ended>ended</code> at the object.</li>

</ol><hr><p>When a <code><a href=#generatedstream>GeneratedStream</a></code> object's <dfn id=dom-stream-pause title=dom-stream-pause><code>pause()</code></dfn> method is
Expand All @@ -71452,9 +71445,6 @@ interface <dfn id=generatedstream>GeneratedStream</dfn> : <a href=#stream>Stream

<li><p>Set the object's <code title=dom-stream-readyState><a href=#dom-stream-readystate>readyState</a></code> attribute to <code title=dom-stream-PAUSED><a href=#dom-stream-paused>PAUSED</a></code> (3).</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-readystatechange><a href=#event-readystatechange>readystatechange</a></code> at the
object.</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-stream-pause>pause</code> at the object.</li>

</ol><p>When a <code><a href=#generatedstream>GeneratedStream</a></code> object's <dfn id=dom-stream-resume title=dom-stream-resume><code>resume()</code></dfn> method is
Expand All @@ -71469,9 +71459,6 @@ interface <dfn id=generatedstream>GeneratedStream</dfn> : <a href=#stream>Stream

<li><p>Set the object's <code title=dom-stream-readyState><a href=#dom-stream-readystate>readyState</a></code> attribute to <code title=dom-stream-LIVE><a href=#dom-stream-live>LIVE</a></code> (1).</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-readystatechange><a href=#event-readystatechange>readystatechange</a></code> at the
object.</li>

<li><p><a href=#fire-a-simple-event>Fire a simple event</a> named <code title=event-stream-play>play</code> at the object.</li>

</ol><hr><p>The <a href=#task-source>task source</a> for the <a href=#concept-task title=concept-task>tasks</a> queued for the <code title=dom-stream-stop><a href=#dom-stream-stop>stop()</a></code>, <code title=dom-stream-pause><a href=#dom-stream-pause>pause()</a></code>, and <code title=dom-stream-resume><a href=#dom-stream-resume>resume()</a></code> methods is the <a href=#dom-manipulation-task-source>DOM
Expand All @@ -71483,8 +71470,7 @@ interface <dfn id=generatedstream>GeneratedStream</dfn> : <a href=#stream>Stream
all objects implementing the <code><a href=#stream>Stream</a></code> interface:</p>

<table><thead><tr><th><a href=#event-handlers title="event handlers">Event handler</a> <th><a href=#event-handler-event-type>Event handler event type</a>
<tbody><tr><td><dfn id=handler-stream-onreadystatechange title=handler-stream-onreadystatechange><code>onreadystatechange</code></dfn> <td> <code title=event-stream-readystatechange>readystatechange</code>
<tr><td><dfn id=handler-stream-onended title=handler-stream-onended><code>onended</code></dfn> <td> <code title=event-stream-ended>ended</code>
<tbody><tr><td><dfn id=handler-stream-onended title=handler-stream-onended><code>onended</code></dfn> <td> <code title=event-stream-ended>ended</code>
</table><p>The following are the additional <a href=#event-handlers>event handlers</a> (and
their corresponding <a href=#event-handler-event-type title="event handler event type">event
handler event types</a>) that must be supported, as IDL
Expand Down
18 changes: 0 additions & 18 deletions source
Expand Up @@ -81253,7 +81253,6 @@ interface <dfn>NavigatorUserMediaErrorCallback</dfn> {
const unsigned short <span title="dom-stream-LIVE">LIVE</span> = 1;
const unsigned short <span title="dom-stream-ENDED">ENDED</span> = 2;
readonly attribute unsigned short <span title="dom-stream-readyState">readyState</span>;
attribute <span>Function</span> <span title="handler-stream-onreadystatechange">onreadystatechange</span>;
attribute <span>Function</span> <span title="handler-stream-onended">onended</span>;
};
<span>Stream</span> implements <span>EventTarget</span>;
Expand Down Expand Up @@ -81386,10 +81385,6 @@ interface <dfn>GeneratedStream</dfn> : <span>Stream</span> {
title="dom-stream-readyState">readyState</code> attribute to <code
title="dom-stream-ENDED">ENDED</code> (2).</p></li>

<li><p><span>Fire a simple event</span> named <code
title="event-readystatechange">readystatechange</code> at the
object.</p></li>

<li><p><span>Fire a simple event</span> named <code
title="event-stream-ended">ended</code> at the object.</p></li>

Expand Down Expand Up @@ -81457,10 +81452,6 @@ interface <dfn>GeneratedStream</dfn> : <span>Stream</span> {
title="dom-stream-readyState">readyState</code> attribute to <code
title="dom-stream-ENDED">ENDED</code> (2).</p></li>

<li><p><span>Fire a simple event</span> named <code
title="event-readystatechange">readystatechange</code> at the
object.</p></li>

<li><p><span>Fire a simple event</span> named <code
title="event-stream-ended">ended</code> at the object.</p></li>

Expand Down Expand Up @@ -81493,10 +81484,6 @@ interface <dfn>GeneratedStream</dfn> : <span>Stream</span> {
title="dom-stream-readyState">readyState</code> attribute to <code
title="dom-stream-PAUSED">PAUSED</code> (3).</p></li>

<li><p><span>Fire a simple event</span> named <code
title="event-readystatechange">readystatechange</code> at the
object.</p></li>

<li><p><span>Fire a simple event</span> named <code
title="event-stream-pause">pause</code> at the object.</p></li>

Expand All @@ -81520,10 +81507,6 @@ interface <dfn>GeneratedStream</dfn> : <span>Stream</span> {
title="dom-stream-readyState">readyState</code> attribute to <code
title="dom-stream-LIVE">LIVE</code> (1).</p></li>

<li><p><span>Fire a simple event</span> named <code
title="event-readystatechange">readystatechange</code> at the
object.</p></li>

<li><p><span>Fire a simple event</span> named <code
title="event-stream-play">play</code> at the object.</p></li>

Expand All @@ -81549,7 +81532,6 @@ interface <dfn>GeneratedStream</dfn> : <span>Stream</span> {
<thead>
<tr><th><span title="event handlers">Event handler</span> <th><span>Event handler event type</span>
<tbody>
<tr><td><dfn title="handler-stream-onreadystatechange"><code>onreadystatechange</code></dfn> <td> <code title="event-stream-readystatechange">readystatechange</code>
<tr><td><dfn title="handler-stream-onended"><code>onended</code></dfn> <td> <code title="event-stream-ended">ended</code>
</table>

Expand Down

0 comments on commit 6a3e853

Please sign in to comment.