[html5] r4701 - [agio] (0) Looks like 'compact' is meant to be a boolean attribute, not a DOMStr [...]

whatwg at whatwg.org whatwg at whatwg.org
Sat Feb 13 03:03:29 PST 2010


Author: ianh
Date: 2010-02-13 03:03:27 -0800 (Sat, 13 Feb 2010)
New Revision: 4701

Modified:
   complete.html
   index
   source
Log:
[agio] (0) Looks like 'compact' is meant to be a boolean attribute, not a DOMString attribute.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=8788

Modified: complete.html
===================================================================
--- complete.html	2010-02-13 10:43:29 UTC (rev 4700)
+++ complete.html	2010-02-13 11:03:27 UTC (rev 4701)
@@ -83923,7 +83923,7 @@
   <code><a href=#htmldirectoryelement>HTMLDirectoryElement</a></code> interface.</p>
 
   <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>;
+           attribute boolean <a href=#dom-dir-compact title=dom-dir-compact>compact</a>;
 };</pre>
 
   <p>The <dfn id=dom-dir-compact title=dom-dir-compact><code>compact</code></dfn> IDL
@@ -83941,7 +83941,7 @@
 
   <hr><pre class=idl>[Supplemental]
 interface <a href=#htmldlistelement>HTMLDListElement</a> {
-           attribute DOMString <a href=#dom-dl-compact title=dom-dl-compact>compact</a>;
+           attribute boolean <a href=#dom-dl-compact title=dom-dl-compact>compact</a>;
 };</pre>
 
   <p>The <dfn id=dom-dl-compact title=dom-dl-compact><code>compact</code></dfn> IDL
@@ -84144,7 +84144,7 @@
 
   <hr><pre class=idl>[Supplemental]
 interface <a href=#htmlmenuelement>HTMLMenuElement</a> {
-           attribute DOMString <a href=#dom-menu-compact title=dom-menu-compact>compact</a>;
+           attribute boolean <a href=#dom-menu-compact title=dom-menu-compact>compact</a>;
 };</pre>
 
   <p>The <dfn id=dom-menu-compact title=dom-menu-compact><code>compact</code></dfn> IDL
@@ -84224,7 +84224,7 @@
 
   <hr><pre class=idl>[Supplemental]
 interface <a href=#htmlolistelement>HTMLOListElement</a> {
-           attribute DOMString <a href=#dom-ol-compact title=dom-ol-compact>compact</a>;
+           attribute boolean <a href=#dom-ol-compact title=dom-ol-compact>compact</a>;
            attribute DOMString <a href=#dom-ol-type title=dom-ol-type>type</a>;
 };</pre>
 
@@ -84412,7 +84412,7 @@
 
   <hr><pre class=idl>[Supplemental]
 interface <a href=#htmlulistelement>HTMLUListElement</a> {
-           attribute DOMString <a href=#dom-ul-compact title=dom-ul-compact>compact</a>;
+           attribute boolean <a href=#dom-ul-compact title=dom-ul-compact>compact</a>;
            attribute DOMString <a href=#dom-ul-type title=dom-ul-type>type</a>;
 };</pre>
 

Modified: index
===================================================================
--- index	2010-02-13 10:43:29 UTC (rev 4700)
+++ index	2010-02-13 11:03:27 UTC (rev 4701)
@@ -78220,7 +78220,7 @@
   <code><a href=#htmldirectoryelement>HTMLDirectoryElement</a></code> interface.</p>
 
   <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>;
+           attribute boolean <a href=#dom-dir-compact title=dom-dir-compact>compact</a>;
 };</pre>
 
   <p>The <dfn id=dom-dir-compact title=dom-dir-compact><code>compact</code></dfn> IDL
@@ -78238,7 +78238,7 @@
 
   <hr><pre class=idl>[Supplemental]
 interface <a href=#htmldlistelement>HTMLDListElement</a> {
