]> source.dussan.org Git - jquery.git/commitdiff
Core: Update tested jsdom, drop obsolete workarounds
authorMichał Gołębiowski <m.goleb@gmail.com>
Wed, 25 Mar 2015 22:10:12 +0000 (23:10 +0100)
committerMichał Gołębiowski <m.goleb@gmail.com>
Wed, 25 Mar 2015 22:14:23 +0000 (23:14 +0100)
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 95c0a10e15477a5031185e2d656d896905562afa)

Fixes gh-2153
Closes gh-2154

test/unit/data.js

index e7f7017719d721439bd31682549202b86c6fb49a..2e85acaece33b0ee3319fb8d0d3c3934bf0f1a07 100644 (file)
@@ -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" );