[html5] r6103 - [e] (0) xref Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12302

whatwg at whatwg.org whatwg at whatwg.org
Fri May 6 12:50:33 PDT 2011


Author: ianh
Date: 2011-05-06 12:50:32 -0700 (Fri, 06 May 2011)
New Revision: 6103

Modified:
   complete.html
   index
   source
Log:
[e] (0) xref
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12302

Modified: complete.html
===================================================================
--- complete.html	2011-05-06 19:49:04 UTC (rev 6102)
+++ complete.html	2011-05-06 19:50:32 UTC (rev 6103)
@@ -3375,6 +3375,7 @@
     <ul class=brief><li><dfn id=event><code>Event</code></dfn> interface</li>
      <li><dfn id=eventtarget><code>EventTarget</code></dfn> interface</li>
      <li><dfn id=uievent><code>UIEvent</code></dfn> interface</li>
+     <li><dfn id=mouseevent><code>MouseEvent</code></dfn> interface</li>
 
      <li><dfn id=event-click title=event-click><code>click</code></dfn> event</li>
 
@@ -52249,10 +52250,10 @@
   <dl class=switch><dt>If the user requested a context menu using a pointing device</dt>
 
    <dd><p>The user agent must dispatch an event with the name <code title=event-contextmenu>contextmenu</code>, that bubbles and is
-   cancelable, and that uses the <code>MouseEvent</code> interface, at
+   cancelable, and that uses the <code><a href=#mouseevent>MouseEvent</a></code> interface, at
    the element for which the menu was requested. The context
    information of the event must be set to the same values as the last
-   <code>MouseEvent</code> user interaction event that was dispatched
+   <code><a href=#mouseevent>MouseEvent</a></code> user interaction event that was dispatched
    as part of the gesture that that was interpreted as a request for
    the context menu.</dd>
 
@@ -67257,7 +67258,7 @@
   mouse event named <var title="">e</var></dfn> means that an event
   with the name <var title="">e</var>, which does not bubble (except
   where otherwise stated) and is not cancelable (except where
-  otherwise stated), and which uses the <code>MouseEvent</code>
+  otherwise stated), and which uses the <code><a href=#mouseevent>MouseEvent</a></code>
   interface, must be dispatched at the given target. The event object
   must have its <code title="">screenX</code>, <code title="">screenY</code>, <code title="">clientX</code>, <code title="">clientY</code>, and <code title="">button</code> attributes
   set to 0, its <code title="">ctrlKey</code>, <code title="">shiftKey</code>, <code title="">altKey</code>, and <code title="">metaKey</code> attributes set according to the current
@@ -71172,7 +71173,7 @@
   <p>The drag-and-drop processing model involves several events. They
   all use the <code><a href=#dragevent>DragEvent</a></code> interface.</p>
 
