Skip to content

Commit 0e550f1

Browse files
committed
Core tests: Updated support comments.
1 parent f612a41 commit 0e550f1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/unit/core/core.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,16 @@ test( "outerHeight(true) - setter", function() {
156156
test( "uniqueId / removeUniqueId", function() {
157157
var el = $( "img" ).eq( 0 );
158158

159-
// TODO use equal(id, undefined) when dropping jQuery 1.6 support (or IE6/7)
159+
// support: jQuery <1.6.2
160+
// support: IE <8
161+
// We should use equal( id, undefined ) when dropping jQuery 1.6.1 support (or IE6/7)
160162
ok( !el.attr( "id" ), "element has no initial id" );
161163
el.uniqueId();
162164
ok( /ui-id-\d+$/.test( el.attr( "id" ) ), "element has generated id" );
163165
el.removeUniqueId();
164-
// TODO see above
166+
// support: jQuery <1.6.2
167+
// support: IE <8
168+
// see above
165169
ok( !el.attr( "id" ), "unique id has been removed from element" );
166170
});
167171

0 commit comments

Comments
 (0)