Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 //-----------------------------------------------------------------------------
7 var BUGNUMBER = 352616;
8 var summary = 'Do not Crash reporting error with |for..in| and |let|';
9 var actual = 'No Crash';
10 var expect = 'No Crash';
12 //-----------------------------------------------------------------------------
13 test();
14 //-----------------------------------------------------------------------------
16 function test()
17 {
18 enterFunc ('test');
19 printBugNumber(BUGNUMBER);
20 printStatus (summary);
22 expect = /TypeError: (.+\.c is not a function|Cannot find function c.)/;
23 actual = 'No Error';
24 try
25 {
26 for(a in (let (b=1) 2).c(3)) { };
27 }
28 catch(ex)
29 {
30 actual = ex + '';
31 }
33 reportMatch(expect, actual, summary + ': 1');
35 expect = /TypeError: (.+\.c is not a function|Cannot find function c.)/;
36 actual = 'No Error';
37 try
38 {
39 for(a in (let (b=1,d=2) 2).c(3)) { };
40 }
41 catch(ex)
42 {
43 actual = ex + '';
44 }
46 reportMatch(expect, actual, summary + ': 2');
48 expect = /TypeError: (.+\.c is not a function|Cannot find function c.)/;
49 actual = 'No Error';
50 try
51 {
52 for(a in (let (b=1,d=2) 2).c(3)) { };
53 }
54 catch(ex)
55 {
56 actual = ex + '';
57 }
59 reportMatch(expect, actual, summary + ': 3');
61 exitFunc ('test');
62 }