forked from mirrors/gecko-dev
		
	 2fc80505b6
			
		
	
	
		2fc80505b6
		
	
	
	
	
		
			
			--HG-- rename : dom/file/tests/test_fileapi.html => dom/file/tests/test_fileapi_basic.html rename : dom/file/tests/test_fileapi_worker.html => dom/file/tests/test_fileapi_basic_worker.html rename : dom/file/tests/test_fileapi.html => dom/file/tests/test_fileapi_encoding.html rename : dom/file/tests/test_fileapi_worker.html => dom/file/tests/test_fileapi_encoding_worker.html rename : dom/file/tests/test_fileapi.html => dom/file/tests/test_fileapi_other.html rename : dom/file/tests/test_fileapi_worker.html => dom/file/tests/test_fileapi_other_worker.html rename : dom/file/tests/test_fileapi.html => dom/file/tests/test_fileapi_twice.html rename : dom/file/tests/test_fileapi_worker.html => dom/file/tests/test_fileapi_twice_worker.html
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			557 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			557 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE HTML>
 | |
| <html>
 | |
| <head>
 | |
|   <title>Test for FileReader API</title>
 | |
|   <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
 | |
|   <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
 | |
|   <script type="text/javascript" src="common_fileReader.js"></script>
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| <script class="testbody" type="text/javascript">
 | |
| 
 | |
| SimpleTest.waitForExplicitFinish();
 | |
| SimpleTest.requestLongerTimeout(3);
 | |
| 
 | |
| test_setup()
 | |
| .then(data => {
 | |
|   return runEncodingTests(data);
 | |
| })
 | |
| .then(SimpleTest.finish);
 | |
| 
 | |
| </script>
 | |
| </body>
 | |
| </html>
 |