mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
47 lines
1.2 KiB
HTML
47 lines
1.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=638112
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=796850
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 638112</title>
|
|
<script type="text/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=638112">Mozilla Bug 638112</a>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=796850">Mozilla Bug 796850</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
</div>
|
|
<pre id="test">
|
|
<script type="text/javascript">
|
|
|
|
/** Test for Bug 638112, revised for Bug 796850 **/
|
|
|
|
/* Bug 796850 changed the type of statusText to ByteString. As a result it is
|
|
* now considered to be raw 8 bit encoded rather than UTF8.
|
|
*/
|
|
|
|
function run_test() {
|
|
var req = new XMLHttpRequest();
|
|
req.open("GET", "bug638112.sjs", false);
|
|
req.send(null);
|
|
var statusText = req.statusText;
|
|
|
|
is(statusText, "Information Sans-Autorit\u00E9", "");
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
addLoadEvent(run_test);
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|