html5/markup/src attributes.html,1.15,1.16

Update of /sources/public/html5/markup/src
In directory hutz:/tmp/cvs-serv23175/src

Modified Files:
	attributes.html 
Log Message:
added more descriptions for event-handler attributes

Index: attributes.html
===================================================================
RCS file: /sources/public/html5/markup/src/attributes.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- attributes.html	1 Jul 2010 21:16:12 -0000	1.15
+++ attributes.html	3 Jul 2010 05:46:07 -0000	1.16
@@ -236,15 +236,15 @@
   <div id="event-attrs">
     <dl>
       <dt id="scripting.attr.onabort" class="new">onabort</dt>
-      <dd>Load of target was aborted by the user.</dd>
+      <dd>Load of element was aborted by the user.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.onblur">onblur</dt>
-      <dd>Target lost focus.</dd>
+      <dd>Element lost focus.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.oncanplay" class="new">oncanplay</dt>
-      <dd>The UA can resume playback of media data for this target
+      <dd>The UA can resume playback of media data for this
         video or audio element, but estimates that if playback
         were to be started now, the video or audio could not be
         rendered at the current playback rate up to its end
@@ -254,95 +254,184 @@
     <dl>
       <dt id="scripting.attr.oncanplaythrough" class="new">oncanplaythrough</dt>
       <dd>The UA estimates that if playback were to be started
-        now, the target video or audio element could be rendered
+        now, the video or audio element could be rendered
         at the current playback rate all the way to its end
         without having to stop for further buffering</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.onchange">onchange</dt>
-      <dd>User committed a change to the value of target (form
+      <dd>User committed a change to the value of element (form
         control).</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.onclick">onclick</dt>
       <dd>User pressed pointer button down and released pointer
-        button over target, or otherwise activated the pointer in
-      a manner that simulates such an action.</dd>
+        button over element, or otherwise activated the pointer in
+        a manner that emulates such an action.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.oncontextmenu" class="new">oncontextmenu</dt>
-      <dd>User requested the context menu for target.</dd>
+      <dd>User requested the context menu for element.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.ondblclick">ondblclick</dt>
-      <dd>User clicked pointer button twice over target, or
+      <dd>User clicked pointer button twice over element, or
         otherwise activated the pointer in a manner that simulates
         such an action.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.ondrag" class="new">ondrag</dt>
-      <dd>User is continuing to drag target.</dd>
+      <dd>User is continuing to drag element.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.ondragend" class="new">ondragend</dt>
-      <dd>User ended dragging target.</dd>
+      <dd>User ended dragging element.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.ondragenter" class="new">ondragenter</dt>
-      <dd>User’s drag operation entered drop target.</dd>
+      <dd>User’s drag operation entered element.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.ondragleave" class="new">ondragleave</dt>
-      <dd>User’s drag operation left drop target.</dd>
+      <dd>User’s drag operation left element.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.ondragover" class="new">ondragover</dt>
-      <dd>User is continuing drag operation over drop target.</dd>
+      <dd>User is continuing drag operation over element.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.ondragstart" class="new">ondragstart</dt>
-      <dd>User started dragging target.</dd>
+      <dd>User started dragging element.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.ondrop" class="new">ondrop</dt>
-      <dd>User completed drop operation over drop target.</dd>
+      <dd>User completed drop operation over element.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.ondurationchange" class="new">ondurationchange</dt>
-      <dd>The <code>duration</code> DOM attribute on the target
+      <dd>The DOM attribute <code>duration</code> on the
         video or audio element has been updated.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.onemptied" class="new">onemptied</dt>
-      <dd>Target video or audio element has returned to the
+      <dd>Element video or audio element has returned to the
         uninitialized state.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.onended" class="new">onended</dt>
-      <dd>The end of the target video or audio element has been
+      <dd>The end of the video or audio element has been
         reached.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.onerror" class="new">onerror</dt>
-      <dd>Target failed to load properly.</dd>
+      <dd>Element failed to load properly.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.onfocus">onfocus</dt>
-      <dd>Target received focus.</dd>
+      <dd>Element received focus.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.onformchange" class="new">onformchange</dt>
       <dd>User committed a change to the value of a form control
-        in the form to which the target belongs.</dd>
+        in the form to which the element belongs.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.onforminput" class="new">onforminput</dt>
       <dd>User changed the value of a form control in the form to
-        which the target belongs.</dd>
+        which the element belongs.</dd>
     </dl>
     <dl>
       <dt id="scripting.attr.oninput">oninput</dt>
-      <dd>User changed the value of a target (form control).</dd>
+      <dd>User changed the value of element (form control).</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.oninvalid" class="new">oninvalid</dt>
+      <dd>Element (form control) did not meet validity constraints.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onkeydown">onkeydown</dt>
+      <dd>User pressed down a key.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onkeypress">onkeypress</dt>
+      <dd>User pressed down a key that is associated with a
+        character value.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onkeyup">onkeyup</dt>
+      <dd>User release a key.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onload">onload</dt>
+      <dd>Element finished loading.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onloadeddata" class="new">onloadeddata</dt>
+      <dd>UA can render the video or audio element at the
+        current playback position for the first time.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onloadedmetadata" class="new">onloadedmetadata</dt>
+      <dd>UA has just determined the duration and dimensions of
+        the video or audio element.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onloadstart" class="new">onloadstart</dt>
+      <dd>UA has begun looking for media data in the video or
+        audio element.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onmousedown">onmousedown</dt>
+      <dd>User pressed down pointer button over element.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onmousemove">onmousemove</dt>
+      <dd>User moved mouse.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onmouseout">onmouseout</dt>
+      <dd>User moved pointer off boundaries of element.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onmouseover">onmouseover</dt>
+      <dd>User moved pointer into boundaries of element or one of
+        its descendant elements.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onmouseup">onmouseup</dt>
+      <dd>User released pointer button over element.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onmousewheel">onmousewheel</dt>
+      <dd>User rotated wheel of mouse or other device in a manner
+        that emulates such an action.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onpause" class="new">onpause</dt>
+      <dd>User has paused playback of the video or audio element.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onplay" class="new">onplay</dt>
+      <dd>UA has initiated playback of the video or audio element.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onplaying" class="new">onplaying</dt>
+      <dd>Playback of the video or audio element has started.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onprogress" class="new">onprogress</dt>
+      <dd>UA is fetching media data for the video or audio
+        element.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onratechange" class="new">onratechange</dt>
+      <dd>Either the DOM attribute <code>defaultPlaybackRate</code>
+        or the DOM attribute <code>playbackRate</code>
+        on the video or audio element has been updated.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onreadystatechange" class="new">onreadystatechange</dt>
+      <dd>Element and all its subresources have finished loading.</dd>
     </dl>
   </div>
 </section>

Received on Saturday, 3 July 2010 05:46:11 UTC