summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/test_bug289714.html
blob: 11d28347ef4aeef2243d8e37d739b466c3af6a94 (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
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=289714
-->
<head>
  <title>Test for Bug 289714</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=289714">Mozilla Bug 289714</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();

let xhr = new XMLHttpRequest(),
    expectedResponseText = "<?xml version='1.0' encoding='shift-jis'?><xml>" +
                           (new Array(1 << 13)).join("こんにちは") +
                           "</xml>";
xhr.open("GET", "bug289714.sjs");
xhr.onprogress = function() {
  let text = xhr.responseText;
  is(text, expectedResponseText.substring(0, text.length),
     "Data before OnStopRequest is decoded properly");
  xhr.onprogress = undefined;
}
xhr.onload = xhr.onerror = function() {
  is(xhr.responseText, expectedResponseText,
     "Final response is decoded properly");
  SimpleTest.finish();
}
xhr.send();

</script>
</pre>
</body>
</html>