MYXML = new XMLList(xmlDoc), MYXML.descendants('Team') PASSED!
MYXML = new XMLList(xmlDoc), MYXML.descendants('Team').length() PASSED!
MYXML = new XMLList(xmlDoc), MYXML.descendants('Team') instanceof XMLList PASSED!
MYXML = new XMLList(xmlDoc), MYXML.descendants('foo') PASSED!
MYXML = new XMLList(xmlDoc), MYXML.descendants('foo').length() PASSED!
MYXML = new XMLList(xmlDoc), MYXML.descendants('foo') instanceof XMLList PASSED!
MYXML = new XMLList(xmlDoc), MYXML.descendants('nomatch') PASSED!
MYXML = new XMLList(xmlDoc), MYXML.descendants('nomatch').length() PASSED!
MYXML = new XMLList(xmlDoc), MYXML.descendants('nomatch') instanceof XMLList PASSED!
