blob: 017ccf1c7410570c18da8c76ae4e6d73f99c30cb (
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
|
// 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 testArrayGeneric()
{
var global = "psych!";
var eval = Array.map;
var mapped = eval([directCheckCode], originalEval);
assertEq(mapped[0], true);
}
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("All tests passed!");
|