- From: poot <cvsmail@w3.org>
- Date: Sat, 28 Jan 2012 17:05:19 -0500
- To: public-html-diffs@w3.org
hixie: Objects with event handler attributes have to inherit from EventTarget. (whatwg r6931) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5528&r2=1.5529&f=h http://html5.org/tools/web-apps-tracker?from=6930&to=6931 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.5528 retrieving revision 1.5529 diff -u -d -r1.5528 -r1.5529 --- Overview.html 28 Jan 2012 22:02:30 -0000 1.5528 +++ Overview.html 28 Jan 2012 22:05:06 -0000 1.5529 @@ -25648,7 +25648,7 @@ </div><h6 id="audiotracklist-and-videotracklist-objects"><span class="secno">4.8.10.10.1 </span><code><a href="#audiotracklist">AudioTrackList</a></code> and <code><a href="#videotracklist">VideoTrackList</a></code> objects</h6><p>The <code><a href="#audiotracklist">AudioTrackList</a></code> and <code><a href="#videotracklist">VideoTrackList</a></code> interfaces are used by attributes defined in the previous - section.<pre class="idl">interface <dfn id="audiotracklist">AudioTrackList</dfn> { + section.<pre class="idl">interface <dfn id="audiotracklist">AudioTrackList</dfn> : <a href="#eventtarget">EventTarget</a> { readonly attribute unsigned long <a href="#dom-audiotracklist-length" title="dom-AudioTrackList-length">length</a>; getter <a href="#audiotrack">AudioTrack</a> (unsigned long index); <a href="#audiotrack">AudioTrack</a>? <a href="#dom-audiotracklist-gettrackbyid" title="dom-AudioTrackList-getTrackById">getTrackById</a>(DOMString id); @@ -25665,7 +25665,7 @@ attribute boolean <a href="#dom-audiotrack-enabled" title="dom-AudioTrack-enabled">enabled</a>; }; -interface <dfn id="videotracklist">VideoTrackList</dfn> { +interface <dfn id="videotracklist">VideoTrackList</dfn> : <a href="#eventtarget">EventTarget</a> { readonly attribute unsigned long <a href="#dom-videotracklist-length" title="dom-VideoTrackList-length">length</a>; getter <a href="#videotrack">VideoTrack</a> (unsigned long index); <a href="#videotrack">VideoTrack</a>? <a href="#dom-videotracklist-gettrackbyid" title="dom-VideoTrackList-getTrackById">getTrackById</a>(DOMString id); @@ -27557,7 +27557,7 @@ cues. Otherwise, they should be set to zero.</p> </dd> - </dl></div><h6 id="text-track-api"><span class="secno">4.8.10.12.5 </span>Text track API</h6><pre class="idl">interface <dfn id="texttracklist">TextTrackList</dfn> { + </dl></div><h6 id="text-track-api"><span class="secno">4.8.10.12.5 </span>Text track API</h6><pre class="idl">interface <dfn id="texttracklist">TextTrackList</dfn> : <a href="#eventtarget">EventTarget</a> { readonly attribute unsigned long <a href="#dom-texttracklist-length" title="dom-TextTrackList-length">length</a>; getter <a href="#texttrack">TextTrack</a> (unsigned long index);
Received on Saturday, 28 January 2012 22:05:38 UTC