1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
23 * morse@netscape.com, pschwartau@netscape.com
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
40 * Date: 29 October 2001
42 * SUMMARY: Regression test for bug 107138
43 * See http://bugzilla.mozilla.org/show_bug.cgi?id=107138
45 * The bug: arr['1'] == undefined instead of arr['1'] == 'one'.
46 * The bug was intermittent and did not always occur...
48 * The cnSTRESS constant defines how many times to repeat this test.
50 //-----------------------------------------------------------------------------
51 var gTestfile
= 'regress-107138.js';
55 var BUGNUMBER
= 107138;
56 var summary
= 'Regression test for bug 107138';
60 var actualvalues
= [];
62 var expectedvalues
= [];
65 var arr
= ['zero', 'one', 'two', 'three', 'four', 'five',
66 'six', 'seven', 'eight', 'nine', 'ten'];
69 // This bug was intermittent. Stress-test it.
70 for (var j
=0; j
<cnSTRESS
; j
++)
72 status
= inSection(j
+ cnDASH
+ 1);
77 status
= inSection(j
+ cnDASH
+ 2);
82 status
= inSection(j
+ cnDASH
+ 3);
87 status
= inSection(j
+ cnDASH
+ 4);
92 status
= inSection(j
+ cnDASH
+ 5);
97 status
= inSection(j
+ cnDASH
+ 6);
102 status
= inSection(j
+ cnDASH
+ 7);
107 status
= inSection(j
+ cnDASH
+ 8);
112 status
= inSection(j
+ cnDASH
+ 9);
117 status
= inSection(j
+ cnDASH
+ 10);
122 status
= inSection(j
+ cnDASH
+ 11);
127 status
= inSection(j
+ cnDASH
+ 12);
132 status
= inSection(j
+ cnDASH
+ 13);
137 status
= inSection(j
+ cnDASH
+ 14);
142 status
= inSection(j
+ cnDASH
+ 15);
147 status
= inSection(j
+ cnDASH
+ 16);
152 status
= inSection(j
+ cnDASH
+ 17);
157 status
= inSection(j
+ cnDASH
+ 18);
162 status
= inSection(j
+ cnDASH
+ 19);
167 status
= inSection(j
+ cnDASH
+ 20);
172 status
= inSection(j
+ cnDASH
+ 21);
177 status
= inSection(j
+ cnDASH
+ 22);
184 //-----------------------------------------------------------------------------
186 //-----------------------------------------------------------------------------
192 statusitems
[UBound
] = status
;
193 actualvalues
[UBound
] = actual
;
194 expectedvalues
[UBound
] = expect
;
202 printBugNumber(BUGNUMBER
);
203 printStatus (summary
);
205 for (var i
=0; i
<UBound
; i
++)
207 reportCompare(expectedvalues
[i
], actualvalues
[i
], statusitems
[i
]);