2014-09-04 15:48:31 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>XMLHttpRequest: getAllResponseHeaders() excludes status</title>
|
|
|
|
<script src="/resources/testharness.js"></script>
|
|
|
|
<script src="/resources/testharnessreport.js"></script>
|
2014-11-20 19:30:01 +03:00
|
|
|
<link rel="help" href="https://xhr.spec.whatwg.org/#dom-xmlhttprequest-getallresponseheaders" data-tested-assertations="/following::OL[1]/LI[1] /following::OL[1]/LI[3]" />
|
2014-09-04 15:48:31 +04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="log"></div>
|
|
|
|
<script>
|
|
|
|
var test = async_test()
|
|
|
|
test.step(function() {
|
|
|
|
var client = new XMLHttpRequest()
|
2015-07-10 12:26:29 +03:00
|
|
|
var headersUnsent = client.getAllResponseHeaders();
|
|
|
|
test.step(function() {
|
|
|
|
assert_equals(headersUnsent, "")
|
|
|
|
});
|
2014-09-04 15:48:31 +04:00
|
|
|
client.onreadystatechange = function() {
|
|
|
|
test.step(function() {
|
|
|
|
var headers = client.getAllResponseHeaders().toLowerCase()
|
|
|
|
if(client.readyState == 1) {
|
|
|
|
assert_equals(headers, "")
|
|
|
|
}
|
|
|
|
if(client.readyState > 1) {
|
|
|
|
assert_false(headers.indexOf("200 ok") != -1)
|
|
|
|
assert_false(headers.indexOf("http/1.") != -1)
|
|
|
|
}
|
|
|
|
if(client.readyState == 4)
|
|
|
|
test.done()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
client.open("GET", "resources/headers.py")
|
|
|
|
client.send(null)
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|