diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/tabs/tabs.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/unit/tabs/tabs.js b/tests/unit/tabs/tabs.js index 1c470bf7b..1ffa08bbf 100644 --- a/tests/unit/tabs/tabs.js +++ b/tests/unit/tabs/tabs.js @@ -262,6 +262,17 @@ module('tabs: Tickets'); equals( $('a:eq(2)', el).data('load.tabs'), 'test.html', 'should ignore fragment identifier' ); }); + + test('IE expands hash to full url and misinterprets tab as ajax, #4033', function() { // http://ui.jquery.com/bugs/ticket/4033 + expect(1); + + el = $('<div><ul><li><a href="#tab">Tab</a></li></ul><div id="tab"></div></div>') + .appendTo('#main').tabs(); + + equals($('a', el).data('load.tabs'), undefined, 'should not create ajax tab'); + + }); + // test('', function() { // expect(0); |