- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 28 Jul 2010 23:06:58 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv12046 Modified Files: spec.html the-button-element.html the-input-element.html Log Message: HTMLInputElement.type should be limited to know values. (whatwg r5220) [updated by splitter] Index: the-input-element.html =================================================================== RCS file: /sources/public/html5/spec/the-input-element.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- the-input-element.html 2 Jul 2010 23:06:48 -0000 1.6 +++ the-input-element.html 28 Jul 2010 23:06:56 -0000 1.7 @@ -1579,7 +1579,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="number-state.html#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="common-dom-interfaces.html#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="common-dom-interfaces.html#reflect">reflect</a> the <code title="attr-input-maxlength"><a href="common-input-element-attributes.html#attr-input-maxlength">maxlength</a></code> content attribute, @@ -1590,6 +1590,10 @@ <dfn id="dom-input-defaultvalue" title="dom-input-defaultValue"><code>defaultValue</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#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="common-dom-interfaces.html#reflect">reflect</a> the content attribute of the + same name, <a href="common-dom-interfaces.html#limited-to-only-known-values">limited to only known values</a>.</p> + <p>The <code title="dom-cva-willValidate"><a href="association-of-controls-and-forms.html#dom-cva-willvalidate">willValidate</a></code>, <code title="dom-cva-validity"><a href="association-of-controls-and-forms.html#dom-cva-validity">validity</a></code>, and <code title="dom-cva-validationMessage"><a href="association-of-controls-and-forms.html#dom-cva-validationmessage">validationMessage</a></code> attributes, and the <code title="dom-cva-checkValidatity"><a href="association-of-controls-and-forms.html#dom-cva-checkvalidatity">checkValidity()</a></code> and <code title="dom-cva-setCustomValidity"><a href="association-of-controls-and-forms.html#dom-cva-setcustomvalidity">setCustomValidity()</a></code> methods, are part of the <a href="association-of-controls-and-forms.html#the-constraint-validation-api">constraint validation API</a>. The Index: the-button-element.html =================================================================== RCS file: /sources/public/html5/spec/the-button-element.html,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- the-button-element.html 27 Jul 2010 23:06:50 -0000 1.8 +++ the-button-element.html 28 Jul 2010 23:06:56 -0000 1.9 @@ -1645,12 +1645,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="common-dom-interfaces.html#reflect">reflect</a> the content attributes of the + attribute must <a href="common-dom-interfaces.html#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="common-dom-interfaces.html#reflect">reflect</a> the content attributes of - the same name, <a href="common-dom-interfaces.html#limited-to-only-known-values">limited to only known values</a>.</p> + IDL attribute must <a href="common-dom-interfaces.html#reflect">reflect</a> the content attribute of the + same name, <a href="common-dom-interfaces.html#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> Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1090 retrieving revision 1.1091 diff -u -d -r1.1090 -r1.1091 --- spec.html 28 Jul 2010 22:36:56 -0000 1.1090 +++ spec.html 28 Jul 2010 23:06:56 -0000 1.1091 @@ -333,7 +333,7 @@ <a href="Overview.html">single page HTML</a>, <a href="spec.html">multipage HTML</a>, <a href="author/">author edition</a>. -This is revision 1.4154. +This is revision 1.4155. </p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide
Received on Wednesday, 28 July 2010 23:06:59 UTC