Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[e] (0) autocomplete isn't boolean, it's enumerated. oops.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=9490

git-svn-id: http://svn.whatwg.org/webapps@5030 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Apr 13, 2010
1 parent 4a05e6b commit eff6f30
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions complete.html
Expand Up @@ -32920,7 +32920,7 @@ <h4 id=the-form-element><span class=secno>4.10.3 </span>The <dfn><code>form</cod
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>;
Expand Down Expand Up @@ -33561,7 +33561,7 @@ <h4 id=the-input-element><span class=secno>4.10.7 </span>The <dfn><code>input</c
<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>;
Expand Down
4 changes: 2 additions & 2 deletions index
Expand Up @@ -32821,7 +32821,7 @@ the cell that corresponds to the values of the two dice.
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>;
Expand Down Expand Up @@ -33462,7 +33462,7 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H
<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>;
Expand Down
4 changes: 2 additions & 2 deletions source
Expand Up @@ -36316,7 +36316,7 @@ the cell that corresponds to the values of the two dice.
interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-form-acceptCharset">acceptCharset</span>;
attribute DOMString <span title="dom-fs-action">action</span>;
attribute boolean <span title="dom-form-autocomplete">autocomplete</span>;
attribute DOMString <span title="dom-form-autocomplete">autocomplete</span>;
attribute DOMString <span title="dom-fs-enctype">enctype</span>;
attribute DOMString <span title="dom-fs-method">method</span>;
attribute DOMString <span title="dom-form-name">name</span>;
Expand Down Expand Up @@ -37060,7 +37060,7 @@ interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {
<pre class="idl">interface <dfn>HTMLInputElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-input-accept">accept</span>;
attribute DOMString <span title="dom-input-alt">alt</span>;
attribute boolean <span title="dom-input-autocomplete">autocomplete</span>;
attribute DOMString <span title="dom-input-autocomplete">autocomplete</span>;
attribute boolean <span title="dom-fe-autofocus">autofocus</span>;
attribute boolean <span title="dom-input-defaultChecked">defaultChecked</span>;
attribute boolean <span title="dom-input-checked">checked</span>;
Expand Down

0 comments on commit eff6f30

Please sign in to comment.