From 5cf4456aafe7dbfb808d847d77eab88d968f03f0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=CC=88rn=20Zaefferer?= Date: Mon, 6 Jan 2014 16:33:33 +0100 Subject: [PATCH] Tooltip: Lowercase test html for IE7/8 compat --- tests/unit/tooltip/tooltip_options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/tooltip/tooltip_options.js b/tests/unit/tooltip/tooltip_options.js index bced8e860..17f0a4237 100644 --- a/tests/unit/tooltip/tooltip_options.js +++ b/tests/unit/tooltip/tooltip_options.js @@ -49,7 +49,7 @@ test( "content: return jQuery", function() { }).tooltip( "open" ), liveRegion = element.tooltip( "instance" ).liveRegion; deepEqual( $( "#" + element.data( "ui-tooltip-id" ) ).text(), "customstring" ); - equal( liveRegion.children().last().html(), "
customstring
", + equal( liveRegion.children().last().html().toLowerCase(), "
customstring
", "The accessibility live region will strip the ids but keep the structure" ); }); -- 2.39.5