- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 29 Sep 2010 07:03:49 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv8369 Modified Files: Overview.html Log Message: Oops, forgot that numbers and Numbers were distinct in JS. (whatwg r5549) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.4434 retrieving revision 1.4435 diff -u -d -r1.4434 -r1.4435 --- Overview.html 29 Sep 2010 06:10:37 -0000 1.4434 +++ Overview.html 29 Sep 2010 07:03:45 -0000 1.4435 @@ -6644,6 +6644,18 @@ <dd><p>Return the true value.</dd> + <dt>If <var title="">input</var> is a number</dt> + + <dd><p>Return the same number.</dd> + + <dt>If <var title="">input</var> is a string</dt> + + <dd><p>Return the same string.</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>.</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>.</dd> @@ -6723,7 +6735,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="#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
Received on Wednesday, 29 September 2010 07:03:51 UTC