/** Test for Bug 422537 **/ var isupports_string = SpecialPowers.Cc["@mozilla.org/supports-string;1"]
.createInstance(SpecialPowers.Ci.nsISupportsString);
isupports_string.data = "foo";
for (var i of body) { var xhr = new XMLHttpRequest();
xhr.open("POST", url, true);
if (i == isupports_string)
SpecialPowers.wrap(xhr).send(i);
else
xhr.send(i); var chan = SpecialPowers.wrap(xhr).channel;
if (!SpecialPowers.call_Instanceof(chan, SpecialPowers.Ci.nsIUploadChannel))
throw "Must be an upload channel"; var stream = chan.uploadStream;
if (!stream || !SpecialPowers.call_Instanceof(stream, SpecialPowers.Ci.nsISeekableStream))
throw "Stream must be seekable";
// the following is a no-op, but should not throw an exception
stream.seek(SpecialPowers.Ci.nsISeekableStream.NS_SEEK_CUR, 0);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.