-           attribute DOMString <a href=#dom-dl-compact title=dom-dl-compact>compact</a>;
+           attribute boolean <a href=#dom-dl-compact title=dom-dl-compact>compact</a>;
 };</pre>
 
   <p>The <dfn id=dom-dl-compact title=dom-dl-compact><code>compact</code></dfn> IDL
@@ -78441,7 +78441,7 @@
 
   <hr><pre class=idl>[Supplemental]
 interface <a href=#htmlmenuelement>HTMLMenuElement</a> {
-           attribute DOMString <a href=#dom-menu-compact title=dom-menu-compact>compact</a>;
+           attribute boolean <a href=#dom-menu-compact title=dom-menu-compact>compact</a>;
 };</pre>
 
   <p>The <dfn id=dom-menu-compact title=dom-menu-compact><code>compact</code></dfn> IDL
@@ -78521,7 +78521,7 @@
 
   <hr><pre class=idl>[Supplemental]
 interface <a href=#htmlolistelement>HTMLOListElement</a> {
-           attribute DOMString <a href=#dom-ol-compact title=dom-ol-compact>compact</a>;
+           attribute boolean <a href=#dom-ol-compact title=dom-ol-compact>compact</a>;
            attribute DOMString <a href=#dom-ol-type title=dom-ol-type>type</a>;
 };</pre>
 
@@ -78709,7 +78709,7 @@
 
   <hr><pre class=idl>[Supplemental]
 interface <a href=#htmlulistelement>HTMLUListElement</a> {
-           attribute DOMString <a href=#dom-ul-compact title=dom-ul-compact>compact</a>;
+           attribute boolean <a href=#dom-ul-compact title=dom-ul-compact>compact</a>;
            attribute DOMString <a href=#dom-ul-type title=dom-ul-type>type</a>;
 };</pre>
 

Modified: source
===================================================================
--- source	2010-02-13 10:43:29 UTC (rev 4700)
+++ source	2010-02-13 11:03:27 UTC (rev 4701)
@@ -93339,7 +93339,7 @@
   <code>HTMLDirectoryElement</code> interface.</p>
 
   <pre class="idl">interface <dfn>HTMLDirectoryElement</dfn> : <span>HTMLElement</span> {
-           attribute DOMString <span title="dom-dir-compact">compact</span>;
+           attribute boolean <span title="dom-dir-compact">compact</span>;
 };</pre>
 
   <p>The <dfn title="dom-dir-compact"><code>compact</code></dfn> IDL
@@ -93361,7 +93361,7 @@
 
   <pre class="idl">[Supplemental]
 interface <span>HTMLDListElement</span> {
-           attribute DOMString <span title="dom-dl-compact">compact</span>;
+           attribute boolean <span title="dom-dl-compact">compact</span>;
 };</pre>
 
   <p>The <dfn title="dom-dl-compact"><code>compact</code></dfn> IDL
@@ -93619,7 +93619,7 @@
 
   <pre class="idl">[Supplemental]
 interface <span>HTMLMenuElement</span> {
-           attribute DOMString <span title="dom-menu-compact">compact</span>;
+           attribute boolean <span title="dom-menu-compact">compact</span>;
 };</pre>
 
   <p>The <dfn title="dom-menu-compact"><code>compact</code></dfn> IDL
@@ -93721,7 +93721,7 @@
 
   <pre class="idl">[Supplemental]
 interface <span>HTMLOListElement</span> {
-           attribute DOMString <span title="dom-ol-compact">compact</span>;
+           attribute boolean <span title="dom-ol-compact">compact</span>;
            attribute DOMString <span title="dom-ol-type">type</span>;
 };</pre>
 
@@ -93943,7 +93943,7 @@
 
   <pre class="idl">[Supplemental]
 interface <span>HTMLUListElement</span> {
-           attribute DOMString <span title="dom-ul-compact">compact</span>;
+           attribute boolean <span title="dom-ul-compact">compact</span>;
            attribute DOMString <span title="dom-ul-type">type</span>;
 };</pre>
 




More information about the Commit-Watchers mailing list