forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| onmessage = function() {
 | |
|   importScripts(['referrer.sjs?import']);
 | |
|   var xhr = new XMLHttpRequest();
 | |
|   xhr.open('GET', 'referrer.sjs?result', true);
 | |
|   xhr.onload = function() {
 | |
|     postMessage(xhr.responseText);
 | |
|   }
 | |
|   xhr.send();
 | |
| }
 | 
