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 : const xhr = new XMLHttpRequest(); 7 : 1 : 8 : 1 : assert.strictEqual(xhr.responseType, ''); 9 : 1 : 10 [ + ]: 1 : xhr.onreadystatechange = () => { 11 : 3 : 12 [ + ]: 3 : if(xhr.readyState === 1 || xhr.readyState === 2) 13 [ + ]: 3 : assert.strictEqual(xhr.responseType, ''); 14 : 3 : 15 : 3 : if(xhr.readyState === 3) 16 [ + ]: 3 : xhr.onreadystatechange = null; 17 : 1 : }; 18 : 1 : 19 : 1 : xhr.open('GET', `${activeURL}/headers.py`); 20 : 1 : xhr.send(); 21 : 1 : } 22 : 2 : 23 : 2 : /* 24 : 2 : * responseText-status.html 25 : 2 : * 26 : 2 : 27 : 2 : <!DOCTYPE html> 28 : 2 : <meta charset="utf-8"> 29 : 2 : <title>XMLHttpRequest Test: responseText - status</title> 30 : 2 : <link rel="author" title="Intel" href="http://www.intel.com"> 31 : 2 : <meta name="assert" content="Check if XMLHttpRequest.responseText return empty string if state is not LOADING or DONE"> 32 : 2 : <script src="/resources/testharness.js"></script> 33 : 2 : <script src="/resources/testharnessreport.js"></script> 34 : 2 : 35 : 2 : <div id="log"></div> 36 : 2 : 37 : 2 : <script> 38 : 2 : 39 : 2 : async_test(function (t) { 40 : 2 : var client = new XMLHttpRequest(); 41 : 2 : t.step(function () { 42 : 2 : assert_equals(client.responseText, ""); 43 : 2 : }); 44 : 2 : 45 : 2 : client.onreadystatechange = t.step_func(function () { 46 : 2 : if (client.readyState == 1 || client.readyState == 2) { 47 : 2 : assert_equals(client.responseText, ""); 48 : 2 : } 49 : 2 : 50 : 2 : if (client.readyState == 3) { 51 : 2 : t.done(); 52 : 2 : } 53 : 2 : }); 54 : 2 : 55 : 2 : client.open("GET", "resources/headers.py") 56 : 2 : client.send(null) 57 : 2 : }, document.title); 58 : 2 : 59 : 2 : </script> 60 : 2 : 61 : 2 : * 62 : 2 : * responseText-status.html 63 : 2 : */