Skip to content

Commit 4d865d9

Browse files
patocallaghanmgol
authored andcommitted
Traversing: Fix contents() on <object>s with children
Fixes gh-4384 Closes gh-4385
1 parent 110802c commit 4d865d9

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

src/traversing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jQuery.each( {
145145
return siblings( elem.firstChild );
146146
},
147147
contents: function( elem ) {
148-
if ( typeof elem.contentDocument !== "undefined" ) {
148+
if ( elem.contentDocument != null ) {
149149
return elem.contentDocument;
150150
}
151151

test/unit/traversing.js

+13
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,19 @@ QUnit.test( "contents() for <object />", function( assert ) {
808808
jQuery( "#qunit-fixture" ).append( svgObject );
809809
} );
810810

811+
QUnit.test( "contents() for <object /> with children", function( assert ) {
812+
assert.expect( 1 );
813+
814+
var object = "<object type='application/x-shockwave-flash' width='200' height='300' id='penguin'>" +
815+
"<param name='movie' value='flash/penguin.swf'>" +
816+
"<param name='quality' value='high'>" +
817+
"<img src='images/penguin.jpg' width='200' height='300' alt='Penguin'>" +
818+
"</object>";
819+
820+
var contents = jQuery( object ).contents();
821+
assert.equal( contents.length, 3, "Check object contents children are correct" );
822+
} );
823+
811824
QUnit.test( "contents() for <frame />", function( assert ) {
812825
assert.expect( 2 );
813826

0 commit comments

Comments
 (0)