- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 13 Feb 2009 19:54:09 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv31229 Modified Files: Overview.html Log Message: DOMTimeStamp betrayed us. Switch it to Date. Hopefully WebIDL or Web DOM Core will define what that means for non-JS languages... (whatwg r2819) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1989 retrieving revision 1.1990 diff -u -d -r1.1989 -r1.1990 --- Overview.html 13 Feb 2009 19:50:02 -0000 1.1989 +++ Overview.html 13 Feb 2009 19:54:06 -0000 1.1990 @@ -1646,8 +1646,7 @@ to textContent. XXX also add event-click, event-change, event-DOMActivate, etc, here, once DOM3 Events is ready for that, and just have the section be a general "defined in other - specifications" section --><p>The interface <dfn id=domtimestamp><code>DOMTimeStamp</code></dfn> is defined in - DOM3 Core. <a href=#references>[DOM3CORE]</a><p id=alternate-style-sheets>The rules for handling alternative + specifications" section --><p id=alternate-style-sheets>The rules for handling alternative style sheets are defined in the CSS object model specification. <a href=#references>[CSSOM]</a><p class=XXX>See <a href="http://dev.w3.org/cvsweb/~checkout~/csswg/cssom/Overview.html?content-type=text/html;%20charset=utf-8">http://dev.w3.org/cvsweb/~checkout~/csswg/cssom/Overview.html?content-type=text/html;%20charset=utf-8</a></p><!--XXX empty title attribute is equivalent to missing attribute for purposes of alternate style sheet processing --><h4 id=common-conformance-requirements-for-apis-exposed-to-javascript><span class=secno>2.2.3 </span>Common conformance requirements for APIs exposed to JavaScript</h4><p class=XXX>This section will eventually be removed in favour of WebIDL.<p class=XXX>A lot of arrays/lists/<a href=#collections-0 title=collections>collection</a>s @@ -5154,9 +5153,9 @@ <dd><p>Return a newly constructed String object with the same value as <var title="">input</var>.</dd> - <dt>If <var title="">input</var> is a Date object</dt> + <dt>If <var title="">input</var> is a <code>Date</code> object</dt> - <dd><p>Return a newly constructed Date object with the same value as <var title="">input</var>.</dd> + <dd><p>Return a newly constructed <code>Date</code> object with the same value as <var title="">input</var>.</dd> <dt>If <var title="">input</var> is a host object</dt> @@ -11079,9 +11078,9 @@ <dd> <pre class=idl>interface <dfn id=htmltimeelement>HTMLTimeElement</dfn> : <a href=#htmlelement>HTMLElement</a> { attribute DOMString <a href=#dom-time-datetime title=dom-time-datetime>dateTime</a>; - readonly attribute <a href=#domtimestamp>DOMTimeStamp</a> <a href=#dom-time-date title=dom-time-date>date</a>; - readonly attribute <a href=#domtimestamp>DOMTimeStamp</a> <a href=#dom-time-time title=dom-time-time>time</a>; - readonly attribute <a href=#domtimestamp>DOMTimeStamp</a> <a href=#dom-time-timezone title=dom-time-timezone>timezone</a>; + readonly attribute <span>Date</span> <a href=#dom-time-date title=dom-time-date>date</a>; + readonly attribute <span>Date</span> <a href=#dom-time-time title=dom-time-time>time</a>; + readonly attribute <span>Date</span> <a href=#dom-time-timezone title=dom-time-timezone>timezone</a>; };</pre> </dd> </dl><p>The <code><a href=#the-time-element>time</a></code> element <a href=#represents>represents</a> a precise @@ -20177,7 +20176,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 DOMTimeStamp <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 float <a href=#dom-input-valueasnumber title=dom-input-valueAsNumber>valueAsNumber</a>; readonly attribute <a href=#htmloptionelement>HTMLOptionElement</a> <a href=#dom-input-selectedoption title=dom-input-selectedOption>selectedOption</a>; attribute DOMString <a href=#dom-dim-width title=dom-dim-width>width</a>;
Received on Friday, 13 February 2009 19:54:18 UTC