mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:02:44 +00:00 
			
		
		
		
	 95559c4277
			
		
	
	
		95559c4277
		
	
	
	
	
		
			
			This patch adds a basic initial implementation of these API's. Since LibWeb currently doesn't support workers, this implementation of messaging doesn't bother with serializing and deserializing messages.
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			200 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			200 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <script>
 | |
| var channel = new MessageChannel();
 | |
| channel.port2.onmessage = function(event) {
 | |
|     console.log("Port2 received '" + event.data + "'");
 | |
| }
 | |
| channel.port1.postMessage("HELLO FRIEND");
 | |
| </script>
 |