зеркало из https://github.com/mozilla/gecko-dev.git
Tests for bug 564679
This commit is contained in:
Родитель
bce87a63e6
Коммит
b010f632d9
|
@ -67,6 +67,7 @@ relativesrcdir = intl/uconv/tests
|
|||
|
||||
_TEST_FILES = \
|
||||
test_bug335816.html \
|
||||
test_singlebyte_overconsumption.html \
|
||||
test_unicode_noncharacterescapes.html \
|
||||
test_unicode_noncharacters_gb18030.html \
|
||||
test_unicode_noncharacters_utf8.html \
|
||||
|
|
|
@ -0,0 +1,34 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=564679
|
||||
-->
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=windows-1253">
|
||||
<title>Test for undefined codepoints</title>
|
||||
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body onload="test()">
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** test that single byte decoding resynchronizes after undefined codepoints */
|
||||
function test()
|
||||
{
|
||||
is($("display").innerHTML, "All good.", "No overconsumption");
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
</script>
|
||||
</pre>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=564679">Mozilla Bug 564679</a>
|
||||
<p id="display">Evil.</p>
|
||||
<div id="content" style="display: none"></div>
|
||||
Ò<script type="text/javascript">
|
||||
$("display").innerHTML = "All good.";
|
||||
</script> ->
|
||||
</body>
|
||||
</html>
|
Загрузка…
Ссылка в новой задаче