mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
32 lines
748 B
HTML
32 lines
748 B
HTML
<!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>
|