-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
initial support for type="date" (not datetime, time, month or week—they will be implemented later as needed)
will not set @value to YYYY-mm-dd format. Applications must handle input in varied format as if type="date" was not supported (fallback in browsers is type="text")
will accept any value that can be parsed using new Date( _value_ ) and will polyfill support YYYY-mm-dd formats if not natively supported by the javascript engine.
add .valueAsDate which will be a javascript date object. Will be updated onchange
http://www.whatwg.org/specs/web-apps/current-work/multipage//common-input-element-attributes.html#dom-input-valueasdate
add valueAsNumber as an alias for valueAsDate.getTime()