mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 08:52:44 +00:00 
			
		
		
		
	 1d8f8ea5b1
			
		
	
	
		1d8f8ea5b1
		
	
	
	
	
		
			
			The DOM specification says that the primary use case for these is to give Promises abort semantics. It is also a prerequisite for Fetch, as it is used to make Fetch abortable. a
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			209 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			209 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| [Exposed=(Window,Worker)]
 | |
| interface AbortSignal : EventTarget {
 | |
|     // FIXME: [NewObject] static AbortSignal abort();
 | |
| 
 | |
|     readonly attribute boolean aborted;
 | |
| 
 | |
|     // FIXME: attribute EventHandler onabort;
 | |
| };
 |