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.onreadystatechange = () => { 10 : 3 : 11 [ + ]: 3 : if(xhr.readyState === 4){ 12 : 1 : assert.strictEqual(xhr.response, ''); 13 : 1 : } 14 : 1 : }; 15 : 1 : 16 [ + ]: 1 : xhr.onloadend = (e) => { 17 : 1 : 18 : 1 : assert(e instanceof ProgressEvent); 19 : 1 : assert.strictEqual(e.type, 'loadend'); 20 : 1 : 21 : 1 : xhr.onloadend = null; 22 : 1 : xhr.onreadystatechange = null; 23 : 1 : }; 24 : 1 : 25 : 1 : xhr.open('POST', `${activeURL}/content.py`, true); 26 : 1 : xhr.send(); 27 : 1 : } 28 : 2 : 29 : 2 : /* 30 : 2 : * send-no-response-event-loadend.htm 31 : 2 : * 32 : 2 : 33 : 2 : <!DOCTYPE html> 34 : 2 : <html> 35 : 2 : <head> 36 : 2 : <script src="/resources/testharness.js"></script> 37 : 2 : <script src="/resources/testharnessreport.js"></script> 38 : 2 : <title>XMLHttpRequest: The send() method: Fire a progress event named loadend (no response entity body)</title> 39 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#handler-xhr-onloadend" data-tested-assertations="/../.." /> 40 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#event-xhr-loadend" data-tested-assertations="/../.." /> 41 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#infrastructure-for-the-send()-method" data-tested-assertations="following::dt[10] /following-sibling::ol/li[10]" /> 42 : 2 : </head> 43 : 2 : 44 : 2 : <body> 45 : 2 : <div id="log"></div> 46 : 2 : 47 : 2 : <script type="text/javascript"> 48 : 2 : var test = async_test(); 49 : 2 : 50 : 2 : test.step(function () 51 : 2 : { 52 : 2 : var xhr = new XMLHttpRequest(); 53 : 2 : 54 : 2 : xhr.onreadystatechange = function() 55 : 2 : { 56 : 2 : test.step(function() 57 : 2 : { 58 : 2 : if (xhr.readyState == 4) 59 : 2 : { 60 : 2 : assert_equals(xhr.response, ""); 61 : 2 : } 62 : 2 : }); 63 : 2 : }; 64 : 2 : 65 : 2 : xhr.onloadend = function(e) 66 : 2 : { 67 : 2 : test.step(function() 68 : 2 : { 69 : 2 : assert_true(e instanceof ProgressEvent); 70 : 2 : assert_equals(e.type, "loadend"); 71 : 2 : test.step(function() { test.done(); }); 72 : 2 : }); 73 : 2 : }; 74 : 2 : 75 : 2 : xhr.open("POST", "./resources/content.py", true); 76 : 2 : xhr.send(); 77 : 2 : }); 78 : 2 : </script> 79 : 2 : </body> 80 : 2 : </html> 81 : 2 : 82 : 2 : * 83 : 2 : * send-no-response-event-loadend.htm 84 : 2 : */