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 [ + ]: 2 : if(xhr.readyState === 1){ 10 : 1 : assert.strictEqual(xhr.getResponseHeader('x-custom-header'), null); 11 : 1 : } 12 : 2 : 13 [ + ]: 2 : if(xhr.readyState > 1){ 14 : 1 : assert.strictEqual(xhr.getResponseHeader('x-custom-header'), null); 15 : 1 : } 16 : 2 : 17 [ + ]: 2 : if(xhr.readyState === 4){ 18 : 1 : assert.strictEqual(xhr.getResponseHeader('x-custom-header'), null); 19 : 1 : assert(true); 20 : 1 : } 21 : 1 : }; 22 : 1 : 23 : 1 : xhr.open('GET', `http://www.non-existent`); 24 : 1 : xhr.send(); 25 : 1 : } 26 : 2 : 27 : 2 : /* 28 : 2 : * getresponseheader-error-state.htm 29 : 2 : * 30 : 2 : 31 : 2 : <!DOCTYPE html> 32 : 2 : <html> 33 : 2 : <head> 34 : 2 : <title>XMLHttpRequest: getResponseHeader() in error state (failing cross-origin test)</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/#dom-xmlhttprequest-getresponseheader" data-tested-assertations="following::OL[1]/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 : 45 : 2 : var client = new XMLHttpRequest() 46 : 2 : client.onreadystatechange = function() { 47 : 2 : test.step(function() { 48 : 2 : if(client.readyState == 1) { 49 : 2 : assert_equals(client.getResponseHeader("x-custom-header"), null) 50 : 2 : } 51 : 2 : if(client.readyState > 1) { 52 : 2 : assert_equals(client.getResponseHeader("x-custom-header"), null) 53 : 2 : } 54 : 2 : if(client.readyState == 4){ 55 : 2 : assert_equals(client.getResponseHeader("x-custom-header"), null) 56 : 2 : test.done() 57 : 2 : } 58 : 2 : }) 59 : 2 : } 60 : 2 : var url = location.protocol + "//" + 'www1.' + location.host + (location.pathname.replace(/getresponseheader-error-state\.htm/, 'resources/nocors/folder.txt')) 61 : 2 : client.open("GET", url) 62 : 2 : client.send(null) 63 : 2 : }) 64 : 2 : </script> 65 : 2 : </body> 66 : 2 : </html> 67 : 2 : 68 : 2 : * 69 : 2 : * getresponseheader-error-state.htm 70 : 2 : */