-  <pre class=idl>interface <dfn id=dragevent>DragEvent</dfn> : <span>MouseEvent</span> {
+  <pre class=idl>interface <dfn id=dragevent>DragEvent</dfn> : <a href=#mouseevent>MouseEvent</a> {
   readonly attribute <a href=#datatransfer>DataTransfer</a> <a href=#dom-dragevent-datatransfer title=dom-DragEvent-dataTransfer>dataTransfer</a>;
 
   void <a href=#dom-dragevent-initdragevent title=dom-DragEvent-initDragEvent>initDragEvent</a>(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in any dummyArg<!-- used to be viewArg, back when we had views -->, in long detailArg, in long screenXArg, in long screenYArg, in long clientXArg, in long clientYArg, in boolean ctrlKeyArg, in boolean altKeyArg, in boolean shiftKeyArg, in boolean metaKeyArg, in unsigned short buttonArg, in EventTarget relatedTargetArg, in <a href=#datatransfer>DataTransfer</a> dataTransferArg);

Modified: index
===================================================================
--- index	2011-05-06 19:49:04 UTC (rev 6102)
+++ index	2011-05-06 19:50:32 UTC (rev 6103)
@@ -3400,6 +3400,7 @@
     <ul class=brief><li><dfn id=event><code>Event</code></dfn> interface</li>
      <li><dfn id=eventtarget><code>EventTarget</code></dfn> interface</li>
      <li><dfn id=uievent><code>UIEvent</code></dfn> interface</li>
+     <li><dfn id=mouseevent><code>MouseEvent</code></dfn> interface</li>
 
      <li><dfn id=event-click title=event-click><code>click</code></dfn> event</li>
 
@@ -52277,10 +52278,10 @@
   <dl class=switch><dt>If the user requested a context menu using a pointing device</dt>
 
    <dd><p>The user agent must dispatch an event with the name <code title=event-contextmenu>contextmenu</code>, that bubbles and is
-   cancelable, and that uses the <code>MouseEvent</code> interface, at
+   cancelable, and that uses the <code><a href=#mouseevent>MouseEvent</a></code> interface, at
    the element for which the menu was requested. The context
    information of the event must be set to the same values as the last
-   <code>MouseEvent</code> user interaction event that was dispatched
+   <code><a href=#mouseevent>MouseEvent</a></code> user interaction event that was dispatched
    as part of the gesture that that was interpreted as a request for
    the context menu.</dd>
 
@@ -67305,7 +67306,7 @@
   mouse event named <var title="">e</var></dfn> means that an event
   with the name <var title="">e</var>, which does not bubble (except
   where otherwise stated) and is not cancelable (except where
-  otherwise stated), and which uses the <code>MouseEvent</code>
+  otherwise stated), and which uses the <code><a href=#mouseevent>MouseEvent</a></code>
   interface, must be dispatched at the given target. The event object
   must have its <code title="">screenX</code>, <code title="">screenY</code>, <code title="">clientX</code>, <code title="">clientY</code>, and <code title="">button</code> attributes
   set to 0, its <code title="">ctrlKey</code>, <code title="">shiftKey</code>, <code title="">altKey</code>, and <code title="">metaKey</code> attributes set according to the current
@@ -71226,7 +71227,7 @@
   <p>The drag-and-drop processing model involves several events. They
   all use the <code><a href=#dragevent>DragEvent</a></code> interface.</p>
 
-  <pre class=idl>interface <dfn id=dragevent>DragEvent</dfn> : <span>MouseEvent</span> {
+  <pre class=idl>interface <dfn id=dragevent>DragEvent</dfn> : <a href=#mouseevent>MouseEvent</a> {
   readonly attribute <a href=#datatransfer>DataTransfer</a> <a href=#dom-dragevent-datatransfer title=dom-DragEvent-dataTransfer>dataTransfer</a>;
 
   void <a href=#dom-dragevent-initdragevent title=dom-DragEvent-initDragEvent>initDragEvent</a>(in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in any dummyArg<!-- used to be viewArg, back when we had views -->, in long detailArg, in long screenXArg, in long screenYArg, in long clientXArg, in long clientYArg, in boolean ctrlKeyArg, in boolean altKeyArg, in boolean shiftKeyArg, in boolean metaKeyArg, in unsigned short buttonArg, in EventTarget relatedTargetArg, in <a href=#datatransfer>DataTransfer</a> dataTransferArg);

Modified: source
===================================================================
--- source	2011-05-06 19:49:04 UTC (rev 6102)
+++ source	2011-05-06 19:50:32 UTC (rev 6103)
@@ -2368,6 +2368,7 @@
      <li><dfn><code>Event</code></dfn> interface</li>
      <li><dfn><code>EventTarget</code></dfn> interface</li>
      <li><dfn><code>UIEvent</code></dfn> interface</li>
+     <li><dfn><code>MouseEvent</code></dfn> interface</li>
 
      <li><dfn title="event-click"><code>click</code></dfn> event</li>
 




More information about the Commit-Watchers mailing list