svg2: switched mouse event reference to DOM3, removed DOMActivate and...

details:   https://svgwg.org/hg/svg2/rev/55ab50b63e2d
branches:  
changeset: 560:55ab50b63e2d
user:      Richard Schwerdtfeger <schwer@us.ibm.com>
date:      Tue Nov 19 08:45:44 2013 -0600
description:
switched mouse event reference to DOM3, removed DOMActivate and modified click to cover it being used for activation

diffstat:

 master/interact.html |  29 +++++++----------------------
 1 files changed, 7 insertions(+), 22 deletions(-)

diffs (124 lines):

diff --git a/master/interact.html b/master/interact.html
--- a/master/interact.html
+++ b/master/interact.html
@@ -219,31 +219,16 @@ required to fire for every element.</p>
         <td>DOMFocusOut</td>
         <td><a
         href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-UIEvent">
         UIEvent</a></td>
         <td><a
         href="script.html#OnFocusOutEventAttribute">onfocusout</a></td>
       </tr>
       <tr>
-        <td id="ActivateEvent"><p class="event-name"><strong>activate</strong></p>
-        <p>Occurs when an element is activated, for instance, through
-        a mouse click or a keypress. A numerical argument is
-        provided to give an indication of the type of activation
-        that occurs: 1 for a simple activation (e.g. a simple click
-        or Enter), 2 for hyperactivation (for instance a double
-        click or Shift Enter).</p></td>
-        <td>DOMActivate</td>
-        <td><a
-        href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-UIEvent">
-        UIEvent</a></td>
-        <td><a
-        href="script.html#OnActivateEventAttribute">onactivate</a></td>
-      </tr>
-      <tr>
         <td id="KeyDownEvent"><p class="event-name"><strong>keydown</strong></p>
         <p>Occurs when a key is pressed down. The keydown event type is device dependent and relies on the capabilities         of the input devices and how they are mapped in the operating system.
         </p></td>
         <td>(same)</td>
         <td><a
         href="http://www.w3.org/TR/uievents/#keyboard-event-interface">
         KeyboardEvent</a></td>
         <td><a
@@ -273,81 +258,81 @@ required to fire for every element.</p>
         href="http://www.w3.org/TR/uievents/#keyboard-event-interface">
         KeyboardEvent</a></td>
         <td><a
         href="script.html#OnKeyUpEventAttribute">onkeyup</a></td>
       </tr>
       <tr>
         <td id="ClickEvent"><p class="event-name"><strong>click</strong></p>
         <p>Occurs when the pointing device button is clicked over
-        an element. A click is defined as a mousedown and mouseup
+        an element or when the pointer is otherwise activated in a manner that simulates such an action. A click is defined as a mousedown and mouseup
         over the same screen location. The sequence of these events
         is: <code>mousedown</code>, <code>mouseup</code>,
         <code>click</code>. If multiple clicks occur at the same
         screen location, the sequence repeats with the
         <code>detail</code> attribute incrementing with each
         repetition.</p></td>
         <td>(same)</td>
         <td><a
-        href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent">
+        href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-mouseevents">
         MouseEvent</a></td>
         <td><a
         href="script.html#OnClickEventAttribute">onclick</a></td>
       </tr>
       <tr>
         <td id="MouseDownEvent"><p class="event-name"><strong>mousedown</strong></p>
         <p>Occurs when the pointing device button is pressed over
         an element.</p></td>
         <td>(same)</td>
         <td><a
-        href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent">
+        href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-mouseevents">
         MouseEvent</a></td>
         <td><a
         href="script.html#OnMouseDownEventAttribute">onmousedown</a></td>
       </tr>
       <tr>
         <td id="MouseUpEvent"><p class="event-name"><strong>mouseup</strong></p>
         <p>Occurs when the pointing device button is released over
         an element.</p></td>
         <td>(same)</td>
         <td><a
-        href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent">
+        href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-mouseevents">
         MouseEvent</a></td>
         <td><a
         href="script.html#OnMouseUpEventAttribute">onmouseup</a></td>
       </tr>
       <tr>
         <td id="MouseOverEvent"><p class="event-name"><strong>mouseover</strong></p>
         <p>Occurs when the pointing device is moved onto an
         element.</p></td>
         <td>(same)</td>
         <td><a
-        href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent">
+        href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-mouseevents">
         MouseEvent</a></td>
         <td><a
         href="script.html#OnMouseOverEventAttribute">onmouseover</a></td>
       </tr>
       <tr>
         <td id="MouseMoveEvent"><p class="event-name"><strong>mousemove</strong></p>
         <p>Occurs when the pointing device is moved while it is
         over an element.</p></td>
         <td>(same)</td>
         <td><a
-        href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent">
+        href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-mouseevents">
         MouseEvent</a></td>
         <td><a
         href="script.html#OnMouseMoveEventAttribute">onmousemove</a></td>
       </tr>
       <tr>
         <td id="MouseOutEvent"><p class="event-name"><strong>mouseout</strong></p>
         <p>Occurs when the pointing device is moved away from an
         element.</p></td>
         <td>(same)</td>
         <td><a
-        href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent">
+        href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-mouseevents">
         MouseEvent</a></td>
         <td><a
         href="script.html#OnMouseOutEventAttribute">onmouseout</a></td>
       </tr>
       <tr>
         <td id="LoadEvent"><p class="event-name"><strong>load</strong></p>
           <p>
           The load event is dispatched only to <a>structurally external elements</a> and to the

Received on Tuesday, 19 November 2013 14:48:16 UTC