forked from mirrors/gecko-dev
		
	--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
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			872 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			872 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE HTML>
 | |
| <html>
 | |
| <head>
 | |
|   <title>Test for FileReader API in workers</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 => {
 | |
|   let worker = new Worker('worker_fileReader.js');
 | |
|   worker.postMessage({ tests: 'basic', data });
 | |
| 
 | |
|   worker.onmessage = event => {
 | |
|     if (event.data.type == 'finish') {
 | |
|       SimpleTest.finish();
 | |
|       return;
 | |
|     }
 | |
| 
 | |
|     if (event.data.type == 'check') {
 | |
|       ok(event.data.status, event.data.msg);
 | |
|       return;
 | |
|     }
 | |
| 
 | |
|     ok(false, "Unknown message.");
 | |
|   }
 | |
| });
 | |
| 
 | |
| </script>
 | |
| </body>
 | |
| </html>
 |