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

index b3020179de14c1b9e8ccce9fa0b761ea9929c123..41bc2ab5b19b121341464fb73f2977df3f8ad803 100644 (file)
@@ -158,7 +158,7 @@ test( "uniqueId / removeUniqueId", function() {
 
        // support: jQuery <1.6.2
        // support: IE <8
-       // We should use equal( id, undefined ) when dropping jQuery 1.6.1 support (or IE6/7)
+       // We should use strictEqual( 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" );
index 52941784fa397f0e7ac34f7f29eda125155e161f..2b39253a270badb7948b26871c66800b13e7113d 100644 (file)
@@ -34,7 +34,9 @@ test( "accessibility", function() {
        equal( element.attr( "aria-describedby" ), "fixture-span " + tooltipId,
                "multiple describedby when open" );
        // strictEqual to distinguish between .removeAttr( "title" ) and .attr( "title", "" )
-       // TODO actually use strictEqual(..., undefined, msg) when dropping jQuery 1.6 support (or IE6/7)
+       // support: jQuery <1.6.2
+       // support: IE <8
+       // We should use strictEqual( ..., undefined ) when dropping jQuery 1.6.1 support (or IE6/7)
        ok( !element.attr( "title" ), "no title when open" );
        element.tooltip( "close" );
        equal( element.attr( "aria-describedby" ), "fixture-span",
index 33ce447648df38c266ab5e02abea95966e6121ce..ef783cbd380b58dca2c51b47ea4a4a46223eda22 100644 (file)
@@ -42,7 +42,9 @@ test( "enable/disable", function() {
 
        element.tooltip( "disable" );
        equal( $( ".ui-tooltip" ).length, 0, "no tooltip when disabled" );
-       // TODO use equal(..., undefined, msg) when dropping jQuery 1.6 support (or IE6/7)
+       // support: jQuery <1.6.2
+       // support: IE <8
+       // We should use strictEqual( ..., undefined ) when dropping jQuery 1.6.1 support (or IE6/7)
        ok( !tooltip.attr( "title" ), "title removed on disable" );
 
        element.tooltip( "open" );