- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 16 Jun 2011 18:03:50 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv26231 Modified Files: Overview.html Log Message: Make textarea and input consistent. (Interop here is a disaster currently, so we can change this with impunity.) (whatwg r6241) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.5004 retrieving revision 1.5005 diff -u -d -r1.5004 -r1.5005 --- Overview.html 16 Jun 2011 07:16:23 -0000 1.5004 +++ Overview.html 16 Jun 2011 18:03:43 -0000 1.5005 @@ -37546,10 +37546,10 @@ <p>The <dfn id="dom-textarea-value" title="dom-textarea-value"><code>value</code></dfn> attribute must, on getting, return the element's <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a>; on setting, it must set the element's <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw - value</a> to the new value, and should then move the text entry - cursor position to the end of the text field, unselecting any - selected text and resetting the selection direction to - <i>none</i>.</p> + value</a> to the new value, set the element's <a href="#concept-textarea-dirty" title="concept-textarea-dirty">dirty value flag</a> to true, and + should then move the text entry cursor position to the end of the + text field, unselecting any selected text and resetting the + selection direction to <i>none</i>.</p> <p>The <dfn id="dom-textarea-textlength" title="dom-textarea-textLength"><code>textLength</code></dfn> IDL attribute must return the <a href="#code-point-length">code-point length</a> of the
Received on Thursday, 16 June 2011 18:03:55 UTC