|
1 // |reftest| require-or(debugMode,skip) |
|
2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
3 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
4 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
6 |
|
7 //----------------------------------------------------------------------------- |
|
8 var BUGNUMBER = 431428; |
|
9 var summary = 'Do not crash with for..in, trap'; |
|
10 var actual = 'No Crash'; |
|
11 var expect = 'No Crash'; |
|
12 |
|
13 |
|
14 //----------------------------------------------------------------------------- |
|
15 test(); |
|
16 //----------------------------------------------------------------------------- |
|
17 |
|
18 function test() |
|
19 { |
|
20 enterFunc ('test'); |
|
21 printBugNumber(BUGNUMBER); |
|
22 printStatus (summary); |
|
23 |
|
24 function f() { |
|
25 for ( var a in [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17]) { } |
|
26 } |
|
27 |
|
28 if (typeof trap == 'function' && typeof setDebug == 'function') |
|
29 { |
|
30 setDebug(true); |
|
31 "" + f; |
|
32 trap(f, 0, ""); |
|
33 "" + f; |
|
34 } |
|
35 |
|
36 reportCompare(expect, actual, summary); |
|
37 |
|
38 exitFunc ('test'); |
|
39 } |