- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 03 Jul 2010 23:12:32 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/src In directory hutz:/tmp/cvs-serv32041/src Modified Files: attributes.html Log Message: finished adding remaining descriptions for all event-handler attributes that are allowed globally Index: attributes.html =================================================================== RCS file: /sources/public/html5/markup/src/attributes.html,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- attributes.html 3 Jul 2010 05:46:07 -0000 1.16 +++ attributes.html 3 Jul 2010 23:12:30 -0000 1.17 @@ -271,7 +271,9 @@ </dl> <dl> <dt id="scripting.attr.oncontextmenu" class="new">oncontextmenu</dt> - <dd>User requested the context menu for element.</dd> + <dd>User requested the + <a href="#context-menu">context menu</a> + for element.</dd> </dl> <dl> <dt id="scripting.attr.ondblclick">ondblclick</dt> @@ -433,5 +435,67 @@ <dt id="scripting.attr.onreadystatechange" class="new">onreadystatechange</dt> <dd>Element and all its subresources have finished loading.</dd> </dl> + <dl> + <dt id="scripting.attr.onscroll">onscroll</dt> + <dd>Element or document view was scrolled.</dd> + </dl> + <dl> + <dt id="scripting.attr.onseeked" class="new">onseeked</dt> + <dd>The value of the IDL attribute <code>seeking</code> + changed to <code>false</code> (a seek operation on the + video or audio element ended).</dd> + </dl> + <dl> + <dt id="scripting.attr.onseeking" class="new">onseeking</dt> + <dd>The value of the IDL attribute <code>seeking</code> + changed to <code>true</code>, and the seek operation on + the video or audio elements is taking long enough that the + UA has time to fire the <code>seeking</code> event.</dd> + </dl> + <dl> + <dt id="scripting.attr.onselect">onselect</dt> + <dd>User selected some text.</dd> + </dl> + <dl> + <dt id="scripting.attr.onshow" class="new">onshow</dt> + <dd>User requested the element be shown as a + <a href="#context-menu">context menu</a>.</dd> + </dl> + <dl> + <dt id="scripting.attr.onstalled" class="new">onstalled</dt> + <dd>UA is attempting to fetch media data for the video or + audio element, but that data is not forthcoming.</dd> + </dl> + <dl> + <dt id="scripting.attr.onsubmit">onsubmit</dt> + <dd>The + <a href="#form" class="element">form</a> + element was submitted.</dd> + </dl> + <dl> + <dt id="scripting.attr.onsuspend" class="new">onsuspend</dt> + <dd>UA is intentionally not currently fetching media data + for the video or audio element, but does not yet have the + entire contents downloaded.</dd> + </dl> + <dl> + <dt id="scripting.attr.ontimeupdate" class="new">ontimeupdate</dt> + <dd>The current playback position of the video or audio + element changed either as part of normal playback, or in an + especially interesting way (for example, discontinuously).</dd> + </dl> + <dl> + <dt id="scripting.attr.onvolumechange" class="new">volumechange</dt> + <dd>Either the DOM attribute <code>volume</code> + or the DOM attribute <code>muted</code> + on the video or audio element has been changed.</dd> + </dl> + <dl> + <dt id="scripting.attr.onwaiting" class="new">onwaiting</dt> + <dd>Playback of the video or audio element has stopped + because the next frame is not yet available (but UA + agent expects that frame to become available in due + course).</dd> + </dl> </div> </section>
Received on Saturday, 3 July 2010 23:12:35 UTC