From: Scott González Date: Mon, 25 Jun 2012 18:46:45 +0000 (-0400) Subject: Core tests: Updated support comments. X-Git-Tag: 1.9.0-beta.1~10 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0e550f16bbaf28e991f6236f367c22727bef2bf3;p=jquery-ui.git Core tests: Updated support comments. --- diff --git a/tests/unit/core/core.js b/tests/unit/core/core.js index a77e618aa..b3020179d 100644 --- a/tests/unit/core/core.js +++ b/tests/unit/core/core.js @@ -156,12 +156,16 @@ test( "outerHeight(true) - setter", function() { test( "uniqueId / removeUniqueId", function() { var el = $( "img" ).eq( 0 ); - // TODO use equal(id, undefined) when dropping jQuery 1.6 support (or IE6/7) + // support: jQuery <1.6.2 + // support: IE <8 + // We should use equal( id, undefined ) when dropping jQuery 1.6.1 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(); - // TODO see above + // support: jQuery <1.6.2 + // support: IE <8 + // see above ok( !el.attr( "id" ), "unique id has been removed from element" ); });