From: Jörn Zaefferer Date: Mon, 6 Jan 2014 15:33:33 +0000 (+0100) Subject: Tooltip: Lowercase test html for IE7/8 compat X-Git-Tag: 1.11.0-beta.1~125 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5cf4456aafe7dbfb808d847d77eab88d968f03f0;p=jquery-ui.git Tooltip: Lowercase test html for IE7/8 compat --- 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" ); });