mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			281 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			281 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#import <DOM/Event.idl>
 | 
						|
 | 
						|
interface PageTransitionEvent : Event {
 | 
						|
    constructor(DOMString type, optional PageTransitionEventInit eventInitDict = {});
 | 
						|
 | 
						|
    readonly attribute boolean persisted;
 | 
						|
};
 | 
						|
 | 
						|
dictionary PageTransitionEventInit : EventInit {
 | 
						|
    boolean persisted = false;
 | 
						|
};
 |