diff options
Diffstat (limited to 'test/wpt/tests/xhr/abort-upload-event-abort.any.js')
-rw-r--r-- | test/wpt/tests/xhr/abort-upload-event-abort.any.js | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/wpt/tests/xhr/abort-upload-event-abort.any.js b/test/wpt/tests/xhr/abort-upload-event-abort.any.js new file mode 100644 index 0000000..3c85a55 --- /dev/null +++ b/test/wpt/tests/xhr/abort-upload-event-abort.any.js @@ -0,0 +1,31 @@ + var test = async_test("XMLHttpRequest: The abort() method: Fire a progress event named abort on the XMLHttpRequestUpload object"); + + test.step(function() + { + var xhr = new XMLHttpRequest(); + + xhr.onloadstart = function() + { + test.step(function() + { + if (xhr.readyState == 1) + { + xhr.abort(); + } + }); + }; + + xhr.upload.onabort = function(e) + { + test.step(function() + { + assert_true(e instanceof ProgressEvent); + assert_equals(e.type, "abort"); + assert_equals(e.target, xhr.upload); + test.done(); + }); + }; + + xhr.open("POST", "./resources/content.py", true); + xhr.send("Test Message"); + }); |