mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:22:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/EventHandler.idl>
 | |
| #import <HTML/HTMLElement.idl>
 | |
| 
 | |
| // https://html.spec.whatwg.org/multipage/sections.html#htmlbodyelement
 | |
| [Exposed=Window]
 | |
| interface HTMLBodyElement : HTMLElement {
 | |
| 
 | |
|     [HTMLConstructor] constructor();
 | |
| 
 | |
|     [LegacyNullToEmptyString, Reflect] attribute DOMString text;
 | |
|     [LegacyNullToEmptyString, Reflect] attribute DOMString link;
 | |
|     [LegacyNullToEmptyString, Reflect=vlink] attribute DOMString vLink;
 | |
|     [LegacyNullToEmptyString, Reflect=alink] attribute DOMString aLink;
 | |
|     [LegacyNullToEmptyString, Reflect=bgcolor] attribute DOMString bgColor;
 | |
|     [Reflect] attribute DOMString background;
 | |
| 
 | |
| };
 | |
| 
 | |
| HTMLBodyElement includes WindowEventHandlers;
 | 
