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.onloadstart = (e) => { 10 : 1 : 11 : 1 : assert(e instanceof ProgressEvent); 12 : 1 : assert(e.type === 'loadstart'); 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-loadstart.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-onloadstart" data-tested-assertations="../.." /> 28 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#event-xhr-loadstart" data-tested-assertations="../.." /> 29 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following::ol[1]/li[8] following-sibling::ol/li[9]/ol/li[3]" /> 30 : 2 : 31 : 2 : <script src="/resources/testharness.js"></script> 32 : 2 : <script src="/resources/testharnessreport.js"></script> 33 : 2 : <title>XMLHttpRequest: The send() method: Fire a progress event named loadstart on the XMLHttpRequestUpload (synchronous flag is unset)</title> 34 : 2 : </head> 35 : 2 : 36 : 2 : <body> 37 : 2 : <div id="log"></div> 38 : 2 : 39 : 2 : <script type="text/javascript"> 40 : 2 : var test = async_test(); 41 : 2 : 42 : 2 : test.step(function() 43 : 2 : { 44 : 2 : var xhr = new XMLHttpRequest(); 45 : 2 : 46 : 2 : xhr.upload.onloadstart = function(e) 47 : 2 : { 48 : 2 : test.step(function() 49 : 2 : { 50 : 2 : assert_true(e instanceof ProgressEvent); 51 : 2 : assert_equals(e.type, "loadstart"); 52 : 2 : assert_equals(e.target, xhr.upload); 53 : 2 : test.done(); 54 : 2 : }); 55 : 2 : }; 56 : 2 : 57 : 2 : xhr.open("POST", "./resources/content.py", true); 58 : 2 : xhr.send("Test Message"); 59 : 2 : }); 60 : 2 : </script> 61 : 2 : </body> 62 : 2 : </html> 63 : 2 : 64 : 2 : * 65 : 2 : * send-response-upload-event-loadstart.mjs 66 : 2 : */