1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_5/Global/adding-global-var-nonextensible-error.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,36 @@ 1.4 +// |reftest| skip 1.5 +// Any copyright is dedicated to the Public Domain. 1.6 +// http://creativecommons.org/licenses/publicdomain/ 1.7 + 1.8 +//----------------------------------------------------------------------------- 1.9 +var BUGNUMBER = 621432; 1.10 +var summary = 1.11 + "If a var statement can't create a global property because the global " + 1.12 + "object isn't extensible, and an error is thrown while decompiling the " + 1.13 + "global, don't assert"; 1.14 + 1.15 +print(BUGNUMBER + ": " + summary); 1.16 + 1.17 +/************** 1.18 + * BEGIN TEST * 1.19 + **************/ 1.20 + 1.21 +var toSource = []; 1.22 +Object.preventExtensions(this); 1.23 + 1.24 +try 1.25 +{ 1.26 + eval("var x;"); 1.27 + throw new Error("no error thrown"); 1.28 +} 1.29 +catch (e) 1.30 +{ 1.31 + reportCompare(e instanceof TypeError, true, "expected TypeError, got: " + e); 1.32 +} 1.33 + 1.34 +/******************************************************************************/ 1.35 + 1.36 +if (typeof reportCompare === "function") 1.37 + reportCompare(true, true); 1.38 + 1.39 +print("All tests passed!");