blob: 5df4375203ab93f77cab589bdbda6a895288de63 (
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
40
41
42
|
// 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");
// THIS IS WRONG. |new| itself should throw if !IsConstructor(constructor),
// meaning this global's TypeError should be used. The problem ultimately is
// that wrappers conflate callable/constructible, so any old function from
// another global appears to be both. Somebody fix bug XXXXXX!
try
{
var constructor = g.parseInt;
new constructor();
throw new Error("no error thrown");
}
catch (e)
{
assertEq(e instanceof g.TypeError, true,
"THIS REALLY SHOULD BE |e instanceof TypeError|");
}
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");
|