1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/js1_5/Regress/regress-314401.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,72 @@ 1.4 +// |reftest| skip-if(xulRuntime.OS=="WINNT"&&isDebugBuild) slow 1.5 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +//----------------------------------------------------------------------------- 1.11 +var BUGNUMBER = 314401; 1.12 +var summary = 'setTimeout(eval,0,"",null)|setTimeout(Script,0,"",null) should not crash'; 1.13 +var actual = 'No Crash'; 1.14 +var expect = 'No Crash'; 1.15 + 1.16 +printBugNumber(BUGNUMBER); 1.17 +printStatus (summary); 1.18 + 1.19 +if (typeof setTimeout == 'undefined') 1.20 +{ 1.21 + reportCompare(expect, actual, 'Test Skipped.'); 1.22 +} 1.23 +else 1.24 +{ 1.25 + gDelayTestDriverEnd = true; 1.26 + window.onerror = null; 1.27 + 1.28 + try 1.29 + { 1.30 + setTimeout(eval, 0, '', null); 1.31 + } 1.32 + catch(ex) 1.33 + { 1.34 + printStatus(ex+''); 1.35 + } 1.36 + 1.37 + reportCompare(expect, actual, 'setTimeout(eval, 0, "", null)'); 1.38 + 1.39 + if (typeof Script != 'undefined') 1.40 + { 1.41 + try 1.42 + { 1.43 + setTimeout(Script, 0, '', null); 1.44 + } 1.45 + catch(ex) 1.46 + { 1.47 + printStatus(ex+''); 1.48 + } 1.49 + reportCompare(expect, actual, 'setTimeout(Script, 0, "", null)'); 1.50 + } 1.51 + 1.52 + try 1.53 + { 1.54 + setInterval(eval, 0, '', null); 1.55 + } 1.56 + catch(ex) 1.57 + { 1.58 + printStatus(ex+''); 1.59 + } 1.60 + reportCompare(expect, actual, 'setInterval(eval, 0, "", null)'); 1.61 + 1.62 + if (typeof Script != 'undefined') 1.63 + { 1.64 + try 1.65 + { 1.66 + setInterval(Script, 0, '', null); 1.67 + } 1.68 + catch(ex) 1.69 + { 1.70 + printStatus(ex+''); 1.71 + } 1.72 + reportCompare(expect, actual, 'setInterval(Script, 0, "", null)'); 1.73 + } 1.74 + setTimeout('gDelayTestDriverEnd = false; jsTestDriverEnd();', 0); 1.75 +}