1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/encoding/test/test_TextDecoder.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<head> 1.7 + <meta charset=utf-8> 1.8 + <title>Test for TextDecoder</title> 1.9 + <script type="text/javascript" src="/resources/testharness.js"></script> 1.10 + <script type="text/javascript" src="/resources/testharnessreport.js"></script> 1.11 + <script type="text/javascript" src="test_TextDecoder.js"></script> 1.12 + <script type="text/javascript" src="test_BOMEncoding.js"></script> 1.13 + <script type="text/javascript" src="worker_helper.js"></script> 1.14 +</head> 1.15 +<body> 1.16 +<div id="log"></div> 1.17 +<script> 1.18 + 1.19 +//SimpleTest.expectAssertions(0, 2); 1.20 + 1.21 +setup({explicit_done: true}); 1.22 +runTest(); 1.23 + 1.24 +function runTest() 1.25 +{ 1.26 + runTextDecoderOptions(); 1.27 + runTextDecoderBOMEnoding(); 1.28 +} 1.29 + 1.30 +runTestInWorker(["test_TextDecoder.js", "test_BOMEncoding.js"]); 1.31 + 1.32 +</script> 1.33 +</body> 1.34 +</html>