Skip to content

Commit

Permalink
Core: Update tested jsdom, drop obsolete workarounds
Browse files Browse the repository at this point in the history
The latest version supporting Node.js is 3.1.2; some workarounds are not needed
for this version. For example, in jsdom 3.1.2 a document created via
document.implementation.createHTMLDocument( "" ) has a body.

(partially cherry-picked from 95c0a10)

Fixes gh-2153
Closes gh-2154
  • Loading branch information
mgol committed Mar 25, 2015
1 parent 7b11131 commit 19c0377
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/unit/data.js
Expand Up @@ -134,15 +134,14 @@ test("Data is not being set on comment and text nodes", function() {
}); });


test("jQuery.acceptData", function() { test("jQuery.acceptData", function() {
expect( 11 ); expect( 10 );


var flash, pdf; var flash, pdf;


ok( jQuery.acceptData( document ), "document" ); ok( jQuery.acceptData( document ), "document" );
ok( jQuery.acceptData( document.documentElement ), "documentElement" ); ok( jQuery.acceptData( document.documentElement ), "documentElement" );
ok( jQuery.acceptData( {} ), "object" ); ok( jQuery.acceptData( {} ), "object" );
ok( !jQuery.acceptData( document.createElement( "embed" ) ), "embed" ); ok( !jQuery.acceptData( document.createElement( "embed" ) ), "embed" );
ok( !jQuery.acceptData( document.createElement( "applet" ) ), "applet" );


flash = document.createElement( "object" ); flash = document.createElement( "object" );
flash.setAttribute( "classid", "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ); flash.setAttribute( "classid", "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" );
Expand Down

0 comments on commit 19c0377

Please sign in to comment.