id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
3139,qunit: calling serialArray( [ undefined ] ) throws TypeError,mark,joern,"When two arrays are compared with isSet() and they are not the same then serialArray is called to display the actual and expected arrays. If serialArray is called with an array that has an undefined or null item in it then testrunner.js line 289: 

{{{
var str = a[i].nodeName;
}}}

Throws a Type Error. Modifying this to:

{{{
var str = a[i] != undefined ? a[i].nodeName : undefined;
}}}

Appears to fix the problem.",bug,closed,minor,1.3,qunit,1.2.6,wontfix,,,,
