mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			398 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			398 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#import <DOM/Event.idl>
 | 
						|
 | 
						|
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#pagetransitionevent
 | 
						|
[Exposed=Window, UseNewAKString]
 | 
						|
interface PageTransitionEvent : Event {
 | 
						|
    constructor(DOMString type, optional PageTransitionEventInit eventInitDict = {});
 | 
						|
 | 
						|
    readonly attribute boolean persisted;
 | 
						|
};
 | 
						|
 | 
						|
dictionary PageTransitionEventInit : EventInit {
 | 
						|
    boolean persisted = false;
 | 
						|
};
 |