Fixed bug in testsuite, tried to fix problem with :selected in Opera 8.54: It does not work the default selections

This commit is contained in:
Jörn Zaefferer 2006-10-08 16:19:51 +00:00
parent fac6a87dcf
commit b30a469a5a
2 changed files with 5 additions and 4 deletions

View file

@ -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 ] );
}
/**