mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
	
	
		
			21 lines
		
	
	
	
		
			553 B
		
	
	
	
		
			Text
		
	
	
	
	
	
		
		
			
		
	
	
			21 lines
		
	
	
	
		
			553 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| 
								 | 
							
								#import <DOM/Event.idl>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								[Exposed=(Window,Worker)]
							 | 
						||
| 
								 | 
							
								interface ErrorEvent : Event {
							 | 
						||
| 
								 | 
							
								    constructor(DOMString type, optional ErrorEventInit eventInitDict = {});
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    readonly attribute DOMString message;
							 | 
						||
| 
								 | 
							
								    readonly attribute USVString filename;
							 | 
						||
| 
								 | 
							
								    readonly attribute unsigned long lineno;
							 | 
						||
| 
								 | 
							
								    readonly attribute unsigned long colno;
							 | 
						||
| 
								 | 
							
								    readonly attribute any error;
							 | 
						||
| 
								 | 
							
								};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								dictionary ErrorEventInit : EventInit {
							 | 
						||
| 
								 | 
							
								    DOMString message = "";
							 | 
						||
| 
								 | 
							
								    USVString filename = "";
							 | 
						||
| 
								 | 
							
								    unsigned long lineno = 0;
							 | 
						||
| 
								 | 
							
								    unsigned long colno = 0;
							 | 
						||
| 
								 | 
							
								    any error = null;
							 | 
						||
| 
								 | 
							
								};
							 |