blob: 62a158cdcfbcc80fb6f6a7db6f6ffd88e6074c5a [file] [log] [blame]
// META: title=XMLHttpRequest Test: event - error
async_test(function (t) {
var client = new XMLHttpRequest();
client.onerror = t.step_func(function (e) {
assert_true(e instanceof ProgressEvent);
assert_equals(e.type, "error");
t.done();
});
client.open("GET", "http://nonexistent.{{host}}:{{ports[http][0]}}");
client.send("null");
});