diff options
author | Scott González <scott.gonzalez@gmail.com> | 2016-07-06 13:09:15 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-07-06 13:09:15 -0400 |
commit | 9d807ba1095de773bc78fda077fcc2a0bfc25eac (patch) | |
tree | b5a40ed315a8779eedfb6aa49a113b0729d97315 /tests/unit | |
parent | 71b93ed2473313f5f95439fb6f287ee22d0e19e1 (diff) | |
download | jquery-ui-9d807ba1095de773bc78fda077fcc2a0bfc25eac.tar.gz jquery-ui-9d807ba1095de773bc78fda077fcc2a0bfc25eac.zip |
Tabs: Remove test for Ajax URLs containing hashes
This hasn't been a problem for a long time and jQuery no longer removes
the hash in 3.0.0, so the test started to fail even though the actual
code is working just fine.
Ref #3627
Ref jquery/jquery#1732
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/tabs/core.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/unit/tabs/core.js b/tests/unit/tabs/core.js index c0097ecfb..f367b098e 100644 --- a/tests/unit/tabs/core.js +++ b/tests/unit/tabs/core.js @@ -647,18 +647,6 @@ QUnit.test( "keyboard support - CTRL+UP, ALT+PAGE_DOWN, ALT+PAGE_UP", function( setTimeout( step1 ); } ); -QUnit.test( "#3627 - Ajax tab with url containing a fragment identifier fails to load", function( assert ) { - assert.expect( 1 ); - - $( "#tabs2" ).tabs( { - active: 2, - beforeLoad: function( event, ui ) { - event.preventDefault(); - assert.ok( /test.html$/.test( ui.ajaxSettings.url ), "should ignore fragment identifier" ); - } - } ); -} ); - QUnit.test( "#4033 - IE expands hash to full url and misinterprets tab as ajax", function( assert ) { assert.expect( 2 ); |