| <link rel="help" href="https://xhr.spec.whatwg.org/#handler-xhr-onloadend" data-tested-assertations="../.." /> |
| <link rel="help" href="https://xhr.spec.whatwg.org/#event-xhr-loadend" data-tested-assertations="../.." /> |
| <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following::a[contains(@href,'#make-upload-progress-notifications')]/.. following::ol[1]/li[8]" /> |
| <link rel="help" href="https://xhr.spec.whatwg.org/#make-upload-progress-notifications" data-tested-assertations="following::ul[1]/li[2]/ol[1]/li[4]" /> |
| <script src="/resources/testharness.js"></script> |
| <script src="/resources/testharnessreport.js"></script> |
| <title>XMLHttpRequest: The send() method: Fire a progress event named loadend on the XMLHttpRequestUpload (synchronous flag is unset)</title> |
| <script type="text/javascript"> |
| var xhr = new XMLHttpRequest(); |
| xhr.upload.onloadend = function(e) |
| assert_true(e instanceof ProgressEvent); |
| assert_equals(e.type, "loadend"); |
| assert_equals(e.target, xhr.upload); |
| xhr.open("POST", "./resources/content.py", true); |
| xhr.send("Test Message"); |