summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/extensions/function-caller-strict-cross-global.js
blob: d76bcccda5eda33cedf390a2db6ebd1d4b875c66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// |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;

assertEq(g2.evaluate("function g() { 'use strict'; return f(); } g()"), null);

if (typeof reportCompare === "function")
  reportCompare(true, true);

print("Tests complete");