mirror of https://github.com/tc39/test262.git
21 lines
604 B
JavaScript
21 lines
604 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The Number property "prototype" has { DontEnum, DontDelete, ReadOnly } attributes
|
|
*
|
|
* @path ch15/15.7/15.7.3/15.7.3.1/S15.7.3.1_A1_T3.js
|
|
* @description Checking if enumerating the Number.prototype property fails
|
|
*/
|
|
|
|
if (Number.propertyIsEnumerable('prototype')) {
|
|
$ERROR('#1: The Number.prototype property has the attribute DontEnum');
|
|
}
|
|
|
|
for(x in Number) {
|
|
if(x === "prototype") {
|
|
$ERROR('#2: The Number.prototype has the attribute DontEnum');
|
|
}
|
|
}
|
|
|