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}/accept.py`, false); 9 : 1 : xhr.send(); 10 : 1 : assert.strictEqual(xhr.responseText, '*/*'); 11 : 1 : 12 : 1 : /**/ 13 : 1 : 14 : 1 : xhr.open('GET', `${activeURL}/accept.py`, false); 15 : 1 : xhr.setRequestHeader('Accept', 'x-something/vague, text/html5'); 16 : 1 : xhr.send(); 17 : 1 : assert.strictEqual(xhr.responseText, 'x-something/vague, text/html5'); 18 : 1 : } 19 : 2 : 20 : 2 : /* 21 : 2 : * send-accept.htm 22 : 2 : */ 23 : 2 : 24 : 2 : // <!doctype html> 25 : 2 : // <html> 26 : 2 : // <head> 27 : 2 : // <title>XMLHttpRequest: send() - Accept</title> 28 : 2 : // <script src="/resources/testharness.js"></script> 29 : 2 : // <script src="/resources/testharnessreport.js"></script> 30 : 2 : // <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following::code[contains(text(),'*/*')]/.. following::code[contains(text(),'Accept')]/.. following::code[contains(text(),'Accept')]/../following::ul[1]/li[1]" /> 31 : 2 : // </head> 32 : 2 : // <body> 33 : 2 : // <div id="log"></div> 34 : 2 : // <script> 35 : 2 : // test(function() { 36 : 2 : // var client = new XMLHttpRequest() 37 : 2 : // client.open("GET", "resources/accept.py", false) 38 : 2 : // client.send(null) 39 : 2 : // assert_equals(client.responseText, "*/*") 40 : 2 : // client.open("GET", "resources/accept.py", false) 41 : 2 : // client.setRequestHeader("Accept", "x-something/vague, text/html5") 42 : 2 : // client.send(null) 43 : 2 : // assert_equals(client.responseText, "x-something/vague, text/html5") 44 : 2 : // }) 45 : 2 : // </script> 46 : 2 : // </body> 47 : 2 : // </html> 48 : 2 : 49 : 2 : /* 50 : 2 : * send-accept.htm 51 : 2 : */