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 : let pass = false; 10 : 1 : 11 [ + ]: 1 : xhr.onload = (e) => { 12 : 1 : 13 : 1 : assert(e instanceof ProgressEvent); 14 : 1 : assert.strictEqual(e.type, 'load'); 15 : 1 : pass = true; 16 : 1 : }; 17 : 1 : 18 : 1 : xhr.open('POST', `${activeURL}/content.py`, false); 19 : 1 : xhr.send(); 20 : 1 : 21 : 1 : assert.strictEqual(xhr.response, ''); 22 : 1 : assert(pass); 23 : 1 : } 24 : 2 : 25 : 2 : /* 26 : 2 : * send-sync-no-response-event-load.htm 27 : 2 : * 28 : 2 : 29 : 2 : <!DOCTYPE html> 30 : 2 : <html> 31 : 2 : <head> 32 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#handler-xhr-onload" data-tested-assertations="../.." /> 33 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#event-xhr-load" data-tested-assertations="../.." /> 34 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#infrastructure-for-the-send()-method" data-tested-assertations="following::dt[11] following::a[contains(@href,'#switch-done')]/.." /> 35 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#switch-done" data-tested-assertations="following::ol/li[1] following::ol/li[6]" /> 36 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-response-attribute" data-tested-assertations="/following::ol/li[3]" /> 37 : 2 : <script src="/resources/testharness.js"></script> 38 : 2 : <script src="/resources/testharnessreport.js"></script> 39 : 2 : <title>XMLHttpRequest: The send() method: Fire an event named load (no response entity body and the synchronous flag is set)</title> 40 : 2 : </head> 41 : 2 : 42 : 2 : <body> 43 : 2 : <div id="log"></div> 44 : 2 : 45 : 2 : <script type="text/javascript"> 46 : 2 : test(function() 47 : 2 : { 48 : 2 : var xhr = new XMLHttpRequest(); 49 : 2 : var pass = false; 50 : 2 : 51 : 2 : xhr.onload = function(e) 52 : 2 : { 53 : 2 : assert_true(e instanceof ProgressEvent); 54 : 2 : assert_equals(e.type, "load"); 55 : 2 : pass = true; 56 : 2 : }; 57 : 2 : 58 : 2 : xhr.open("POST", "./resources/content.py", false); 59 : 2 : xhr.send(); 60 : 2 : 61 : 2 : assert_equals(xhr.response, ""); 62 : 2 : assert_true(pass); 63 : 2 : }); 64 : 2 : </script> 65 : 2 : </body> 66 : 2 : </html> 67 : 2 : 68 : 2 : * 69 : 2 : * send-sync-no-response-event-load.htm 70 : 2 : */