blob: 297470b8ef9c16b498f3173bd73183fd464cac76 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset=utf-8>
<title>Test for TextDecoder</title>
<script type="text/javascript" src="/resources/testharness.js"></script>
<script type="text/javascript" src="/resources/testharnessreport.js"></script>
<script type="text/javascript" src="test_TextDecoder.js"></script>
<script type="text/javascript" src="test_BOMEncoding.js"></script>
<script type="text/javascript" src="worker_helper.js"></script>
</head>
<body>
<div id="log"></div>
<script>
//SimpleTest.expectAssertions(0, 2);
setup({explicit_done: true});
runTest();
function runTest()
{
runTextDecoderOptions();
runTextDecoderBOMEnoding();
}
runTestInWorker(["test_TextDecoder.js", "test_BOMEncoding.js"]);
</script>
</body>
</html>
|