mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
46 lines
1.1 KiB
HTML
46 lines
1.1 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=466409
|
|
-->
|
|
<head>
|
|
<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=466409">Mozilla Bug 466409</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
<iframe id="testframe"></iframe>
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
/** Test for Bug 466409 **/
|
|
|
|
|
|
function setUniversalDetector(detector)
|
|
{
|
|
var olddetector = SpecialPowers.getCharPref("intl.charset.detector");
|
|
SpecialPowers.setCharPref("intl.charset.detector", detector);
|
|
return olddetector;
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
var testframe = document.getElementById('testframe');
|
|
|
|
testframe.onload = function ()
|
|
{
|
|
setUniversalDetector(olddetector);
|
|
ok(true, "page loaded successfully");
|
|
SimpleTest.finish();
|
|
};
|
|
|
|
var olddetector = setUniversalDetector("universal_charset_detector");
|
|
testframe.src = "bug466409-page.html";
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|