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.open('GET', `${activeURL}/delay.py?ms=0`); 9 : 1 : 10 [ + ]: 1 : xhr.onreadystatechange = () => { 11 : 3 : assert.throws( 12 [ + ]: 3 : () => { 13 : 3 : xhr.setRequestHeader('x-test', 'test'); 14 : 3 : }, 15 [ + ]: 3 : (err) => { 16 : 3 : assert(err instanceof DOMException, 'DOMException expected'); 17 : 3 : assert(err.name === 'InvalidStateError', 'InvalidStateError expected'); 18 : 3 : 19 : 3 : return true; 20 : 3 : } 21 : 3 : ); 22 : 1 : }; 23 : 1 : 24 : 1 : xhr.send(); 25 : 1 : } 26 : 2 : 27 : 2 : /* 28 : 2 : * setrequestheader-after-send.htm 29 : 2 : * 30 : 2 : 31 : 2 : <!doctype html> 32 : 2 : <html> 33 : 2 : <head> 34 : 2 : <title>XMLHttpRequest: setRequestHeader() after send()</title> 35 : 2 : <script src="/resources/testharness.js"></script> 36 : 2 : <script src="/resources/testharnessreport.js"></script> 37 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-setrequestheader()-method" data-tested-assertations="/following::ol/li[2]" /> 38 : 2 : </head> 39 : 2 : <body> 40 : 2 : <div id="log"></div> 41 : 2 : <script> 42 : 2 : var test = async_test() 43 : 2 : test.step(function() { 44 : 2 : var client = new XMLHttpRequest() 45 : 2 : client.open("GET", "resources/delay.py?ms=0") 46 : 2 : client.onreadystatechange = function() { 47 : 2 : test.step(function() { 48 : 2 : assert_throws_dom("InvalidStateError", function() { client.setRequestHeader("x-test", "test") }) 49 : 2 : if(client.readyState == 4) 50 : 2 : test.done() 51 : 2 : }) 52 : 2 : } 53 : 2 : client.send(null) 54 : 2 : }) 55 : 2 : </script> 56 : 2 : </body> 57 : 2 : </html> 58 : 2 : 59 : 2 : * 60 : 2 : * setrequestheader-after-send.htm 61 : 2 : */