Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/base/test/unit/xpcshell.toml
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
var { HttpServer } = ChromeUtils.importESModule(
);
var server = new HttpServer();
server.start(-1);
var docbody =
function handler(metadata, response) {
var { NetUtil } = ChromeUtils.importESModule(
"resource://gre/modules/NetUtil.sys.mjs"
);
let body = NetUtil.readInputStreamToString(
metadata.bodyInputStream,
metadata.bodyInputStream.available()
);
response.setStatusLine(metadata.httpVersion, 200, "OK");
response.write(body, body.length);
}
function run_test() {
do_test_pending();
server.registerPathHandler("/foo", handler);
var parser = new DOMParser();
let doc = parser.parseFromString(docbody, "text/html");
let xhr = new XMLHttpRequest();
xhr.onload = function () {
Assert.equal(xhr.responseText, docbody);
server.stop(do_test_finished);
};
xhr.onerror = function () {
Assert.equal(false, false);
server.stop(do_test_finished);
};
xhr.open(
"POST",
true
);
xhr.send(doc);
}