Bug 1904139 - Don't re-initialize platform font list from GetDefaultFont. r=jfkthame
[gecko.git] / js / src / tests / test262 / built-ins / Number / prototype / constructor.js
blob1197ebae67014f270cf750fbf44aced3381ef618
1 // Copyright (C) 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 esid: sec-number.prototype.constructor
6 description: >
7   Property descriptor and value for Number.prototype.constructor
8 info: |
9   Number.prototype.constructor
11   The initial value of Number.prototype.constructor is the intrinsic object
12   %Number%.
13 includes: [propertyHelper.js]
14 ---*/
16 assert.sameValue(Number.prototype.constructor, Number);
18 verifyNotEnumerable(Number.prototype, "constructor");
19 verifyWritable(Number.prototype, "constructor");
20 verifyConfigurable(Number.prototype, "constructor");
22 reportCompare(0, 0);