summaryrefslogtreecommitdiffstats
path: root/intl/uconv/tests/test_singlebyte_overconsumption.html
blob: 3aeeb928ecbca621a9e60073bc24da1e9e67a6a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!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 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>