Tweaked the isXMLDoc iframe test case to test the document, not the body element (which doesn't exist in IE). Also made the isXMLDoc code handle cases where elem is null, undefined, etc.

This commit is contained in:
John Resig 2009-08-27 19:22:48 +00:00
parent f52c4a3d5f
commit 957cd6fb2a
2 changed files with 4 additions and 4 deletions

View file

@ -280,10 +280,10 @@ test("isXMLDoc - HTML", function() {
document.body.appendChild( iframe );
try {
var body = jQuery(iframe).contents().find("body")[0];
ok( !jQuery.isXMLDoc( body ), "Iframe body element" );
var body = jQuery(iframe).contents()[0];
ok( jQuery.isXMLDoc( body ), "Iframe body element" );
} catch(e){
ok( false, "Iframe body element" );
ok( false, "Iframe body element exception" );
}
document.body.removeChild( iframe );