Added in support for content-type sniffing for scripts. Fixes #5718.
This commit is contained in:
parent
787f271052
commit
6861b5d4eb
3 changed files with 25 additions and 6 deletions
|
@ -797,6 +797,20 @@ test("jQuery.ajax() - script, Remote with scheme-less URL", function() {
|
|||
});
|
||||
});
|
||||
|
||||
test("jQuery.ajax() - script by content-type", function() {
|
||||
expect(1);
|
||||
|
||||
stop();
|
||||
|
||||
jQuery.ajax({
|
||||
url: "data/script.php",
|
||||
data: { header: "script" },
|
||||
success: function() {
|
||||
start();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
test("jQuery.ajax() - json by content-type", function() {
|
||||
expect(5);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue