- From: poot <cvsmail@w3.org>
- Date: Fri, 31 Jul 2009 09:37:37 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Introduce HTMLUnknownElement. (whatwg r3505) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2702&r2=1.2703&f=h http://html5.org/tools/web-apps-tracker?from=3504&to=3505 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2702 retrieving revision 1.2703 diff -u -d -r1.2702 -r1.2703 --- Overview.html 30 Jul 2009 23:33:23 -0000 1.2702 +++ Overview.html 31 Jul 2009 00:37:12 -0000 1.2703 @@ -175,7 +175,7 @@ <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2> <!--ZZZ:--> <!--<h2 class="no-num no-toc">W3C Working Draft 23 April 2009</h2>--> - <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 30 July 2009</h2> + <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 31 July 2009</h2> <!--:ZZZ--> <dl><!-- ZZZ: update the month/day (twice), (un)comment out <dt>This Version:</dt> @@ -273,7 +273,7 @@ track. <!--ZZZ:--> <!--This specification is the 23 April 2009 Working Draft.--> - This specification is the 30 July 2009 Editor's Draft. + This specification is the 31 July 2009 Editor's Draft. <!--:ZZZ--> </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href="http://www.whatwg.org/">WHATWG</a>. The two specifications are identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to replace (be a new version of) @@ -6790,10 +6790,14 @@ attribute <a href="#function">Function</a> <a href="#handler-ontimeupdate" title="handler-ontimeupdate">ontimeupdate</a>; attribute <a href="#function">Function</a> <a href="#handler-onvolumechange" title="handler-onvolumechange">onvolumechange</a>; attribute <a href="#function">Function</a> <a href="#handler-onwaiting" title="handler-onwaiting">onwaiting</a>; -};</pre><p>The <code><a href="#htmlelement">HTMLElement</a></code> interface holds methods and +}; + +interface <dfn id="htmlunknownelement">HTMLUnknownElement</dfn> : <a href="#htmlelement">HTMLElement</a> { };</pre><p>The <code><a href="#htmlelement">HTMLElement</a></code> interface holds methods and attributes related to a number of disparate features, and the members of this interface are therefore described in various - different sections of this specification.<h4 id="global-attributes"><span class="secno">3.3.3 </span><dfn>Global attributes</dfn></h4><p>The following attributes are common to and may be specified on + different sections of this specification.<p>The <code><a href="#htmlunknownelement">HTMLUnknownElement</a></code> interface must be used for + <a href="#html-elements">HTML elements</a> that are not defined by this + specification.<h4 id="global-attributes"><span class="secno">3.3.3 </span><dfn>Global attributes</dfn></h4><p>The following attributes are common to and may be specified on all <a href="#html-elements">HTML elements</a><span class="impl"> (even those not defined in this specification)</span>:<ul class="brief"><li><code title="attr-accesskey"><a href="#the-accesskey-attribute">accesskey</a></code></li> <li><code title="attr-class"><a href="#classes">class</a></code></li> @@ -55442,7 +55446,7 @@ <p>The interface appropriate for an element in the <a href="#html-namespace-0">HTML namespace</a> that is not defined in this specification is - <code><a href="#htmlelement">HTMLElement</a></code>. Element in other namespaces whose + <code><a href="#htmlunknownelement">HTMLUnknownElement</a></code>. Element in other namespaces whose interface is not defined by that namespace's specification must use the interface <code>Element</code>.</p>
Received on Friday, 31 July 2009 00:38:18 UTC