- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 13 Apr 2010 08:47:18 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv12061 Modified Files: Overview.html Log Message: autocomplete isn't boolean, it's enumerated. oops. (whatwg r5030) Index: Overview.html =================================================================== 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:47:20 UTC