Skip to content

Commit

Permalink
[] (0) Introduce HTMLUnknownElement.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@3505 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jul 31, 2009
1 parent 090a9f7 commit fa21be6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
12 changes: 9 additions & 3 deletions index
Expand Up @@ -71,7 +71,7 @@
<div class=head>
<p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<h1>HTML 5</h1>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-date:-01-jan-1901>Draft Standard &mdash; 30 July 2009</h2>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-date:-01-jan-1901>Draft Standard &mdash; 31 July 2009</h2>
<p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
Expand Down Expand Up @@ -7519,13 +7519,19 @@ interface <dfn id=htmldocument>HTMLDocument</dfn> {
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>
};

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.</p>

<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.</p>



<h4 id=global-attributes><span class=secno>3.3.3 </span><dfn>Global attributes</dfn></h4>
Expand Down Expand Up @@ -61591,7 +61597,7 @@ document.body.appendChild(text);

<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>

Expand Down
10 changes: 8 additions & 2 deletions source
Expand Up @@ -7605,13 +7605,19 @@ interface <dfn>HTMLDocument</dfn> {
attribute <span>Function</span> <span title="handler-ontimeupdate">ontimeupdate</span>;
attribute <span>Function</span> <span title="handler-onvolumechange">onvolumechange</span>;
attribute <span>Function</span> <span title="handler-onwaiting">onwaiting</span>;
};</pre>
};

interface <dfn>HTMLUnknownElement</dfn> : <span>HTMLElement</span> { };</pre>

<p>The <code>HTMLElement</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.</p>

<p>The <code>HTMLUnknownElement</code> interface must be used for
<span>HTML elements</span> that are not defined by this
specification.</p>



<h4><dfn>Global attributes</dfn></h4>
Expand Down Expand Up @@ -75718,7 +75724,7 @@ document.body.appendChild(text);

<p>The interface appropriate for an element in the <span>HTML
namespace</span> that is not defined in this specification is
<code>HTMLElement</code>. Element in other namespaces whose
<code>HTMLUnknownElement</code>. Element in other namespaces whose
interface is not defined by that namespace's specification must use
the interface <code>Element</code>.</p>

Expand Down

0 comments on commit fa21be6

Please sign in to comment.