diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-09-03 11:35:10 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-09-03 11:35:10 -0400 |
commit | 78540e2c0c19a39922d19846333740d416b5b487 (patch) | |
tree | 6685df36678315b41f7430da07cf87aae50edb82 /tests/unit/tabs/tabs_tickets.js | |
parent | ddb9a783a8120a734d15d808b25009057bb16ac1 (diff) | |
download | jquery-ui-78540e2c0c19a39922d19846333740d416b5b487.tar.gz jquery-ui-78540e2c0c19a39922d19846333740d416b5b487.zip |
Tabs: Allow non-latin characters for ids. Fixes #4581 - title attribute for remote tabs does not support foreign languages.
Diffstat (limited to 'tests/unit/tabs/tabs_tickets.js')
-rw-r--r-- | tests/unit/tabs/tabs_tickets.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/unit/tabs/tabs_tickets.js b/tests/unit/tabs/tabs_tickets.js index 475579c89..fdc2295e9 100644 --- a/tests/unit/tabs/tabs_tickets.js +++ b/tests/unit/tabs/tabs_tickets.js @@ -70,7 +70,6 @@ test('#5069 - ui.tabs.add creates two tab panels when using a full URL', functio }); - test('#5893 - Sublist in the tab list are considered as tab', function() { // http://dev.jqueryui.com/ticket/5893 expect(1); @@ -80,5 +79,16 @@ test('#5893 - Sublist in the tab list are considered as tab', function() { }); +asyncTest( "#4581 - title attribute for remote tabs does not support foreign languages", function() { + expect( 1 ); + + $( "#tabs2" ).tabs({ + selected: 3, + load: function( event, ui ) { + equal( ui.panel.id, "∫ßáö_Սե", "proper title" ); + start(); + } + }); +}); })(jQuery); |