1
0
Fork 0
firefox/testing/web-platform/tests/xhr/send-data-formdata.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
535 B
JavaScript

// META: title=XMLHttpRequest.send(formdata)
var test = async_test();
test.step(function()
{
var xhr = new XMLHttpRequest();
var form = new FormData();
form.append("id", "0");
form.append("value", "zero");
xhr.onreadystatechange = test.step_func(() => {
if (xhr.readyState == 4) {
assert_equals(xhr.status, 200);
assert_equals(xhr.response, "id:0;value:zero;");
test.done();
}
});
xhr.open("POST", "./resources/form.py", true);
xhr.send(form);
});