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}/folder.txt`, false); 9 : 1 : xhr.send(); 10 : 1 : 11 : 1 : assert.strictEqual(xhr.responseText, 'bottom\n'); 12 : 1 : } 13 : 2 : 14 : 2 : /* 15 : 2 : * open-url-base.htm 16 : 2 : * 17 : 2 : 18 : 2 : <!DOCTYPE html> 19 : 2 : <html> 20 : 2 : <head> 21 : 2 : <title>XMLHttpRequest: open() resolving URLs - <base></title> 22 : 2 : <script src="/resources/testharness.js"></script> 23 : 2 : <script src="/resources/testharnessreport.js"></script> 24 : 2 : <base href="./resources/"> 25 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-open()-method" data-tested-assertations="following::ol/li[2]/ol/li[2] following::ol/li[7] following::ol/li[14]/ul/li[2]" /> 26 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsetext-attribute" data-tested-assertations="following::ol/li[4]" /> 27 : 2 : </head> 28 : 2 : <body> 29 : 2 : <div id="log"></div> 30 : 2 : <script> 31 : 2 : test(function() { 32 : 2 : var client = new XMLHttpRequest() 33 : 2 : client.open("GET", "folder.txt", false) 34 : 2 : client.send(null) 35 : 2 : assert_equals(client.responseText, "bottom\n") 36 : 2 : }) 37 : 2 : </script> 38 : 2 : </body> 39 : 2 : </html> 40 : 2 : 41 : 2 : * 42 : 2 : * open-url-base.htm 43 : 2 : */