Fixing all WebIDL blocks that use the "any?" type to be simply "any" (the ? is not allowed).
--- a/html/DOM3-Events.html Thu May 03 07:32:18 2012 +0900
+++ b/html/DOM3-Events.html Sat May 05 02:08:09 2012 +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 <span class="2012-05-02">02 May 2012</span></h2>
+ <h2 id="Overview-W3C-doctype">W3C Editor's Draft <span class="2012-05-04">04 May 2012</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.226">http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.226</a></dd>
+ <dd><a href="http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.227">http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.227</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.225">http://dev.w3.org/cvsweb/~checkout~/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.225</a></dd>
+ <dd><a href="http://dev.w3.org/cvsweb/~checkout~/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.226">http://dev.w3.org/cvsweb/~checkout~/2006/webapi/DOM-Level-3-Events/html/DOM3-Events.html?rev=1.226</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>
@@ -1134,7 +1134,7 @@
<span class="comment">// Introduced in DOM Level 3:</span>
interface <a href="#events-CustomEvent">CustomEvent</a> : <a href="#events-Event">Event</a>
{
- readonly attribute any? <a href="#events-CustomEvent-detail">detail</a>;
+ readonly attribute any <a href="#events-CustomEvent-detail">detail</a>;
};
</code></pre>
</dd>
@@ -6821,7 +6821,7 @@
void <a href="#events-event-type-initCustomEvent">initCustomEvent</a>(DOMString <a href="#events-CustomEvent-initparam-typeArg">typeArg</a>,
boolean <a href="#events-CustomEvent-initparam-canBubbleArg">canBubbleArg</a>,
boolean <a href="#events-CustomEvent-initparam-cancelableArg">cancelableArg</a>,
- any? <a href="#events-CustomEvent-initparam-detailArg">detailArg</a>);
+ any <a href="#events-CustomEvent-initparam-detailArg">detailArg</a>);
};
<span class="comment">// Suggested initCustomEvent replacement initializer:</span>
@@ -6831,7 +6831,7 @@
boolean cancelable = false;
<span class="comment">// Attributes for CustomEvent:</span>
- any? detail = null;
+ any detail = null;
};</code></pre>
</dd><dd>
<pre class="idl" id="idl-interface-UIEvent-initializers"><code>