diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/xhr/event-error.sub.any.js | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/xhr/event-error.sub.any.js')
-rw-r--r-- | testing/web-platform/tests/xhr/event-error.sub.any.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/web-platform/tests/xhr/event-error.sub.any.js b/testing/web-platform/tests/xhr/event-error.sub.any.js new file mode 100644 index 0000000000..ecc4678e68 --- /dev/null +++ b/testing/web-platform/tests/xhr/event-error.sub.any.js @@ -0,0 +1,28 @@ +// 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'); +}, 'onerror should be called'); + +async_test((t) => { + const xhr = new XMLHttpRequest(); + xhr.open('GET', 'resources/bad-chunk-encoding.py'); + xhr.addEventListener('load', t.unreached_func('load')); + xhr.addEventListener('error', t.step_func((e) => { + assert_equals(e.loaded, 0, 'loaded'); + assert_equals(e.total, 0, 'total'); + })); + xhr.addEventListener('loadend', t.step_func_done((e) => { + assert_equals(e.loaded, 0, 'loaded'); + assert_equals(e.total, 0, 'total'); + })); + xhr.send(); +}, 'error while reading body should report zeros for loaded and total'); |