- From: poot <cvsmail@w3.org>
- Date: Tue, 13 Apr 2010 17:47:40 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: autocomplete isn't boolean, it's enumerated. oops. (whatwg r5030) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4045&r2=1.4046&f=h http://html5.org/tools/web-apps-tracker?from=5029&to=5030 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.4045 retrieving revision 1.4046 diff -u -d -r1.4045 -r1.4046 --- Overview.html 13 Apr 2010 08:43:02 -0000 1.4045 +++ Overview.html 13 Apr 2010 08:47:14 -0000 1.4046 @@ -26196,7 +26196,7 @@ interface <dfn id="htmlformelement">HTMLFormElement</dfn> : <a href="#htmlelement">HTMLElement</a> { attribute DOMString <a href="#dom-form-acceptcharset" title="dom-form-acceptCharset">acceptCharset</a>; attribute DOMString <a href="#dom-fs-action" title="dom-fs-action">action</a>; - attribute boolean <a href="#dom-form-autocomplete" title="dom-form-autocomplete">autocomplete</a>; + attribute DOMString <a href="#dom-form-autocomplete" title="dom-form-autocomplete">autocomplete</a>; attribute DOMString <a href="#dom-fs-enctype" title="dom-fs-enctype">enctype</a>; attribute DOMString <a href="#dom-fs-method" title="dom-fs-method">method</a>; attribute DOMString <a href="#dom-form-name" title="dom-form-name">name</a>; @@ -26776,7 +26776,7 @@ <pre class="idl">interface <dfn id="htmlinputelement">HTMLInputElement</dfn> : <a href="#htmlelement">HTMLElement</a> { attribute DOMString <a href="#dom-input-accept" title="dom-input-accept">accept</a>; attribute DOMString <a href="#dom-input-alt" title="dom-input-alt">alt</a>; - attribute boolean <a href="#dom-input-autocomplete" title="dom-input-autocomplete">autocomplete</a>; + attribute DOMString <a href="#dom-input-autocomplete" title="dom-input-autocomplete">autocomplete</a>; attribute boolean <a href="#dom-fe-autofocus" title="dom-fe-autofocus">autofocus</a>; attribute boolean <a href="#dom-input-defaultchecked" title="dom-input-defaultChecked">defaultChecked</a>; attribute boolean <a href="#dom-input-checked" title="dom-input-checked">checked</a>;
Received on Tuesday, 13 April 2010 08:48:09 UTC