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 : 4 [ + ]: 2 : export default (activeURL) => { 5 : 1 : 6 : 1 : let xhr = new XMLHttpRequest(); 7 : 1 : 8 [ + ]: 1 : xhr.onreadystatechange = () => { 9 : 1 : 10 [ - ]: 1 : if(xhr.readyState === 3){ 11 : 0 : assert.strictEqual(xhr.response, ''); 12 : 0 : } 13 : 1 : else 14 [ - ]: 1 : if(xhr.readyState === 4){ 15 : 0 : assert(false, 'loadstart event did not fire in LOADING state!'); 16 : 0 : } 17 : 1 : 18 : 1 : }; 19 : 1 : 20 [ + ]: 1 : xhr.onloadstart = () => { 21 : 1 : xhr.onreadystatechange = null; 22 : 1 : }; 23 : 1 : 24 : 1 : xhr.open('POST', `${activeURL}/content.py`, true); 25 : 1 : xhr.send(); 26 : 1 : } 27 : 2 : 28 : 2 : /* 29 : 2 : * send-no-response-event-loadstart.htm 30 : 2 : * 31 : 2 : 32 : 2 : <!DOCTYPE html> 33 : 2 : <html> 34 : 2 : <head> 35 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#handler-xhr-onloadstart" data-tested-assertations="/../.." /> 36 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#event-xhr-loadstart" data-tested-assertations="/../.." /> 37 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="/following-sibling::ol/li[9]/ol/li[2]" /> 38 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-response-attribute" data-tested-assertations="/following-sibling::ol/li[1]" /> 39 : 2 : <script src="/resources/testharness.js"></script> 40 : 2 : <script src="/resources/testharnessreport.js"></script> 41 : 2 : <title>XMLHttpRequest: The send() method: Fire a progress event named loadstart (no response entity body and the state is LOADING)</title> 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 == 3) 59 : 2 : { 60 : 2 : assert_equals(xhr.response, ""); 61 : 2 : } 62 : 2 : else if (xhr.readyState == 4) 63 : 2 : { 64 : 2 : assert_unreached("loadstart event did not fire in LOADING state!"); 65 : 2 : } 66 : 2 : }); 67 : 2 : }; 68 : 2 : 69 : 2 : xhr.onloadstart = function() 70 : 2 : { 71 : 2 : test.step(function() { test.done("Test done!"); }); 72 : 2 : }; 73 : 2 : 74 : 2 : xhr.open("POST", "./resources/content.py", true); 75 : 2 : xhr.send(); 76 : 2 : }); 77 : 2 : </script> 78 : 2 : </body> 79 : 2 : </html> 80 : 2 : 81 : 2 : * 82 : 2 : * send-no-response-event-loadstart.htm 83 : 2 : */