- From: poot <cvsmail@w3.org>
- Date: Thu, 29 Jul 2010 08:06:29 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: HTMLInputElement.type should be limited to know values. (whatwg r5220) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4154&r2=1.4155&f=h http://html5.org/tools/web-apps-tracker?from=5219&to=5220 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.4154 retrieving revision 1.4155 diff -u -d -r1.4154 -r1.4155 --- Overview.html 28 Jul 2010 22:35:55 -0000 1.4154 +++ Overview.html 28 Jul 2010 23:03:23 -0000 1.4155 @@ -28136,7 +28136,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</ode></dfn> IDL attributes 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, @@ -28147,6 +28147,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 @@ -32869,12 +32873,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>
Received on Wednesday, 28 July 2010 23:04:10 UTC