Traversing: Fix contents() on <object>s with children

Fixes gh-4384
Closes gh-4385
This commit is contained in:
Pat O'Callaghan 2019-05-06 18:23:00 +01:00 committed by Michał Gołębiowski-Owczarek
parent 110802c7f2
commit 4d865d96aa
2 changed files with 14 additions and 1 deletions

View File

@ -145,7 +145,7 @@ jQuery.each( {
return siblings( elem.firstChild ); return siblings( elem.firstChild );
}, },
contents: function( elem ) { contents: function( elem ) {
if ( typeof elem.contentDocument !== "undefined" ) { if ( elem.contentDocument != null ) {
return elem.contentDocument; return elem.contentDocument;
} }

View File

@ -808,6 +808,19 @@ QUnit.test( "contents() for <object />", function( assert ) {
jQuery( "#qunit-fixture" ).append( svgObject ); jQuery( "#qunit-fixture" ).append( svgObject );
} ); } );
QUnit.test( "contents() for <object /> with children", function( assert ) {
assert.expect( 1 );
var object = "<object type='application/x-shockwave-flash' width='200' height='300' id='penguin'>" +
"<param name='movie' value='flash/penguin.swf'>" +
"<param name='quality' value='high'>" +
"<img src='images/penguin.jpg' width='200' height='300' alt='Penguin'>" +
"</object>";
var contents = jQuery( object ).contents();
assert.equal( contents.length, 3, "Check object contents children are correct" );
} );
QUnit.test( "contents() for <frame />", function( assert ) { QUnit.test( "contents() for <frame />", function( assert ) {
assert.expect( 2 ); assert.expect( 2 );