svg2: more DOM3 reference cleanup

details:   https://svgwg.org/hg/svg2/rev/76560878be90
branches:  
changeset: 568:76560878be90
user:      Richard Schwerdtfeger <schwer@us.ibm.com>
date:      Wed Nov 20 13:19:29 2013 -0600
description:
more DOM3 reference cleanup

diffstat:

 master/interact.html |  8 ++++----
 master/svgdom.html   |  9 +++++----
 2 files changed, 9 insertions(+), 8 deletions(-)

diffs (84 lines):

diff --git a/master/interact.html b/master/interact.html
--- a/master/interact.html
+++ b/master/interact.html
@@ -57,18 +57,18 @@ the SVG language:</p>
 
 <p>Related information can be found in other chapters:</p>
 
 <ul>
   <li>hyperlinks are discussed in <a href="linking.html">Links</a></li>
 
   <li>scripting and event attributes are discussed in <a href="script.html">Scripting</a></li>
 
-  <li>SVG's relationship to DOM2 events is discussed in
-  <a href="svgdom.html#RelationshipWithDOM2Events">Relationship with DOM2 event model</a></li>
+  <li>SVG's relationship to DOM3 events is discussed in
+  <a href="svgdom.html#RelationshipWithDOM3andUIEvents">Relationship with DOM3 and UI Events</a></li>
 
   <li>animation is discussed in <a href="animate.html">Animation</a></li>
 </ul>
 
 <h2 id="SVGEvents">Complete list of supported events</h2>
 
 <div class="annotation svg2-requirement">
   <table>
@@ -539,18 +539,18 @@ that graphic element can be the target e
 event.) When an element is not displayed (i.e., when the
 <a>'display'</a> property on that element
 or one of its ancestors has a value of <span
 class="prop-value">none</span>), that element cannot be the
 target of pointer events.</p>
 
 <p>If a target element for the pointer event exists, then
 the event is dispatched to that element according to the
-normal <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-flow'>event flow</a>
-([<a href='refs.html#ref-DOM2EVENTS'>DOM2EVENTS</a>], section 1.2).
+normal <a href='http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#event-flow'>event flow</a>
+([<a href='refs.html#ref-DOM3EVENTS'>DOM3EVENTS</a>], section 1.2).
 Note, however, that if the target element is in a
 <a>'use'</a> element shadow tree, that the event flow
 will include <a>SVGElementInstance</a> objects.  See
 <a href='struct.html#UseElement'>The <span class='element-name'>'use'</span> element</a>
 for details.</p>
 
 <p>If a target element for the pointer event does not exist,
 then the event is ignored.</p>
diff --git a/master/svgdom.html b/master/svgdom.html
--- a/master/svgdom.html
+++ b/master/svgdom.html
@@ -230,30 +230,31 @@ version number for the given feature.</p
 
 <p>The SVG DOM supports select all interfaces defined in, and
 the following event types from,
 <a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/">DOM Level 3 Events</a>
 [<a href="refs.html#ref-DOM3EVENTS">DOM3EVENTS</a>]:</p>
 
 <ul>
   <li>
-    These <a href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/">User Interface events</a>
+    These <a href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-focusevent">Focus events</a>
     ([<a href="refs.html#ref-DOM3EVENTS">DOM3EVENTS</a>], section 1.6.1):
     <ul>
-      <li><a href="interact.html#FocusInEvent">DOMFocusIn</a></li>
-      <li><a href="interact.html#FocusOutEvent">DOMFocusOut</a></li>
+      <li><a href="interact.html#FocusInEvent">focusin</a></li>
+      <li><a href="interact.html#FocusOutEvent">focusout</a></li>
+      <li><a href="interact.html#FocusEvent">focus</a></li>
+      <li><a href="interact.html#BlurEvent">blur</a></li>
     </ul>
   </li>
   <li>
     These <a href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-keyboardevents">keyboard events</a>
     ([<a href="refs.html#ref-DOM3EVENTS">DOM3EVENTS</a>], section 1.6.1):
     <ul>
 
       <li><a href="interact.html#KeyDownEvent">keydown</a></li>
-       <li><a href="interact.html#KeyPressEvent">keyupress</a></li>
       <li><a href="interact.html#KeyUpEvent">keyup</a></li>
     </ul>
   </li>
 
   <li>
     These <a href="http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-mouseevents">mouse events</a>
     ([<a href="refs.html#ref-DOM3EVENTS">DOM3EVENTS</a>], section 5.2.3):
     <ul>

Received on Wednesday, 20 November 2013 19:21:46 UTC