rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL
// #7653, #8125, #8152: local protocol detection
rlocalProtocol = /^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,
- rnoContent = /^(?:GET|HEAD)$/,
+ rnoContent = /^(?:GET|HEAD|DELETE)$/,
rprotocol = /^\/\//,
rquery = /\?/,
rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
});
+
+test("jQuery.ajax - DELETE requests", function() {
+ expect(1);
+
+ jQuery.ajax({
+ url: "devo.html",
+ type: "DELETE",
+ data: { "whip": "it", "qty": "good" },
+ beforeSend: function( _ , s ) {
+ equal( s.url, "devo.html?whip=it&qty=good", "Delete requests encode data in URL" );
+ return false;
+ }
+ });
+});
+
test("jQuery.ajax - beforeSend", function() {
expect(1);
stop();