- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 09 Dec 2011 22:24:19 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv7296 Modified Files: Overview.html Log Message: valueAsDate is defined as returning null sometimes, so it needs to be nullable. (whatwg r6862) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.5461 retrieving revision 1.5462 diff -u -d -r1.5461 -r1.5462 --- Overview.html 9 Dec 2011 22:01:12 -0000 1.5461 +++ Overview.html 9 Dec 2011 22:24:15 -0000 1.5462 @@ -33210,7 +33210,7 @@ attribute DOMString <a href="#dom-input-type" title="dom-input-type">type</a>; attribute DOMString <a href="#dom-input-defaultvalue" title="dom-input-defaultValue">defaultValue</a>; attribute DOMString <a href="#dom-input-value" title="dom-input-value">value</a>; - attribute <span>Date</span> <a href="#dom-input-valueasdate" title="dom-input-valueAsDate">valueAsDate</a>; + attribute <span>Date</span>? <a href="#dom-input-valueasdate" title="dom-input-valueAsDate">valueAsDate</a>; attribute double <a href="#dom-input-valueasnumber" title="dom-input-valueAsNumber">valueAsNumber</a>; attribute unsigned long <a href="#dom-input-width" title="dom-input-width">width</a>;
Received on Friday, 9 December 2011 22:24:21 UTC