send-authentication-basic.htm (1365B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>XMLHttpRequest: send() - "Basic" authenticated requests with user name and password passed to open()</title> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <script src="/common/utils.js"></script> 8 <link rel="help" href="https://xhr.spec.whatwg.org/#the-open()-method" data-tested-assertations="following::ol[1]/li[9]/ol[1]/li[1] following::ol[1]/li[9]/ol[1]/li[2]" /> 9 <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following::code[contains(@title,'http-authorization')]/.." /> 10 </head> 11 <body> 12 <div id="log"></div> 13 <script> 14 test(function() { 15 var client = new XMLHttpRequest(), 16 urlstart = location.host + location.pathname.replace(/\/[^\/]*$/, '/'), 17 user = token(); 18 client.open("GET", location.protocol+'//'+urlstart + "resources/auth1/auth.py", false, user, 'pass') 19 client.setRequestHeader("x-user", user) 20 client.send(null) 21 assert_equals(client.responseText, user + "\n" + 'pass') 22 assert_equals(client.getResponseHeader('x-challenge'), 'DID') 23 }, document.title) 24 </script> 25 <p>Note: this test will only work as expected once per browsing session. Restart browser to re-test.</p> 26 </body> 27 </html>