- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 29 Sep 2010 07:16:37 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv9281 Modified Files: common-dom-interfaces.html spec.html Log Message: Oops, forgot that numbers and Numbers were distinct in JS. (whatwg r5549) [updated by splitter] Index: common-dom-interfaces.html =================================================================== RCS file: /sources/public/html5/spec/common-dom-interfaces.html,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- common-dom-interfaces.html 29 Sep 2010 06:16:38 -0000 1.19 +++ common-dom-interfaces.html 29 Sep 2010 07:16:34 -0000 1.20 @@ -1209,6 +1209,18 @@ <dd><p>Return the true value.</p></dd> + <dt>If <var title="">input</var> is a number</dt> + + <dd><p>Return the same number.</p></dd> + + <dt>If <var title="">input</var> is a string</dt> + + <dd><p>Return the same string.</p></dd> + + <dt>If <var title="">input</var> is a Boolean object</dt> + + <dd><p>Return a newly constructed Boolean object with the same value as <var title="">input</var>.</p></dd> + <dt>If <var title="">input</var> is a Number object</dt> <dd><p>Return a newly constructed Number object with the same value as <var title="">input</var>.</p></dd> @@ -1288,7 +1300,7 @@ </ol></dd> - <dt>If <var title="">input</var> is another native object type (e.g. <code>Error</code>)</dt> + <dt>If <var title="">input</var> is another native object type (e.g. <code>Error</code>, <code><a href="webappapis.html#function">Function</a></code>)</dt> <dt>If <var title="">input</var> is a host object (e.g. a DOM node)</dt> <dd><p>Throw a <code><a href="#data_clone_err">DATA_CLONE_ERR</a></code> exception and abort the Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1252 retrieving revision 1.1253 diff -u -d -r1.1252 -r1.1253 --- spec.html 29 Sep 2010 06:16:38 -0000 1.1252 +++ spec.html 29 Sep 2010 07:16:34 -0000 1.1253 @@ -338,7 +338,7 @@ <a href="Overview.html">single page HTML</a>, <a href="spec.html">multipage HTML</a>, <a href="author/">web developer edition</a>. -This is revision 1.4434. +This is revision 1.4435. </p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide
Received on Wednesday, 29 September 2010 07:16:39 UTC