summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/test_XHR_header.html
blob: 0fd5829cac060f2fc06ee2a09ce1588923ae9aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for XMLHttpRequest.GetResponseHeader(foo) byte-inflates the output</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <meta charset="utf-8">
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
<script class="testbody" type="application/javascript">
"use strict";
SimpleTest.waitForExplicitFinish();

let xhr = new XMLHttpRequest();
xhr.open('GET', 'file_XHR_header.sjs', true);
xhr.onreadystatechange = function() {
  if (xhr.readyState == 4) {
    ok(xhr.getResponseHeader('X-Custom-Header-Bytes') == "\xE2\x80\xA6",
       "getResponseHeader returns a string of the header's raw bytes");
    SimpleTest.finish();
  }
}
xhr.send(null);
</script>
</pre>
</body>
</html>