diff options
author | James Graham <james@hoppipolla.co.uk> | 2015-03-27 09:15:38 +0000 |
---|---|---|
committer | James Graham <james@hoppipolla.co.uk> | 2015-04-03 23:28:54 +0100 |
commit | 1a81b18b9f22d7bc1a967d08fcc7fbcf2ee200f5 (patch) | |
tree | 1511d894cf8ebebf86f0390d52dfce549fe8838e /tests/wpt/web-platform-tests/XMLHttpRequest/send-authentication-basic-setrequestheader.htm | |
parent | b2a5225831a8eee3ff596dce2be8dc08df4300a0 (diff) | |
download | servo-1a81b18b9f22d7bc1a967d08fcc7fbcf2ee200f5.tar.gz servo-1a81b18b9f22d7bc1a967d08fcc7fbcf2ee200f5.zip |
Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255
Diffstat (limited to 'tests/wpt/web-platform-tests/XMLHttpRequest/send-authentication-basic-setrequestheader.htm')
m--------- | tests/wpt/web-platform-tests | 0 | ||||
-rw-r--r-- | tests/wpt/web-platform-tests/XMLHttpRequest/send-authentication-basic-setrequestheader.htm | 36 |
2 files changed, 36 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests b/tests/wpt/web-platform-tests deleted file mode 160000 -Subproject 29dfb8944e535d439ca94cf7d1b1d9138a8ad11 diff --git a/tests/wpt/web-platform-tests/XMLHttpRequest/send-authentication-basic-setrequestheader.htm b/tests/wpt/web-platform-tests/XMLHttpRequest/send-authentication-basic-setrequestheader.htm new file mode 100644 index 00000000000..84d0dd6b2cd --- /dev/null +++ b/tests/wpt/web-platform-tests/XMLHttpRequest/send-authentication-basic-setrequestheader.htm @@ -0,0 +1,36 @@ +<!doctype html> +<html> + <head> + <title>XMLHttpRequest: send() - "Basic" authenticated request using setRequestHeader()</title> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + <script src="/common/utils.js"></script> + <!-- These spec references do not make much sense simply because the spec doesn't say very much about this.. --> + <link rel="help" href="https://xhr.spec.whatwg.org/#the-setrequestheader()-method" data-tested-assertations="following::ol[1]/li[6]" /> + <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following::code[contains(@title,'http-authorization')]/.." /> + </head> + <body> + <div id="log"></div> + <script> + var test = async_test() + test.step(function() { + var client = new XMLHttpRequest(), + urlstart = location.host + location.pathname.replace(/\/[^\/]*$/, '/'), + user = token() + client.open("GET", location.protocol+'//'+urlstart + "resources/auth2/auth.py", false) + client.setRequestHeader("x-user", user) + client.setRequestHeader('Authorization', 'Basic ' + btoa(user + ":pass")) + client.onreadystatechange = function () { + if (client.readyState < 4) {return} + test.step( function () { + assert_equals(client.responseText, user + '\npass') + assert_equals(client.status, 200) + assert_equals(client.getResponseHeader('x-challenge'), 'DID-NOT') + test.done() + } ) + } + client.send(null) + }) + </script> + </body> +</html> |