mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:52:44 +00:00 
			
		
		
		
	 4989375191
			
		
	
	
		4989375191
		
	
	
	
	
		
			
			This class will be used in the algorithms for the navigate event firing algorithms to populate the destination field of the NavigateEvent.
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			377 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			377 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigationdestination-interface
 | |
| [Exposed=Window, UseNewAKString]
 | |
| interface NavigationDestination {
 | |
|   readonly attribute USVString url;
 | |
|   readonly attribute DOMString key;
 | |
|   readonly attribute DOMString id;
 | |
|   readonly attribute long long index;
 | |
|   readonly attribute boolean sameDocument;
 | |
| 
 | |
|   any getState();
 | |
| };
 |