зеркало из https://github.com/mozilla/gecko-dev.git
Bug 893316 - Http.jsm doesn't listen to method option parameter. r=Mossop
This commit is contained in:
Родитель
b4c9952c8a
Коммит
50edcd0cce
|
@ -35,7 +35,7 @@ function httpRequest(aUrl, aOptions) {
|
|||
.createInstance(Ci.nsIXMLHttpRequest);
|
||||
xhr.mozBackgroundRequest = true; // no error dialogs
|
||||
let hasPostData = "postData" in aOptions;
|
||||
xhr.open("aMethod" in aOptions ? aMethod :
|
||||
xhr.open("method" in aOptions ? aOptions.method :
|
||||
(hasPostData ? "POST" : "GET"), aUrl);
|
||||
xhr.channel.loadFlags = Ci.nsIChannel.LOAD_ANONYMOUS | // don't send cookies
|
||||
Ci.nsIChannel.LOAD_BYPASS_CACHE |
|
||||
|
|
Загрузка…
Ссылка в новой задаче