mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:02:44 +00:00 
			
		
		
		
	 2b343c9508
			
		
	
	
		2b343c9508
		
	
	
	
	
		
			
			There were some unhandled paths due to the liberally typed XHR response object. This patch flushes out those issues by using a tighter type set in the Variant. (NonnullGCPtr<Object> instead of Value)
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			491 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			491 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <script src="include.js"></script>
 | |
| <script>
 | |
|     asyncTest((done) => {
 | |
|         const xhr = new XMLHttpRequest();
 | |
|         xhr.responseType = "document";
 | |
|         xhr.open("GET", "data:text/xml,", true);
 | |
|         xhr.onreadystatechange = function() {
 | |
|             if (xhr.readyState === 4 && xhr.status === 200) {
 | |
|                 let xml = xhr.responseXML;
 | |
|                 println("PASS"); // Didn't crash :^)
 | |
|                 done();
 | |
|             }
 | |
|         };
 | |
|         xhr.send();
 | |
|     });
 | |
| </script>
 |