mirror of https://github.com/tc39/test262.git
22 lines
562 B
JavaScript
22 lines
562 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Boolean.prototype has the attribute DontEnum
|
|
*
|
|
* @path ch15/15.6/15.6.3/15.6.3.1/S15.6.3.1_A4.js
|
|
* @description Checking if enumerating the Boolean.prototype property fails
|
|
*/
|
|
|
|
//CHECK#1
|
|
for(x in Boolean) {
|
|
if(x === "prototype") {
|
|
$ERROR('#1: Boolean.prototype has the attribute DontEnum');
|
|
}
|
|
}
|
|
|
|
if (Boolean.propertyIsEnumerable('prototype')) {
|
|
$ERROR('#2: Boolean.prototype has the attribute DontEnum');
|
|
}
|
|
|