bug1066659.js (368B)
1 function reportCompare (expected, actual) { 2 var actual_t = typeof actual; 3 var output = ""; 4 output += "x" + actual_t + " "; 5 expected != actual; 6 output += undefined; 7 } 8 gczeal(7,1); 9 for (var i=0; i<900; i++) { 10 reportCompare("abc", function() {}); 11 reportCompare(null, 10); 12 }