- From: poot <cvsmail@w3.org>
- Date: Sat, 13 Feb 2010 20:03:44 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Looks like 'compact' is meant to be a boolean attribute, not a DOMString attribute. (whatwg r4701) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.3751&r2=1.3752&f=h http://html5.org/tools/web-apps-tracker?from=4700&to=4701 =================================================================== 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:04:13 UTC