[html5] r5030 - [e] (0) autocomplete isn't boolean, it's enumerated. oops. Fixing http://www.w3. [...]
whatwg at whatwg.org
whatwg at whatwg.org
Tue Apr 13 01:46:38 PDT 2010
Author: ianh
Date: 2010-04-13 01:46:36 -0700 (Tue, 13 Apr 2010)
New Revision: 5030
Modified:
complete.html
index
source
Log:
[e] (0) autocomplete isn't boolean, it's enumerated. oops.
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=9490
Modified: complete.html
===================================================================
--- complete.html 2010-04-13 08:42:58 UTC (rev 5029)
+++ complete.html 2010-04-13 08:46:36 UTC (rev 5030)
@@ -32920,7 +32920,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>;
@@ -33561,7 +33561,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>;
Modified: index
===================================================================
--- index 2010-04-13 08:42:58 UTC (rev 5029)
+++ index 2010-04-13 08:46:36 UTC (rev 5030)
@@ -32821,7 +32821,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>;
@@ -33462,7 +33462,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>;
Modified: source
===================================================================
--- source 2010-04-13 08:42:58 UTC (rev 5029)
+++ source 2010-04-13 08:46:36 UTC (rev 5030)
@@ -36316,7 +36316,7 @@
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>;
@@ -37060,7 +37060,7 @@
<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>;
More information about the Commit-Watchers
mailing list