summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/event-loadstart-upload.any.js
blob: 3918adb66a953dcd716dfc252e250236dce87959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// META: title=XMLHttpRequest: The send() method: Fire a progress event named loadstart on upload object (synchronous flag is unset)

var test = async_test();
test.step(function () {
  var client = new XMLHttpRequest();
  client.upload.onloadstart = test.step_func(function (e) {
    assert_true(e instanceof ProgressEvent);
    assert_equals(e.total, 7, 'upload.onloadstart: event.total');
    assert_equals(e.loaded, 0, 'upload.onloadstart: event.loaded');
    assert_equals(e.type, "loadstart");
    test.done();
  });
  client.onreadystatechange = test.step_func(function () {
    if (client.readyState === 4)
      assert_unreached("onloadstart not called.");
  });
  client.open("POST", "resources/trickle.py?ms=5&count=8");
  client.send('foo=bar');
});