| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| info: The length property of parseInt has the attribute DontEnum |
| description: Checking use propertyIsEnumerable, for-in |
| if (parseInt.propertyIsEnumerable('length') !== false) { |
| $ERROR('#1: parseInt.propertyIsEnumerable(\'length\') === false. Actual: ' + (parseInt.propertyIsEnumerable('length'))); |
| $ERROR('#2: result = true; for (p in parseInt) { if (p === "length") result = false; } result === true;'); |