blob: 45fd7b1b3a356e4e39bed010a3319bc34d55e8cb (
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
|
// |reftest| skip-if(!xulRuntime.shell) -- needs newGlobal()
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/
var g1 = newGlobal();
g1.evaluate("function f() { return f.caller; }");
var g2 = newGlobal();
g2.f = g1.f;
try
{
g2.evaluate("function g() { 'use strict'; return f(); } g()");
throw new Error("failed to throw");
}
catch (e)
{
assertEq(e.constructor.name, "TypeError",
"expected TypeError accessing strict .caller across globals, got " +
e);
}
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");
|