From: Jörn Zaefferer Date: Tue, 19 Jun 2012 15:08:38 +0000 (+0200) Subject: Core: Make uniqueId test pass in IE6/7 with jQuery 1.6, where undefined id is returne... X-Git-Tag: 1.9.0-beta.1~16 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8f6c656c280354111302bc352bde0f9db4d1ba54;p=jquery-ui.git Core: Make uniqueId test pass in IE6/7 with jQuery 1.6, where undefined id is returned as empty string --- diff --git a/tests/unit/core/core.js b/tests/unit/core/core.js index db9d82819..a77e618aa 100644 --- a/tests/unit/core/core.js +++ b/tests/unit/core/core.js @@ -156,11 +156,13 @@ test( "outerHeight(true) - setter", function() { test( "uniqueId / removeUniqueId", function() { var el = $( "img" ).eq( 0 ); - equal( el.attr( "id" ), undefined, "element has no initial id" ); + // TODO use equal(id, undefined) when dropping jQuery 1.6 support (or IE6/7) + ok( !el.attr( "id" ), "element has no initial id" ); el.uniqueId(); ok( /ui-id-\d+$/.test( el.attr( "id" ) ), "element has generated id" ); el.removeUniqueId(); - equal( el.attr( "id" ), undefined, "unique id has been removed from element" ); + // TODO see above + ok( !el.attr( "id" ), "unique id has been removed from element" ); }); })( jQuery );