Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[e] (0) All interfaces for elements are supposed to inherit from HTML…
…Element.

git-svn-id: http://svn.whatwg.org/webapps@3315 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jun 25, 2009
1 parent 20b3eed commit cd8cc74
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions index
Expand Up @@ -66,7 +66,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; 24 June 2009</h2>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-date:-01-jan-1901>Draft Standard &mdash; 25 June 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>
<dl><dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -70050,7 +70050,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
<p>The <code><a href=#frameset>frameset</a></code> element must implement the
<code><a href=#htmlframesetelement>HTMLFrameSetElement</a></code> interface.</p>

<pre class=idl>interface <dfn id=htmlframesetelement>HTMLFrameSetElement</dfn> {
<pre class=idl>interface <dfn id=htmlframesetelement>HTMLFrameSetElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
attribute DOMString <a href=#dom-frameset-cols title=dom-frameset-cols>cols</a>;
attribute DOMString <a href=#dom-frameset-rows title=dom-frameset-rows>rows</a>;
attribute <a href=#function>Function</a> <a href=#handler-window-onafterprint title=handler-window-onafterprint>onafterprint</a>;
Expand Down Expand Up @@ -70159,7 +70159,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
<p>The <code><a href=#frame>frame</a></code> element must implement the
<code><a href=#htmlframeelement>HTMLFrameElement</a></code> interface.</p>

<pre class=idl>interface <dfn id=htmlframeelement>HTMLFrameElement</dfn> {
<pre class=idl>interface <dfn id=htmlframeelement>HTMLFrameElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
attribute DOMString <a href=#dom-frame-frameborder title=dom-frame-frameBorder>frameBorder</a>;
attribute DOMString <a href=#dom-frame-longdesc title=dom-frame-longDesc>longDesc</a>;
attribute DOMString <a href=#dom-frame-marginheight title=dom-frame-marginHeight>marginHeight</a>;
Expand Down Expand Up @@ -70231,7 +70231,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
<hr><p>The <code><a href=#basefont>basefont</a></code> element must implement the
<code><a href=#htmlbasefontelement>HTMLBaseFontElement</a></code> interface.</p>

<pre class=idl>interface <dfn id=htmlbasefontelement>HTMLBaseFontElement</dfn> {
<pre class=idl>interface <dfn id=htmlbasefontelement>HTMLBaseFontElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
attribute DOMString <a href=#dom-basefont-color title=dom-basefont-color>color</a>;
attribute DOMString <a href=#dom-basefont-face title=dom-basefont-face>face</a>;
attribute long <a href=#dom-basefont-size title=dom-basefont-size>size</a>; <!-- yes, long, not DOMString (so says DOM2 HTML) -->
Expand Down Expand Up @@ -70324,7 +70324,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
<hr><p>The <code><a href=#dir>dir</a></code> element must implement the
<code><a href=#htmldirectoryelement>HTMLDirectoryElement</a></code> interface.</p>

<pre class=idl>interface <dfn id=htmldirectoryelement>HTMLDirectoryElement</dfn> {
<pre class=idl>interface <dfn id=htmldirectoryelement>HTMLDirectoryElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
attribute DOMString <a href=#dom-dir-compact title=dom-dir-compact>compact</a>;
};</pre>

Expand All @@ -70351,7 +70351,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
<hr><p>The <code><a href=#font>font</a></code> element must implement the
<code><a href=#htmlfontelement>HTMLFontElement</a></code> interface.</p>

<pre class=idl>interface <dfn id=htmlfontelement>HTMLFontElement</dfn> {
<pre class=idl>interface <dfn id=htmlfontelement>HTMLFontElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
attribute DOMString <a href=#dom-font-color title=dom-font-color>color</a>;
attribute DOMString <a href=#dom-font-face title=dom-font-face>face</a>;
attribute DOMString <a href=#dom-font-size title=dom-font-size>size</a>; <!-- yes, DOMString, not long (so says DOM2 HTML) -->
Expand Down
10 changes: 5 additions & 5 deletions source
Expand Up @@ -82695,7 +82695,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
<p>The <code>frameset</code> element must implement the
<code>HTMLFrameSetElement</code> interface.</p>

<pre class="idl">interface <dfn>HTMLFrameSetElement</dfn> {
<pre class="idl">interface <dfn>HTMLFrameSetElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-frameset-cols">cols</span>;
attribute DOMString <span title="dom-frameset-rows">rows</span>;
attribute <span>Function</span> <span title="handler-window-onafterprint">onafterprint</span>;
Expand Down Expand Up @@ -82816,7 +82816,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
<p>The <code>frame</code> element must implement the
<code>HTMLFrameElement</code> interface.</p>

<pre class="idl">interface <dfn>HTMLFrameElement</dfn> {
<pre class="idl">interface <dfn>HTMLFrameElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-frame-frameBorder">frameBorder</span>;
attribute DOMString <span title="dom-frame-longDesc">longDesc</span>;
attribute DOMString <span title="dom-frame-marginHeight">marginHeight</span>;
Expand Down Expand Up @@ -82906,7 +82906,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
<p>The <code>basefont</code> element must implement the
<code>HTMLBaseFontElement</code> interface.</p>

<pre class="idl">interface <dfn>HTMLBaseFontElement</dfn> {
<pre class="idl">interface <dfn>HTMLBaseFontElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-basefont-color">color</span>;
attribute DOMString <span title="dom-basefont-face">face</span>;
attribute long <span title="dom-basefont-size">size</span>; <!-- yes, long, not DOMString (so says DOM2 HTML) -->
Expand Down Expand Up @@ -83014,7 +83014,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
<p>The <code>dir</code> element must implement the
<code>HTMLDirectoryElement</code> interface.</p>

<pre class="idl">interface <dfn>HTMLDirectoryElement</dfn> {
<pre class="idl">interface <dfn>HTMLDirectoryElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-dir-compact">compact</span>;
};</pre>

Expand Down Expand Up @@ -83047,7 +83047,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
<p>The <code>font</code> element must implement the
<code>HTMLFontElement</code> interface.</p>

<pre class="idl">interface <dfn>HTMLFontElement</dfn> {
<pre class="idl">interface <dfn>HTMLFontElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-font-color">color</span>;
attribute DOMString <span title="dom-font-face">face</span>;
attribute DOMString <span title="dom-font-size">size</span>; <!-- yes, DOMString, not long (so says DOM2 HTML) -->
Expand Down

0 comments on commit cd8cc74

Please sign in to comment.