mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	The intent is to use these to autogenerate prototype declarations for Window and WorkerGlobalScope classes. And the spec links are just nice to have :^)
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			261 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			261 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#import <DOM/DocumentFragment.idl>
 | 
						|
#import <HTML/HTMLElement.idl>
 | 
						|
 | 
						|
// https://html.spec.whatwg.org/multipage/scripting.html#htmltemplateelement
 | 
						|
[Exposed=Window]
 | 
						|
interface HTMLTemplateElement : HTMLElement {
 | 
						|
 | 
						|
    readonly attribute DocumentFragment content;
 | 
						|
 | 
						|
};
 |