mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:32:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-navigationdestination-interface
 | |
| [Exposed=Window]
 | |
| 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();
 | |
| };
 | 
