From: Jörn Zaefferer Date: Sun, 8 Oct 2006 16:19:51 +0000 (+0000) Subject: Fixed bug in testsuite, tried to fix problem with :selected in Opera 8.54: It does... X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=b30a469a5a66d1e11fbe1fa0bcc30636a23d4d78;p=jquery.git Fixed bug in testsuite, tried to fix problem with :selected in Opera 8.54: It does not work the default selections --- diff --git a/build/test/data/testrunner.js b/build/test/data/testrunner.js index ea73127..398ef3d 100644 --- a/build/test/data/testrunner.js +++ b/build/test/data/testrunner.js @@ -129,9 +129,10 @@ function isSet(a, b, msg) { ret = false; } else ret = false; - if ( !ret && console ) - console.log( msg, a, b ); - Test.push( [ ret, msg ] ); + if ( !ret ) + Test.push( [ ret, msg + " expected: " + b + " result: " + a ] ); + else + Test.push( [ ret, msg ] ); } /** diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 9ae399b..341bd88 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1565,7 +1565,7 @@ jQuery.extend({ enabled: "!a.disabled", disabled: "a.disabled", checked: "a.checked", - selected: "a.selected", + selected: "a.selected || jQuery.attr(a, 'selected')", // Form elements text: "a.type=='text'",