| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| Number instances have no special properties beyond those |
| inherited from the Number prototype object |
| description: Checking property toLocaleString |
| if((new Number()).hasOwnProperty("toLocaleString") !== false){ |
| $ERROR('#1: Number instance must have no special property "toLocaleString"'); |
| if((new Number()).toLocaleString !== Number.prototype.toLocaleString){ |
| $ERROR('#2: Number instance property "toLocaleString" must be inherited from Number prototype object'); |