[html5] r3315 - [e] (0) All interfaces for elements are supposed to inherit from HTMLElement.

whatwg at whatwg.org whatwg at whatwg.org
Thu Jun 25 00:02:18 PDT 2009


Author: ianh
Date: 2009-06-25 00:02:16 -0700 (Thu, 25 Jun 2009)
New Revision: 3315

Modified:
   index
   source
Log:
[e] (0) All interfaces for elements are supposed to inherit from HTMLElement.

Modified: index
===================================================================
--- index	2009-06-24 11:55:54 UTC (rev 3314)
+++ index	2009-06-25 07:02:16 UTC (rev 3315)
@@ -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-—-date:-01-jan-1901>Draft Standard — 24 June 2009</h2>
+   <h2 class="no-num no-toc" id=draft-standard-—-date:-01-jan-1901>Draft Standard — 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>
@@ -70050,7 +70050,7 @@
   <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>;
@@ -70159,7 +70159,7 @@
   <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>;
@@ -70231,7 +70231,7 @@
   <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) -->
@@ -70324,7 +70324,7 @@
   <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>
 
@@ -70351,7 +70351,7 @@
   <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) -->

Modified: source
===================================================================
--- source	2009-06-24 11:55:54 UTC (rev 3314)
+++ source	2009-06-25 07:02:16 UTC (rev 3315)
@@ -82695,7 +82695,7 @@
   <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>;
@@ -82816,7 +82816,7 @@
   <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>;
@@ -82906,7 +82906,7 @@
   <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) -->
@@ -83014,7 +83014,7 @@
   <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>
 
@@ -83047,7 +83047,7 @@
   <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) -->




More information about the Commit-Watchers mailing list