Bug 1875768 - Call the appropriate postfork handler on MacOS r=glandium
[gecko.git] / js / src / tests / test262 / built-ins / Number / prototype / S15.7.4_A3.6.js
blobae91098e19ffec03509256c7dbf990cca2abe9c4
1 // Copyright 2009 the Sputnik authors.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 info: The Number prototype object has the property toExponential
6 es5id: 15.7.4_A3.6
7 description: The test uses hasOwnProperty() method
8 ---*/
9 assert.sameValue(
10   Number.prototype.hasOwnProperty("toExponential"),
11   true,
12   'Number.prototype.hasOwnProperty("toExponential") must return true'
15 reportCompare(0, 0);