mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:32:46 +00:00 
			
		
		
		
	 d036862f2b
			
		
	
	
		d036862f2b
		
	
	
	
	
		
			
			This makes XHR now rely on Fetch, which allows it to correct send Origin and Referer headers, CORS-preflight and filtering and many other goodies. The main thing that's missing is Streams, which means we can't properly produce progress events or switch to the Loading ready state. This also doesn't implement the Document responseType just yet.
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			210 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			210 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <XHR/XMLHttpRequestEventTarget.idl>
 | |
| 
 | |
| // https://xhr.spec.whatwg.org/#xmlhttprequestupload
 | |
| [Exposed=(Window,DedicatedWorker,SharedWorker)]
 | |
| interface XMLHttpRequestUpload : XMLHttpRequestEventTarget {
 | |
| };
 |