1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/js1_8_5/extensions/censor-strict-caller.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +// Any copyright is dedicated to the Public Domain. 1.5 +// http://creativecommons.org/licenses/publicdomain/ 1.6 + 1.7 +//----------------------------------------------------------------------------- 1.8 +var BUGNUMBER = 588251; 1.9 +var summary = 1.10 + "fun.caller should throw if that value corresponds to a strict mode " + 1.11 + "function"; 1.12 + 1.13 +print(BUGNUMBER + ": " + summary); 1.14 + 1.15 +/************** 1.16 + * BEGIN TEST * 1.17 + **************/ 1.18 + 1.19 +function nonstrict() { return nonstrict.caller; } 1.20 +function strict() { "use strict"; return nonstrict(); } 1.21 +try 1.22 +{ 1.23 + strict(); 1.24 + throw 17; 1.25 +} 1.26 +catch (e) 1.27 +{ 1.28 + assertEq(e instanceof TypeError, true, 1.29 + "expected TypeError accessing strict mode caller, got: " + e); 1.30 +} 1.31 + 1.32 +/******************************************************************************/ 1.33 + 1.34 +if (typeof reportCompare === "function") 1.35 + reportCompare(true, true); 1.36 + 1.37 +print("All tests passed!");