mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Core: Update tested jsdom, drop obsolete workarounds
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 95c0a10e15
)
Fixes gh-2153
Closes gh-2154
This commit is contained in:
parent
7b11131097
commit
19c0377fcc
@ -134,7 +134,7 @@ test("Data is not being set on comment and text nodes", function() {
|
||||
});
|
||||
|
||||
test("jQuery.acceptData", function() {
|
||||
expect( 11 );
|
||||
expect( 10 );
|
||||
|
||||
var flash, pdf;
|
||||
|
||||
@ -142,7 +142,6 @@ test("jQuery.acceptData", function() {
|
||||
ok( jQuery.acceptData( document.documentElement ), "documentElement" );
|
||||
ok( jQuery.acceptData( {} ), "object" );
|
||||
ok( !jQuery.acceptData( document.createElement( "embed" ) ), "embed" );
|
||||
ok( !jQuery.acceptData( document.createElement( "applet" ) ), "applet" );
|
||||
|
||||
flash = document.createElement( "object" );
|
||||
flash.setAttribute( "classid", "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" );
|
||||
|
Loading…
Reference in New Issue
Block a user