forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			946 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			946 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE HTML>
 | |
| <html>
 | |
|   <head>
 | |
|     <title>Bug 1045891</title>
 | |
|   </head>
 | |
|   <body>
 | |
|   <script type="text/javascript">
 | |
|     page_id = window.location.hash.substring(1);
 | |
|     try {
 | |
|       worker = new SharedWorker(
 | |
|           'file_testserver.sjs?file='+
 | |
|                 escape("tests/dom/security/test/csp/file_child-src_shared_worker.js"),
 | |
|           page_id);
 | |
|       worker.port.start();
 | |
| 
 | |
|       worker.onerror = function(evt) {
 | |
|         evt.preventDefault();
 | |
|         window.parent.postMessage({id:page_id, message:"blocked"},
 | |
|                                   'http://mochi.test:8888');
 | |
|       }
 | |
| 
 | |
|       worker.port.onmessage = function(ev) {
 | |
|         window.parent.postMessage({id:page_id, message:"allowed"},
 | |
|             'http://mochi.test:8888');
 | |
|       };
 | |
|       worker.port.postMessage('foo');
 | |
|     }
 | |
|     catch (e) {
 | |
|       window.parent.postMessage({id:page_id, message:"blocked"},
 | |
|           'http://mochi.test:8888');
 | |
|     }
 | |
|   </script>
 | |
|   </body>
 | |
| </html>
 | 
