X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fjquery%2Fjquery.js;h=97038331c668237e08f5eb331cc535aa8b38e219;hb=060c55bf043922401cb033117a3091ad24dbf047;hp=17e2a66a13568bce478d130c2bbc4d24e5111cb0;hpb=fa2aaf27c29769ca6611a77889321443db47e8e0;p=jquery.git diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 17e2a66..9703833 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1662,6 +1662,10 @@ jQuery.extend({ * @test t( "All Children of ID", "#foo/*", ["sndp", "en", "sap"] ); * @test t( "All Children of ID with no children", "#firstUL/*", [] ); * + * @test t( ":not() Existing attribute", "input:not([@name])", ["text2", "check2"]); + * @test t( ":not() Equals attribute", "select:not([@name=select1])", ["select2", "select3"]); + * @test t( ":not() Equals quoted attribute", "select:not([@name='select1'])", ["select2", "select3"]); + * * @name $.find * @type Array * @private