X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fjquery%2FcoreTest.js;h=d1035cf6476bd165c4b23e00aa14da8471087fa9;hb=0ae7198b9e1614be54eecb5bb0272094996397d9;hp=d7fa5c7cca85a6a2815c9c721212863ab8a97ec4;hpb=41f62e13643462a88fa7d9015346196f3d37b966;p=jquery.git diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index d7fa5c7..d1035cf 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -427,16 +427,3 @@ test("removeAttr(String", function() { ok( $('#mark').removeAttr("class")[0].className == "", "remove class" ); }); -test("evalScripts() with no script elements", function() { - expect(2); - stop(); - $.ajax({ - url: 'data/text.php?' + new Date().getTime(), - success: function(data, status) { - ok ( true, 'before evalScripts()'); - jQuery('#output').html(data).evalScripts(); - ok ( true, 'after evalScripts()'); - start(); - } - }); -});