Skip to content

Commit

Permalink
[giow] (0) valueAsDate is defined as returning null sometimes, so it …
Browse files Browse the repository at this point in the history
…needs to be nullable.

Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=14890
Affected topics: DOM APIs

git-svn-id: http://svn.whatwg.org/webapps@6862 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Dec 9, 2011
1 parent 3e53144 commit f8dc6fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion complete.html
Expand Up @@ -42291,7 +42291,7 @@ <h4 id=the-input-element><span class=secno>4.10.7 </span>The <dfn><code>input</c
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>;

Expand Down
2 changes: 1 addition & 1 deletion index
Expand Up @@ -42291,7 +42291,7 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H
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>;

Expand Down
2 changes: 1 addition & 1 deletion source
Expand Up @@ -49370,7 +49370,7 @@ interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-input-type">type</span>;
attribute DOMString <span title="dom-input-defaultValue">defaultValue</span>;
attribute DOMString <span title="dom-input-value">value</span>;
attribute <span>Date</span> <span title="dom-input-valueAsDate">valueAsDate</span>;
attribute <span>Date</span>? <span title="dom-input-valueAsDate">valueAsDate</span>;
attribute double <span title="dom-input-valueAsNumber">valueAsNumber</span>;
attribute unsigned long <span title="dom-input-width">width</span>;

Expand Down

0 comments on commit f8dc6fe

Please sign in to comment.