SVN commit 760609 by porten: Found more bugs in these variations. M +5 -0 Date.js --- trunk/tests/khtmltests/regression/tests/js/Date.js #760608:760609 @@ -332,5 +332,10 @@ shouldBeTrue("isNaN(d.setMilliseconds())"); shouldBeTrue("isNaN(d)"); shouldBeTrue("isNaN(d.getDay())"); +// variations +shouldBeTrue("isNaN((new Date()).setMilliseconds(NaN))"); +shouldBeTrue("isNaN((new Date()).setSeconds())"); +shouldBeTrue("isNaN((new Date()).setDate())"); +shouldBeTrue("isNaN((new Date()).setMonth())"); debug("End Of Test");