]> source.dussan.org Git - jquery-ui.git/commitdiff
Core tests: Updated support comments.
authorScott González <scott.gonzalez@gmail.com>
Mon, 25 Jun 2012 18:46:45 +0000 (14:46 -0400)
committerScott González <scott.gonzalez@gmail.com>
Mon, 25 Jun 2012 18:46:45 +0000 (14:46 -0400)
tests/unit/core/core.js

index a77e618aa7a4cac118f9b29fa1a955fe94d0aae4..b3020179de14c1b9e8ccce9fa0b761ea9929c123 100644 (file)
@@ -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" );
 });