mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 02:09:05 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* eslint-env worker */
 | 
						|
 | 
						|
onmessage = function () {
 | 
						|
  try {
 | 
						|
    importScripts("evilWorker.js");
 | 
						|
  } catch (ex) {
 | 
						|
    postMessage("success");
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  postMessage("failure");
 | 
						|
};
 |