blob: 3e28398b52a33030bceb54b25bdaa540b0f1f462 [file] [log] [blame]
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
<script src="resources/char-decoding-utils.js"></script>
</head>
<body>
<script>
description("This tests decoding characters in various character sets.");
// Legacy Mac encodings.
testDecode('mac', '%C3', 'U+221A');
testDecode('macintosh', '%C3', 'U+221A');
testDecode('MacRoman', '%C3', 'U+221A');
testDecode('x-mac-greek', '%B0', 'U+0391');
testDecode('x-mac-ukrainian', '%80', 'U+0410');
testDecode('x-mac-cyrillic', '%80', 'U+0410');
testDecode('mac-cyrillic', '%80', 'U+0410');
testDecode('x-mac-centraleurroman', '%81', 'U+0100');
testDecode('x-mac-ce', '%81', 'U+0100');
testDecode('x-mac-turkish', '%81', 'U+00C5');
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>