[html5] r5220 - [giow] (2) HTMLInputElement.type should be limited to know values.
whatwg at whatwg.org
whatwg at whatwg.org
Wed Jul 28 16:03:19 PDT 2010
Author: ianh
Date: 2010-07-28 16:03:17 -0700 (Wed, 28 Jul 2010)
New Revision: 5220
Modified:
complete.html
index
source
Log:
[giow] (2) HTMLInputElement.type should be limited to know values.
Modified: complete.html
===================================================================
--- complete.html 2010-07-28 22:35:51 UTC (rev 5219)
+++ complete.html 2010-07-28 23:03:17 UTC (rev 5220)
@@ -38172,7 +38172,7 @@
the last value it was set to. On setting, it must be set to the new
value. It has no effect except for changing the appearance of <a href=#checkbox-state title=attr-input-type-checkbox>checkbox</a> controls.</p>
- <p>The <dfn id=dom-input-accept title=dom-input-accept><code>accept</code></dfn>, <dfn id=dom-input-alt title=dom-input-alt><code>alt</code></dfn>, <dfn id=dom-input-autocomplete title=dom-input-autocomplete><code>autocomplete</code></dfn>, <dfn id=dom-input-max title=dom-input-max><code>max</code></dfn>, <dfn id=dom-input-min title=dom-input-min><code>min</code></dfn>, <dfn id=dom-input-multiple title=dom-input-multiple><code>multiple</code></dfn>, <dfn id=dom-input-pattern title=dom-input-pattern><code>pattern</code></dfn>, <dfn id=dom-input-placeholder title=dom-input-placeholder><code>placeholder</code></dfn>, <dfn id=dom-input-required title=dom-input-required><code>required</code></dfn>, <dfn id=dom-input-size title=dom-input-size><code>size</code></dfn>, <dfn id=dom-input-src title=dom-input-src><code>src</code></dfn>, <dfn id=dom-input-step title=dom-input-step><code>step</code></dfn>, and <dfn id=dom-input-type title=dom-input-type><code>type</code></dfn> IDL attr
ibutes must
+ <p>The <dfn id=dom-input-accept title=dom-input-accept><code>accept</code></dfn>, <dfn id=dom-input-alt title=dom-input-alt><code>alt</code></dfn>, <dfn id=dom-input-autocomplete title=dom-input-autocomplete><code>autocomplete</code></dfn>, <dfn id=dom-input-max title=dom-input-max><code>max</code></dfn>, <dfn id=dom-input-min title=dom-input-min><code>min</code></dfn>, <dfn id=dom-input-multiple title=dom-input-multiple><code>multiple</code></dfn>, <dfn id=dom-input-pattern title=dom-input-pattern><code>pattern</code></dfn>, <dfn id=dom-input-placeholder title=dom-input-placeholder><code>placeholder</code></dfn>, <dfn id=dom-input-required title=dom-input-required><code>required</code></dfn>, <dfn id=dom-input-size title=dom-input-size><code>size</code></dfn>, <dfn id=dom-input-src title=dom-input-src><code>src</code></dfn>, and <dfn id=dom-input-step title=dom-input-step><code>step</code></dfn> IDL attributes must
<a href=#reflect>reflect</a> the respective content attributes of the same
name. The <dfn id=dom-input-maxlength title=dom-input-maxLength><code>maxLength</code></dfn> IDL
attribute must <a href=#reflect>reflect</a> the <code title=attr-input-maxlength><a href=#attr-input-maxlength>maxlength</a></code> content attribute,
@@ -38183,6 +38183,10 @@
<dfn id=dom-input-defaultvalue title=dom-input-defaultValue><code>defaultValue</code></dfn>
IDL attribute must <a href=#reflect>reflect</a> the <code title=attr-input-value><a href=#attr-input-value>value</a></code> content attribute.</p>
+ <p>The <dfn id=dom-input-type title=dom-input-type><code>type</code></dfn> IDL
+ attribute must <a href=#reflect>reflect</a> the content attribute of the
+ same name, <a href=#limited-to-only-known-values>limited to only known values</a>.</p>
+
<p>The <code title=dom-cva-willValidate><a href=#dom-cva-willvalidate>willValidate</a></code>, <code title=dom-cva-validity><a href=#dom-cva-validity>validity</a></code>, and <code title=dom-cva-validationMessage><a href=#dom-cva-validationmessage>validationMessage</a></code>
attributes, and the <code title=dom-cva-checkValidatity><a href=#dom-cva-checkvalidatity>checkValidity()</a></code> and <code title=dom-cva-setCustomValidity><a href=#dom-cva-setcustomvalidity>setCustomValidity()</a></code>
methods, are part of the <a href=#the-constraint-validation-api>constraint validation API</a>. The
@@ -43667,12 +43671,12 @@
</dl><div class=impl>
<p>The <dfn id=dom-keygen-challenge title=dom-keygen-challenge><code>challenge</code></dfn> IDL
- attribute must <a href=#reflect>reflect</a> the content attributes of the
+ attribute must <a href=#reflect>reflect</a> the content attribute of the
same name.</p>
<p>The <dfn id=dom-keygen-keytype title=dom-keygen-keytype><code>keytype</code></dfn>
- IDL attribute must <a href=#reflect>reflect</a> the content attributes of
- the same name, <a href=#limited-to-only-known-values>limited to only known values</a>.</p>
+ IDL attribute must <a href=#reflect>reflect</a> the content attribute of the
+ same name, <a href=#limited-to-only-known-values>limited to only known values</a>.</p>
<p>The <dfn id=dom-keygen-type title=dom-keygen-type><code>type</code></dfn> IDL
attribute must return the value "<code title="">keygen</code>".</p>
Modified: index
===================================================================
--- index 2010-07-28 22:35:51 UTC (rev 5219)
+++ index 2010-07-28 23:03:17 UTC (rev 5220)
@@ -38099,7 +38099,7 @@
the last value it was set to. On setting, it must be set to the new
value. It has no effect except for changing the appearance of <a href=#checkbox-state title=attr-input-type-checkbox>checkbox</a> controls.</p>
- <p>The <dfn id=dom-input-accept title=dom-input-accept><code>accept</code></dfn>, <dfn id=dom-input-alt title=dom-input-alt><code>alt</code></dfn>, <dfn id=dom-input-autocomplete title=dom-input-autocomplete><code>autocomplete</code></dfn>, <dfn id=dom-input-max title=dom-input-max><code>max</code></dfn>, <dfn id=dom-input-min title=dom-input-min><code>min</code></dfn>, <dfn id=dom-input-multiple title=dom-input-multiple><code>multiple</code></dfn>, <dfn id=dom-input-pattern title=dom-input-pattern><code>pattern</code></dfn>, <dfn id=dom-input-placeholder title=dom-input-placeholder><code>placeholder</code></dfn>, <dfn id=dom-input-required title=dom-input-required><code>required</code></dfn>, <dfn id=dom-input-size title=dom-input-size><code>size</code></dfn>, <dfn id=dom-input-src title=dom-input-src><code>src</code></dfn>, <dfn id=dom-input-step title=dom-input-step><code>step</code></dfn>, and <dfn id=dom-input-type title=dom-input-type><code>type</code></dfn> IDL attr
ibutes must
+ <p>The <dfn id=dom-input-accept title=dom-input-accept><code>accept</code></dfn>, <dfn id=dom-input-alt title=dom-input-alt><code>alt</code></dfn>, <dfn id=dom-input-autocomplete title=dom-input-autocomplete><code>autocomplete</code></dfn>, <dfn id=dom-input-max title=dom-input-max><code>max</code></dfn>, <dfn id=dom-input-min title=dom-input-min><code>min</code></dfn>, <dfn id=dom-input-multiple title=dom-input-multiple><code>multiple</code></dfn>, <dfn id=dom-input-pattern title=dom-input-pattern><code>pattern</code></dfn>, <dfn id=dom-input-placeholder title=dom-input-placeholder><code>placeholder</code></dfn>, <dfn id=dom-input-required title=dom-input-required><code>required</code></dfn>, <dfn id=dom-input-size title=dom-input-size><code>size</code></dfn>, <dfn id=dom-input-src title=dom-input-src><code>src</code></dfn>, and <dfn id=dom-input-step title=dom-input-step><code>step</code></dfn> IDL attributes must
<a href=#reflect>reflect</a> the respective content attributes of the same
name. The <dfn id=dom-input-maxlength title=dom-input-maxLength><code>maxLength</code></dfn> IDL
attribute must <a href=#reflect>reflect</a> the <code title=attr-input-maxlength><a href=#attr-input-maxlength>maxlength</a></code> content attribute,
@@ -38110,6 +38110,10 @@
<dfn id=dom-input-defaultvalue title=dom-input-defaultValue><code>defaultValue</code></dfn>
IDL attribute must <a href=#reflect>reflect</a> the <code title=attr-input-value><a href=#attr-input-value>value</a></code> content attribute.</p>
+ <p>The <dfn id=dom-input-type title=dom-input-type><code>type</code></dfn> IDL
+ attribute must <a href=#reflect>reflect</a> the content attribute of the
+ same name, <a href=#limited-to-only-known-values>limited to only known values</a>.</p>
+
<p>The <code title=dom-cva-willValidate><a href=#dom-cva-willvalidate>willValidate</a></code>, <code title=dom-cva-validity><a href=#dom-cva-validity>validity</a></code>, and <code title=dom-cva-validationMessage><a href=#dom-cva-validationmessage>validationMessage</a></code>
attributes, and the <code title=dom-cva-checkValidatity><a href=#dom-cva-checkvalidatity>checkValidity()</a></code> and <code title=dom-cva-setCustomValidity><a href=#dom-cva-setcustomvalidity>setCustomValidity()</a></code>
methods, are part of the <a href=#the-constraint-validation-api>constraint validation API</a>. The
@@ -43594,12 +43598,12 @@
</dl><div class=impl>
<p>The <dfn id=dom-keygen-challenge title=dom-keygen-challenge><code>challenge</code></dfn> IDL
- attribute must <a href=#reflect>reflect</a> the content attributes of the
+ attribute must <a href=#reflect>reflect</a> the content attribute of the
same name.</p>
<p>The <dfn id=dom-keygen-keytype title=dom-keygen-keytype><code>keytype</code></dfn>
- IDL attribute must <a href=#reflect>reflect</a> the content attributes of
- the same name, <a href=#limited-to-only-known-values>limited to only known values</a>.</p>
+ IDL attribute must <a href=#reflect>reflect</a> the content attribute of the
+ same name, <a href=#limited-to-only-known-values>limited to only known values</a>.</p>
<p>The <dfn id=dom-keygen-type title=dom-keygen-type><code>type</code></dfn> IDL
attribute must return the value "<code title="">keygen</code>".</p>
Modified: source
===================================================================
--- source 2010-07-28 22:35:51 UTC (rev 5219)
+++ source 2010-07-28 23:03:17 UTC (rev 5220)
@@ -42470,9 +42470,8 @@
title="dom-input-placeholder"><code>placeholder</code></dfn>, <dfn
title="dom-input-required"><code>required</code></dfn>, <dfn
title="dom-input-size"><code>size</code></dfn>, <dfn
- title="dom-input-src"><code>src</code></dfn>, <dfn
- title="dom-input-step"><code>step</code></dfn>, and <dfn
- title="dom-input-type"><code>type</code></dfn> IDL attributes must
+ title="dom-input-src"><code>src</code></dfn>, and <dfn
+ title="dom-input-step"><code>step</code></dfn> IDL attributes must
<span>reflect</span> the respective content attributes of the same
name. The <dfn
title="dom-input-maxLength"><code>maxLength</code></dfn> IDL
@@ -42490,6 +42489,10 @@
IDL attribute must <span>reflect</span> the <code
title="attr-input-value">value</code> content attribute.</p>
+ <p>The <dfn title="dom-input-type"><code>type</code></dfn> IDL
+ attribute must <span>reflect</span> the content attribute of the
+ same name, <span>limited to only known values</span>.</p>
+
<p>The <code title="dom-cva-willValidate">willValidate</code>, <code
title="dom-cva-validity">validity</code>, and <code
title="dom-cva-validationMessage">validationMessage</code>
@@ -48878,12 +48881,12 @@
<p>The <dfn
title="dom-keygen-challenge"><code>challenge</code></dfn> IDL
- attribute must <span>reflect</span> the content attributes of the
+ attribute must <span>reflect</span> the content attribute of the
same name.</p>
<p>The <dfn title="dom-keygen-keytype"><code>keytype</code></dfn>
- IDL attribute must <span>reflect</span> the content attributes of
- the same name, <span>limited to only known values</span>.</p>
+ IDL attribute must <span>reflect</span> the content attribute of the
+ same name, <span>limited to only known values</span>.</p>
<p>The <dfn title="dom-keygen-type"><code>type</code></dfn> IDL
attribute must return the value "<code title="">keygen</code>".</p>
More information about the Commit-Watchers
mailing list