test262/test/built-ins/parseInt/S15.1.2.2_A9.5.js

25 lines
591 B
JavaScript

// 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');