--- a/html/DOM3-Events.html Wed Sep 16 13:40:05 2009 +0900
+++ b/html/DOM3-Events.html Thu Sep 17 11:51:36 2009 +0900
@@ -160,11 +160,11 @@
</p>
<h1 id="Overview-title">Document Object Model (DOM) Level 3 Events Specification</h1>
<!-- @@@ -->
- <h2 id="Overview-W3C-doctype">W3C Editor's Draft <span class="date">15 September 2009</span></h2>
+ <h2 id="Overview-W3C-doctype">W3C Editor's Draft <span class="date">16 September 2009</span></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.85">http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.85</a>
+ <a href="http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.86">http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.86</a>
</dd>
<dt>Latest stable version:</dt>
<dd>
@@ -172,7 +172,7 @@
</dd>
<dt>Previous version:</dt>
<dd>
- <a href="http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.84">http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.84</a>
+ <a href="http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.85">http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.85</a>
</dd>
<dt>Editor's Draft:</dt>
<dd>
@@ -210,7 +210,7 @@
knowledge of a patent which the individual believes contains <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential
Claim(s)</a> must disclose the information in accordance with <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section
6 of the W3C Patent Policy</a>.</p>
- <p id="working-draft">This is the <span class="date">15 September 2009</span> Editor's Draft version of the "Document Object Model (DOM) Level 3 Events" specification. This document was previously published as a W3C Note, pending further feedback from implementers, and is now being revised to reflect the current state of implementation. It is expected that this specification will progress to Recommendation status.</p>
+ <p id="working-draft">This is the <span class="date">16 September 2009</span> Editor's Draft version of the "Document Object Model (DOM) Level 3 Events" specification. This document was previously published as a W3C Note, pending further feedback from implementers, and is now being revised to reflect the current state of implementation. It is expected that this specification will progress to Recommendation status.</p>
<p id="this-document-is-produced-by-the-web-app">This document is produced
by the <a href="http://www.w3.org/2008/webapps/">Web Applications WG</a>,
part of the <a href="http://www.w3.org/2006/rwc/Activity">Rich Web
@@ -1039,14 +1039,6 @@
in <a class="noxref" href="#events-Events-EventListener">EventListener</a> listener,
in boolean useCapture);
</div>
-
-<div class="proposal">
- // Introduced in DOM Level 3:
- void <a class="noxref" href="#events-Events-EventTarget-listen">listen</a>(in DOMString type,
- in <a class="noxref" href="#events-Events-EventListener">EventListener</a> listener);
- void <a class="noxref" href="#events-Events-EventTarget-unlisten">unlisten</a>(in DOMString type,
- in <a class="noxref" href="#events-Events-EventListener">EventListener</a> listener);
-</div>
};
</pre>
</div>
@@ -1095,27 +1087,6 @@
<!-- method -->
</dd>
- <dt class="proposal"><code class="method-name"><a id="events-Events-EventTargetGroup-listen">listen</a></code> introduced in <strong class="since">DOM Level 3</strong></dt>
- <dd class="proposal">
- <div class="method">Registers an event listener on the target and bubbling phases of the DOM event flow. <span class="note"><strong>Note:</strong> <code>EventTarget.unlisten()</code> is a shorthand method for the <a href="#events-Events-EventTarget-addEventListener"><code>EventTarget.addEventListener()</code></a> method, and functions identically to that method with the exception that it cannot be used to register events on the capture phase of the DOM event flow.</span>
- <div class="parameters"><strong>Parameters</strong>
- <div class="paramtable">
- <dl>
- <dt><code class="parameter-name">type</code> of type <code>DOMString</code></dt>
- <dd>Refer to the <a href="#events-Events-EventTarget-addEventListener"><code>EventTarget.addEventListener()</code></a> method for a description of this parameter.<br /></dd>
- <dt><code class="parameter-name">listener</code> of type <a href="#events-Events-EventListener"><code>EventListener</code></a></dt>
- <dd>Refer to the <a href="#events-Events-EventTarget-addEventListener"><code>EventTarget.addEventListener()</code></a> method for a description of this parameter.<br /></dd>
- </dl>
- </div>
- </div>
- <!-- parameters -->
- <div><strong>No Return Value</strong></div>
- <div><strong>No Exceptions</strong></div>
- </div>
-<!-- method -->
- </dd>
-
-
<dt><code class="method-name"><a id="events-Events-EventTarget-dispatchEvent">dispatchEvent</a></code> modified in <strong class="version">DOM Level 3</strong></dt>
<dd>
<div class="method">Dispatches an event into the implementation's event model. The <a class="def" href="#glossary-event-target">event target</a> of the event shall be the <code>EventTarget</code> object on which <code>dispatchEvent</code> is called.
@@ -1164,27 +1135,6 @@
<!-- method -->
</dd>
-
- <dt class="proposal"><code class="method-name"><a id="events-Events-EventTargetGroup-unlisten">unlisten</a></code> introduced in <strong class="since">DOM Level 3</strong></dt>
- <dd class="proposal">
- <div class="method">Removes an event listener. Calling <code>unlisten</code> with arguments which do not identify any currently registered <a href="#events-Events-EventListener"><code>EventListener</code></a> on the <code>EventTarget</code> has no effect. <span class="note"><strong>Note:</strong> <code>EventTarget.unlisten()</code> is a shorthand method for the <a href="#events-Events-EventTarget-removeEventListener"><code>EventTarget.removeEventListener()</code></a> method, and may be used to remove event listeners registered with either <a href="#events-Events-EventTarget-addEventListener"><code>EventTarget.addEventListener()</code></a> or <a href="#events-Events-EventTarget-listen"><code>EventTarget.listen()</code></a> with the same parameters.</span>
- <div class="parameters"><strong>Parameters</strong>
- <div class="paramtable">
- <dl>
- <dt><code class="parameter-name">type</code> of type <code>DOMString</code></dt>
- <dd>Refer to the <a href="#events-Events-EventTarget-removeEventListener"><code>EventTarget.removeEventListener()</code></a> method for a description of this parameter.<br /></dd>
- <dt><code class="parameter-name">listener</code> of type <a href="#events-Events-EventListener"><code>EventListener</code></a></dt>
- <dd>Refer to the <a href="#events-Events-EventTarget-removeEventListener"><code>EventTarget.removeEventListener()</code></a> method for a description of this parameter.<br /></dd>
- </dl>
- </div>
- </div>
- <!-- parameters -->
- <div><strong>No Return Value</strong></div>
- <div><strong>No Exceptions</strong></div>
- </div>
-<!-- method -->
- </dd>
-
</dl>
</dd>
</dl>
@@ -3435,6 +3385,7 @@
</li>
<li><a class="eventtype" href="#event-type-keyup"><code>keyup</code></a></li>
</ol>
+<text id="text_1" x="10" y="25" font-size="18" fill="crimson" text-anchor="middle"></text>
<!-- keydown -->
<div class="event-definition assert must">