blob: 7784f7a7009f2d523af0c6d08c1b57b3dcfbc487 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: The parseInt property has the attribute DontEnum
esid: sec-parseint-string-radix
description: Checking use propertyIsEnumerable, for-in
---*/
assert.sameValue(
this.propertyIsEnumerable('parseInt'),
false,
'this.propertyIsEnumerable(\'parseInt\') must return false'
);
//CHECK#2
var result = true;
for (var p in this) {
if (p === "parseInt") {
result = false;
}
}
assert.sameValue(result, true, 'The value of `result` is true');