mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#import <DOM/Event.idl>
 | 
						|
 | 
						|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#hashchangeevent
 | 
						|
[Exposed=Window]
 | 
						|
interface HashChangeEvent : Event {
 | 
						|
  constructor(DOMString type, optional HashChangeEventInit eventInitDict = {});
 | 
						|
 | 
						|
  readonly attribute USVString oldURL;
 | 
						|
  readonly attribute USVString newURL;
 | 
						|
};
 | 
						|
 | 
						|
dictionary HashChangeEventInit : EventInit {
 | 
						|
  USVString oldURL = "";
 | 
						|
  USVString newURL = "";
 | 
						|
};
 |