regress-465347.js (1195B)
1 /* -*- indent-tabs-mode: nil; js-indent-level: 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/. */ 5 6 //----------------------------------------------------------------------------- 7 var BUGNUMBER = 465347; 8 var summary = 'Test integer to id in js_Int32ToId'; 9 var actual = ''; 10 var expect = ''; 11 12 13 //----------------------------------------------------------------------------- 14 test(); 15 //----------------------------------------------------------------------------- 16 17 function test() 18 { 19 printBugNumber(BUGNUMBER); 20 printStatus (summary); 21 22 var o; 23 24 o = new Array(); 25 26 expect = undefined; 27 o[0xffffffff] = 'end'; 28 actual = o[-1]; 29 reportCompare(expect, actual, summary + ': 1'); 30 31 expect = 42; 32 o['42'] = 42; 33 actual = o[42]; 34 reportCompare(expect, actual, summary + ': 2'); 35 36 // 37 38 o = new Object(); 39 40 expect = undefined; 41 o[0xffffffff] = 'end'; 42 actual = o[-1]; 43 reportCompare(expect, actual, summary + ': 3'); 44 45 expect = 42; 46 o['42'] = 42; 47 actual = o[42]; 48 reportCompare(expect, actual, summary + ': 4'); 49 }