From 1339c1850f394b7200497f2de6e0d7dd13673b59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 22 May 2012 12:54:09 -0400 Subject: [PATCH] Tooltip tests: Added accessibility tests. --- tests/unit/tooltip/tooltip_core.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/unit/tooltip/tooltip_core.js b/tests/unit/tooltip/tooltip_core.js index e25eb3c13..1c8817aa8 100644 --- a/tests/unit/tooltip/tooltip_core.js +++ b/tests/unit/tooltip/tooltip_core.js @@ -21,19 +21,24 @@ test( "markup structure", function() { }); test( "accessibility", function() { - // TODO: full tests - expect( 2 ); + expect( 5 ); var tooltipId, + tooltip, element = $( "#multiple-describedby" ).tooltip(); element.tooltip( "open" ); tooltipId = element.data( "ui-tooltip-id" ); + tooltip = $( "#" + tooltipId ); + equal( tooltip.attr( "role" ), "tooltip", "role" ); equal( element.attr( "aria-describedby" ), "fixture-span " + tooltipId, "multiple describedby when open" ); + // strictEqual to distinguish between .removeAttr( "title" ) and .attr( "title", "" ) + strictEqual( element.attr( "title" ), undefined, "no title when open" ); element.tooltip( "close" ); equal( element.attr( "aria-describedby" ), "fixture-span", "correct describedby when closed" ); + equal( element.attr( "title" ), "...", "title restored when closed" ); }); }( jQuery ) );