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

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

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

Index: attributes.html
===================================================================
RCS file: /sources/public/html5/markup/src/attributes.html,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- attributes.html	25 Jun 2010 05:32:27 -0000	1.14
+++ attributes.html	1 Jul 2010 21:16:12 -0000	1.15
@@ -232,4 +232,117 @@
         value.</dd>
     </dl>
   </div>
+  <!-- * ===================  event-handler attributes =================== -->
+  <div id="event-attrs">
+    <dl>
+      <dt id="scripting.attr.onabort" class="new">onabort</dt>
+      <dd>Load of target was aborted by the user.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onblur">onblur</dt>
+      <dd>Target 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
+        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
+        without having to stop for further buffering of
+        content.</dd>
+    </dl>
+    <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
+        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
+        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>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.oncontextmenu" class="new">oncontextmenu</dt>
+      <dd>User requested the context menu for target.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.ondblclick">ondblclick</dt>
+      <dd>User clicked pointer button twice over target, 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>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.ondragend" class="new">ondragend</dt>
+      <dd>User ended dragging target.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.ondragenter" class="new">ondragenter</dt>
+      <dd>User’s drag operation entered drop target.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.ondragleave" class="new">ondragleave</dt>
+      <dd>User’s drag operation left drop target.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.ondragover" class="new">ondragover</dt>
+      <dd>User is continuing drag operation over drop target.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.ondragstart" class="new">ondragstart</dt>
+      <dd>User started dragging target.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.ondrop" class="new">ondrop</dt>
+      <dd>User completed drop operation over drop target.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.ondurationchange" class="new">ondurationchange</dt>
+      <dd>The <code>duration</code> DOM attribute on the target
+        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
+        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
+        reached.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onerror" class="new">onerror</dt>
+      <dd>Target failed to load properly.</dd>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.onfocus">onfocus</dt>
+      <dd>Target 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>
+    </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>
+    </dl>
+    <dl>
+      <dt id="scripting.attr.oninput">oninput</dt>
+      <dd>User changed the value of a target (form control).</dd>
+    </dl>
+  </div>
 </section>

Received on Thursday, 1 July 2010 21:16:19 UTC