mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:42:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			430 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			430 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <script src="../include.js"></script>
 | |
| <script>
 | |
|     asyncTest((done) => {
 | |
|         const iframe = document.querySelector("iframe");
 | |
|         iframe.addEventListener("load", () => {
 | |
|             println(iframe.contentWindow.document.body.innerText);
 | |
|             done();
 | |
|         });
 | |
|         iframe.src = "javascript:'<body>Hello from iframe navigated using javascript url</body>'";
 | |
|     });
 | |
| </script>
 | |
| <iframe src="about:blank"></iframe>
 | 
