X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=blobdiff_plain;f=test%2Funit%2Fajax.js;h=8bfd4d3e05fbd661e5df0dc2f2a297cbe1909926;hp=4c8c5009be66ffb4fbd74e861bc13e1ec3a894bf;hb=5a5f67800b048ae274e644547f4b8e03156ffa49;hpb=c55a76a23fdf8e9b22d9792a0f3a39051cc33993 diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 4c8c500..8bfd4d3 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -383,14 +383,15 @@ test(".ajax() - hash", function() { test("jQuery ajax - cross-domain detection", function() { - expect( 3 ); + expect( 4 ); var loc = document.location, otherPort = loc.port === 666 ? 667 : 666, otherProtocol = loc.protocol === "http:" ? "https:" : "http:", protocolFlag, hostFlag, - portFlag; + portFlag, + forcedFlag; if ( jQuery.ajax({ url: otherProtocol + "//" + loc.host, @@ -431,6 +432,20 @@ test("jQuery ajax - cross-domain detection", function() { } } + if ( jQuery.ajax({ + url: loc.protocol + "//" + loc.host, + crossDomain: true, + beforeSend: function( _ , s ) { + forcedFlag = 1; + ok( s.crossDomain , "Test forced crossDomain is detected as cross-domain" ); + return false; + } + }) === false ) { + if ( ! forcedFlag ) { + ok( ! jQuery.support.cors , "Test forced crossDomain is detected as cross-domain (no transport)" ); + } + } + }); test(".ajax() - 304", function() {