Branch data Line data Source code
1 [ + ]: 2 : import assert from 'node:assert/strict'; 2 : 2 : import { XMLHttpRequest } from '../../../lib/whatwg-xhr.js'; 3 : 2 : import { ProgressEvent } from '../../../lib/whatwg-xhr.js'; 4 : 2 : 5 [ + ]: 2 : export default (activeURL) => { 6 : 1 : 7 : 1 : let xhr = new XMLHttpRequest(); 8 : 1 : 9 [ + ]: 1 : xhr.upload.onloadend = (e) => { 10 : 1 : 11 : 1 : assert(e instanceof ProgressEvent); 12 : 1 : assert(e.type === 'loadend'); 13 : 1 : assert(e.target === xhr.upload); 14 : 1 : }; 15 : 1 : 16 : 1 : xhr.open('POST', `${activeURL}/content.py`); 17 : 1 : xhr.send('Test Message'); 18 : 1 : } 19 : 2 : 20 : 2 : /* 21 : 2 : * send-response-upload-event-loadend.mjs 22 : 2 : * 23 : 2 : 24 : 2 : <!DOCTYPE html> 25 : 2 : <html> 26 : 2 : <head> 27 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#handler-xhr-onloadend" data-tested-assertations="../.." /> 28 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#event-xhr-loadend" data-tested-assertations="../.." /> 29 : 2 : <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]" /> 30 : 2 : <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]" /> 31 : 2 : 32 : 2 : <script src="/resources/testharness.js"></script> 33 : 2 : <script src="/resources/testharnessreport.js"></script> 34 : 2 : <title>XMLHttpRequest: The send() method: Fire a progress event named loadend on the XMLHttpRequestUpload (synchronous flag is unset)</title> 35 : 2 : </head> 36 : 2 : 37 : 2 : <body> 38 : 2 : <div id="log"></div> 39 : 2 : 40 : 2 : <script type="text/javascript"> 41 : 2 : var test = async_test(); 42 : 2 : 43 : 2 : test.step(function() 44 : 2 : { 45 : 2 : var xhr = new XMLHttpRequest(); 46 : 2 : 47 : 2 : xhr.upload.onloadend = function(e) 48 : 2 : { 49 : 2 : test.step(function() 50 : 2 : { 51 : 2 : assert_true(e instanceof ProgressEvent); 52 : 2 : assert_equals(e.type, "loadend"); 53 : 2 : assert_equals(e.target, xhr.upload); 54 : 2 : test.done(); 55 : 2 : }); 56 : 2 : }; 57 : 2 : 58 : 2 : xhr.open("POST", "./resources/content.py", true); 59 : 2 : xhr.send("Test Message"); 60 : 2 : }); 61 : 2 : </script> 62 : 2 : </body> 63 : 2 : </html> 64 : 2 : 65 : 2 : * 66 : 2 : * send-response-upload-event-loadend.mjs 67 : 2 : */