- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 13 Feb 2010 11:03:36 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv13000
Modified Files:
Overview.html
Log Message:
Looks like 'compact' is meant to be a boolean attribute, not a DOMString attribute. (whatwg r4701)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3751
retrieving revision 1.3752
diff -u -d -r1.3751 -r1.3752
--- Overview.html 13 Feb 2010 10:33:17 -0000 1.3751
+++ Overview.html 13 Feb 2010 11:03:33 -0000 1.3752
@@ -63575,7 +63575,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
@@ -63593,7 +63593,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
@@ -63796,7 +63796,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
@@ -63876,7 +63876,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>
@@ -64064,7 +64064,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>
Received on Saturday, 13 February 2010 11:03:38 UTC