summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/send-data-arraybufferview.any.js
blob: a3985b4701db056ed8dfd28050c916179086d448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// META: title=XMLHttpRequest.send(arraybufferview)

var test = async_test();
test.step(function()
{
    var str = "Hello";
    var bytes = str.split("").map(function(ch) { return ch.charCodeAt(0); });
    var xhr = new XMLHttpRequest();
    var arr = new Uint8Array(bytes);

    xhr.onload = test.step_func_done(function() {
        assert_equals(xhr.status, 200);
        assert_equals(xhr.response, str);
    });

    xhr.open("POST", "./resources/content.py", true);
    xhr.send(arr);
});