1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/js1_8_5/extensions/selfhosted-detecting-strict.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 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 = 843004; 1.9 +var summary = 1.10 + "Don't emit a strict warning for the undefined-property detection pattern in self-hosted code"; 1.11 + 1.12 +print(BUGNUMBER + ": " + summary); 1.13 + 1.14 +/************** 1.15 + * BEGIN TEST * 1.16 + **************/ 1.17 + 1.18 +options("strict", "werror"); 1.19 + 1.20 +// Don't strict-warn (and throw, because of strict) when self-hosted code uses 1.21 +// detecting-safe undefined-property accesses (|options.weekday !== undefined| 1.22 +// and similar in ToDateTimeOptions, to be precise). 1.23 +new Date().toLocaleString("en-US", {}); 1.24 + 1.25 +// If we get here, the test passed. 1.26 + 1.27 +if (typeof reportCompare === "function") 1.28 + reportCompare(true, true); 1.29 + 1.30 +print("Tests complete");