mirror of https://github.com/tc39/test262.git
25 lines
591 B
JavaScript
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');
|