svg2: reproduce use of (same) for event names

details:   https://svgwg.org/hg/svg2/rev/aa262a4102af
branches:  
changeset: 575:aa262a4102af
user:      Richard Schwerdtfeger <schwer@us.ibm.com>
date:      Fri Dec 06 15:03:57 2013 -0600
description:
reproduce use of (same) for event names

diffstat:

 master/interact.html |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (54 lines):

diff --git a/master/interact.html b/master/interact.html
--- a/master/interact.html
+++ b/master/interact.html
@@ -201,46 +201,46 @@ required to fire for every element.</p>
         <th>Event name and description</th>
         <th>DOM3 or UI Event name</th>
         <th>Event category</th>
         <th>Event attribute name</th>
       </tr>
       <tr>
         <td id="FocusEvent"><p class="event-name"><strong>focus</strong></p>
           <p>Occurs when an element receives focus. The focus must be given to the element before the dispatch of this event type.</p></td>
-        <td>focus</td>
+        <td>(same)</td>
         <td><a
        href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#interface-FocusEvent">
         FocusEvent</a></td>
         <td><a
         href="script.html#OnFocusEventAttribute">onfocus</a></td>
       </tr>
       <tr>
         <td id="FocusInEvent"><p class="event-name"><strong>focusin</strong></p>
           <p>Occurs when an element is about to receive focus.</p></td>
-        <td>focusin</td>
+        <td>(same)</td>
         <td><a
         href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#interface-FocusEvent">
         FocusEvent</a></td>
         <td><a
         href="script.html#OnFocusInEventAttribute">onfocusin</a></td>
       </tr>
       <tr>
         <td id="FocusOutEvent"><p class="event-name"><strong>focusout</strong></p>
         <p>Occurs when an element is about to lose focus. The event must be dispatched to before the element loses focus. The element must be the element which is about to lose focus</p></td>
-        <td>focusout</td>
+        <td>(same)</td>
         <td><a
         href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#interface-FocusEvent">
         FocusEvent</a></td>
         <td><a
         href="script.html#OnFocusOutEventAttribute">onfocusout</a></td>
       </tr>
       <tr>
         <td id="BlurEvent"><p class="event-name"><strong>blur</strong></p>        <p>Occurs when an element loses focus. The focus must be taken from the element before the dispatch of this event type.</p></td>
-        <td>blur</td>
+        <td>(same)</td>
         <td><a
         href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#interface-FocusEvent">
         FocusEvent</a></td>
         <td><a
         href="script.html#OnBlurEventAttribute">onblur</a></td>
       </tr>
 
       <tr>

Received on Friday, 6 December 2013 21:06:19 UTC