mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:42:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| interface Document : Node {
 | |
| 
 | |
|     readonly attribute DOMImplementation implementation;
 | |
| 
 | |
|     readonly attribute DOMString characterSet;
 | |
|     readonly attribute DOMString charset;
 | |
|     readonly attribute DOMString inputEncoding;
 | |
|     readonly attribute DOMString contentType;
 | |
| 
 | |
|     Element? getElementById(DOMString id);
 | |
|     ArrayFromVector getElementsByName(DOMString name);
 | |
|     ArrayFromVector getElementsByTagName(DOMString tagName);
 | |
|     ArrayFromVector getElementsByClassName(DOMString className);
 | |
| 
 | |
|     readonly attribute Element? firstElementChild;
 | |
|     readonly attribute Element? lastElementChild;
 | |
| 
 | |
|     Element? querySelector(DOMString selectors);
 | |
|     ArrayFromVector querySelectorAll(DOMString selectors);
 | |
| 
 | |
|     Element createElement(DOMString tagName);
 | |
|     DocumentFragment createDocumentFragment();
 | |
|     Text createTextNode(DOMString data);
 | |
|     Comment createComment(DOMString data);
 | |
| 
 | |
|     readonly attribute DOMString compatMode;
 | |
|     readonly attribute DocumentType? doctype;
 | |
| 
 | |
|     readonly attribute Element? documentElement;
 | |
|     attribute HTMLElement? body;
 | |
|     readonly attribute HTMLHeadElement? head;
 | |
| 
 | |
|     readonly attribute DOMString readyState;
 | |
| 
 | |
|     attribute DOMString title;
 | |
| 
 | |
| }
 | 
