Skip to content

Commit

Permalink
Data: Use a PDF object instead of a Java applet for acceptData testing
Browse files Browse the repository at this point in the history
This should fix "Java out of date" errors on BrowserStack.

(cherry-picked from 087d280)

Fixes gh-1938
Closes gh-2028
  • Loading branch information
mgol committed Jan 29, 2015
1 parent 2524da0 commit 4e3c48f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ test("Data is not being set on comment and text nodes", function() {
test("jQuery.acceptData", function() {
expect( 11 );

var flash, applet;
var flash, pdf;

ok( jQuery.acceptData( document ), "document" );
ok( jQuery.acceptData( document.documentElement ), "documentElement" );
Expand All @@ -148,9 +148,9 @@ test("jQuery.acceptData", function() {
flash.setAttribute( "classid", "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" );
ok( jQuery.acceptData( flash ), "flash" );

applet = document.createElement( "object" );
applet.setAttribute( "classid", "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" );
ok( !jQuery.acceptData( applet ), "applet" );
pdf = document.createElement( "object" );
pdf.setAttribute( "classid", "clsid:CA8A9780-280D-11CF-A24D-444553540000" );
ok( !jQuery.acceptData( pdf ), "pdf" );

ok( !jQuery.acceptData( document.createComment( "" ) ), "comment" );
ok( !jQuery.acceptData( document.createTextNode( "" ) ), "text" );
Expand Down

0 comments on commit 4e3c48f

Please sign in to comment.