Fixed toggle() test to exclude konquerer

This commit is contained in:
Jörn Zaefferer 2007-02-05 19:12:23 +00:00
parent 02ffee4610
commit 2c99c18652

View File

@ -7,8 +7,8 @@ test("toggle(Function, Function) - add toggle event and fake a few clicks", func
fn2 = function(e) { count--; }, fn2 = function(e) { count--; },
preventDefault = function(e) { e.preventDefault() }, preventDefault = function(e) { e.preventDefault() },
link = $('#mark'); link = $('#mark');
if($.browser.msie || $.browser.opera) if ( $.browser.msie || $.browser.opera || /konquerer/i.test(navigator.userAgent) )
ok( false, "click() on link gets executed in IE/Opera, not intended behaviour!" ); ok( false, "click() on link gets executed in IE/Opera/Konquerer, not intended behaviour!" );
else else
link.click(preventDefault).click().toggle(fn1, fn2).click().click().click().click().click(); link.click(preventDefault).click().toggle(fn1, fn2).click().click().click().click().click();
ok( count == 1, "Check for toggle(fn, fn)" ); ok( count == 1, "Check for toggle(fn, fn)" );