2009-01-25 02:10:31 -08:00
|
|
|
|
<!DOCTYPE HTML>
|
|
|
|
|
<html>
|
|
|
|
|
<!--
|
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=445886
|
|
|
|
|
-->
|
|
|
|
|
<head>
|
|
|
|
|
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
|
|
|
|
|
<title>Test for Unicode non-characters</title>
|
2009-05-06 13:46:04 -07:00
|
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
2009-01-25 02:10:31 -08:00
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
function Inject()
|
|
|
|
|
{
|
|
|
|
|
$("display").innerHTML = "Evil";
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
</head>
|
|
|
|
|
<body <EFBFBD>>onload="Inject()">
|
|
|
|
|
<pre id="test">
|
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
|
|
|
|
|
|
/** test that UTF-8 decoding resynchronizes after incomplete sequences */
|
|
|
|
|
function test()
|
|
|
|
|
{
|
2009-03-10 14:07:33 -07:00
|
|
|
|
is($("display").innerHTML, "All good.", "No overconsumption");
|
2009-01-25 02:10:31 -08:00
|
|
|
|
SimpleTest.finish();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setTimeout(test, 100);
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
</script>
|
|
|
|
|
</pre>
|
|
|
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=445886">Mozilla Bug 445886</a>
|
|
|
|
|
<p id="display">All good.</p>
|
|
|
|
|
<div id="content" style="display: none"></div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|