diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-01-06 16:33:33 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-01-06 16:33:33 +0100 |
commit | 5cf4456aafe7dbfb808d847d77eab88d968f03f0 (patch) | |
tree | 22b9d05675e2668e464ded0d3e875e32438c23b1 /tests/unit | |
parent | af85dfcafb32b7503392ca834eaa9d3162d54b28 (diff) | |
download | jquery-ui-5cf4456aafe7dbfb808d847d77eab88d968f03f0.tar.gz jquery-ui-5cf4456aafe7dbfb808d847d77eab88d968f03f0.zip |
Tooltip: Lowercase test html for IE7/8 compat
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/tooltip/tooltip_options.js | 2 |
1 files changed, 1 insertions, 1 deletions
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(), "<div>cu<b>s</b>tomstring</div>", + equal( liveRegion.children().last().html().toLowerCase(), "<div>cu<b>s</b>tomstring</div>", "The accessibility live region will strip the ids but keep the structure" ); }); |