blob: cae4b187df031ff5fa84637a353dd25ea9db1b28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/
//-----------------------------------------------------------------------------
var BUGNUMBER = 1178653;
var summary =
"|new| on a cross-compartment wrapper to a non-constructor shouldn't assert";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
var g = newGlobal();
var otherStr = new g.String("foo");
assertEq(otherStr instanceof g.String, true);
assertEq(otherStr.valueOf(), "foo");
try
{
var constructor = g.parseInt;
new constructor();
throw new Error("no error thrown");
}
catch (e)
{
// NOTE: not |g.TypeError|, because |new| itself throws because
// |!IsConstructor(constructor)|.
assertEq(e instanceof TypeError, true);
}
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");
|