X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fattributes.js;h=2d0a0d6cded14ecae26bd6af0623bd042a91ac08;hb=a64dc0405064d68c7b7cd0f0fc8ea60086cbcd21;hp=10f7b190f364d5072bab76a3914431141335683c;hpb=4fcfee4369d184d26ef819c34412fb8d9b09962c;p=jquery.git diff --git a/test/unit/attributes.js b/test/unit/attributes.js index 10f7b19..2d0a0d6 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -4,7 +4,7 @@ var bareObj = function(value) { return value; }; var functionReturningObj = function(value) { return (function() { return value; }); }; test("attr(String)", function() { - expect(30); + expect(31); // This one sometimes fails randomly ?! equals( jQuery('#text1').attr('value'), "Test", 'Check for value attribute' ); @@ -65,6 +65,8 @@ test("attr(String)", function() { ok( jQuery("
").attr("doesntexist") === undefined, "Make sure undefined is returned when no attribute is found." ); ok( jQuery().attr("doesntexist") === undefined, "Make sure undefined is returned when no element is there." ); + + equals( jQuery(document).attr("nodeName"), "#document", "attr works correctly on document nodes (bug #7451)." ); }); if ( !isLocal ) {