Tweaked the isXMLDoc iframe test case to test the document, not the body element...
[jquery.git] / test / unit / core.js
index b6dc206..8decd49 100644 (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 );