Adding some tests

This commit is contained in:
Boris Zbarsky 2008-09-29 16:36:28 -04:00
parent 34298541ef
commit 707a8e9c0b
3 changed files with 52 additions and 0 deletions

View File

@ -215,6 +215,8 @@ _TEST_FILES = test_bug5141.html \
test_bug368972.html \
test_bug450160.html \
test_bug454326.html \
test_bug457746.html \
bug457746.sjs \
$(NULL)
libs:: $(_TEST_FILES)

View File

@ -0,0 +1,11 @@
function handleRequest(request, response)
{
response.setHeader("Content-Type", "text/plain; charset=ISO-8859-1", false);
const body = [0xC1];
var bos = Components.classes["@mozilla.org/binaryoutputstream;1"]
.createInstance(Components.interfaces.nsIBinaryOutputStream);
bos.setOutputStream(response.bodyOutputStream);
bos.writeByteArray(body, body.length);
}

View File

@ -0,0 +1,39 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=457746
-->
<head>
<title>Test for Bug 457746</title>
<script type="application/javascript" src="/MochiKit/MochiKit.js"></script>
<script type="application/javascript" 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=457746">Mozilla Bug 457746</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 457746 **/
SimpleTest.waitForExplicitFinish();
var xhr = new XMLHttpRequest();
xhr.open("GET", "bug457746.sjs");
xhr.send("");
xhr.abort();
xhr.open("GET", "bug457746.sjs");
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
is(xhr.responseText, "\u00c1", "Broken encoding conversion?");
SimpleTest.finish();
}
}
xhr.send("");
</script>
</pre>
</body>
</html>