mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
27 lines
640 B
JavaScript
27 lines
640 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The Object.prototype property has the attribute DontEnum
|
|
*
|
|
* @path ch15/15.2/15.2.3/15.2.3.1/S15.2.3.1_A2.js
|
|
* @description Checking if enumerating "Object.prototype" property fails
|
|
*/
|
|
|
|
// CHECK#1
|
|
if (Object.propertyIsEnumerable('prototype')) {
|
|
$ERROR('#1: the Object.prototype property has the attributes DontEnum');
|
|
}
|
|
|
|
// CHECK#2
|
|
var cout=0;
|
|
|
|
for (p in Object){
|
|
if (p==="prototype") cout++;
|
|
}
|
|
|
|
if (cout !== 0) {
|
|
$ERROR('#2: the Object.prototype property has the attributes DontEnum');
|
|
}
|
|
|