removed setCapture, deferred until AIDE spec
authorschepers
Thu, 22 Apr 2010 03:16:13 +0900
changeset 254 bf8d3a2390d6
parent 253 8730aaed4bc8
child 255 748bf3b3838a
removed setCapture, deferred until AIDE spec
html/DOM3-Events.html
--- a/html/DOM3-Events.html	Wed Apr 21 03:46:15 2010 +0900
+++ b/html/DOM3-Events.html	Thu Apr 22 03:16:13 2010 +0900
@@ -25,16 +25,16 @@
       </p>
       <h1 id="Overview-title">Document Object Model (DOM) Level 3 Events Specification</h1>
 <!-- @@@ -->
-      <h2 id="Overview-W3C-doctype">W3C Editor's Draft <time datetime="2010-04-20">20 April 2010</time></h2>
+      <h2 id="Overview-W3C-doctype">W3C Editor's Draft <time datetime="2010-04-21">21 April 2010</time></h2>
       <dl>
         <dt>This version:</dt>
-        <dd><a href="http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.130">http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.130</a></dd>
+        <dd><a href="http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.131">http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.131</a></dd>
 
         <dt>Latest stable version:</dt>
         <dd><a href="http://www.w3.org/TR/DOM-Level-3-Events">http://www.w3.org/TR/DOM-Level-3-Events</a></dd>
 
         <dt>Previous version:</dt>
-        <dd><a href="http://dev.w3.org/cvsweb/~checkout~/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.129">http://dev.w3.org/cvsweb/~checkout~/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.129</a></dd>
+        <dd><a href="http://dev.w3.org/cvsweb/~checkout~/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.130">http://dev.w3.org/cvsweb/~checkout~/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.130</a></dd>
 
         <dt>Editor's Draft:</dt>
         <dd><a href="http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html">http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html</a></dd>
@@ -2533,8 +2533,6 @@
                                                 in <a href="#events-Events-EventTarget">EventTarget</a> relatedTargetArg);
   // Introduced in DOM Level 3:
   boolean                            <a href="#events-Events-MouseEvent-getModifierState">getModifierState</a>(in DOMString keyArg);
-  void                               <a href="#events-event-type-setCapture">setCapture</a>(in boolean containerCaptureArg);
-  void                               <a href="#events-event-type-releaseCapture">releaseCapture</a>();
 };
               </code></pre>
             </dd>
@@ -2620,44 +2618,6 @@
                 </dd>
 
 
-                <dt><code class="method-name"><a id="events-event-type-setCapture">setCapture</a></code> introduced in <strong class="since">DOM Level 3</strong></dt>
-                <dd>
-                  <div class="method">
-                    <p>Used on an event target object to redirect all applicable events originating in the current document to that object as the <a class="def" href="#glossary-proximal-event-target">proximal event target</a>, with that event target object's <a class="def" href="#glossary-propagation-path">propagation path</a>, until the event ends, the current document loses focus, or the <code class="method-name"><a href="#events-event-type-releaseCapture">releaseCapture</a></code> method is called.</p>
-                    
-                    <p class="issue" id="issue-setCapture"><strong>Issue "setCapture":</strong> Should this be available on other event interfaces, such as the FocusEvent, TextEvent and KeyboardEvent interfaces, or just the MouseEvent interface?  Is this defined in HTML5, as well?</p>
-                    
-                    <!-- <p class="note" id="note-stopImmediatePropagation-default"><strong>Note:</strong> </p> -->
-                    <div>
-                      <strong>Parameters</strong>
-                      <div class="paramtable">
-                        <dl>
-                          <dt><code class="parameter-name">containerCaptureArg</code> of type <code>boolean</code></dt>
-                          <dd>
-                            <p>Indicates whether a container element captures all events of its descendant nodes, if <code>true</code> (the default), or whether the descendant nodes can fire their own events, if <code>false</code>.</p>
-                          </dd>
-                        </dl>
-                      </div>
-                    </div>
-
-                    <div><strong>No Return Value</strong></div>
-
-                    <div><strong>No Exceptions</strong></div>
-                  </div>
-                </dd>
-
-                <dt><code class="method-name"><a id="events-event-type-releaseCapture">releaseCapture</a></code> introduced in <strong class="since">DOM Level 3</strong></dt>
-                <dd>
-                  <div class="method">
-                    <p>Used on an event target object or on the document object to end the capture of events started by the <code class="method-name"><a href="#events-event-type-setCapture">setCapture</a></code> method.</p>
-                    <div><strong>No Parameters</strong></div>
-
-                    <div><strong>No Return Value</strong></div>
-
-                    <div><strong>No Exceptions</strong></div>
-                  </div>
-                </dd>
-
                 <dt>
                   <code class="method-name">
                     <a id="events-event-type-initMouseEvent">initMouseEvent</a>