blob: bfc4a3489d05b5b2ed84dde19ff6a655117f3b69 [file] [log] [blame]
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/
//-----------------------------------------------------------------------------
var BUGNUMBER = 604504;
var summary = "eval called from a native function is indirect";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
var originalEval = eval;
var global = this;
var directCheckCode = "this === global";
function testBound()
{
var global = "psych!";
var eval = originalEval.bind(undefined, directCheckCode);
assertEq(eval(), true);
}
testBound();
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("All tests passed!");