mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:12:44 +00:00 
			
		
		
		
	 c1dfb2d883
			
		
	
	
		c1dfb2d883
		
	
	
	
	
		
			
			From the Web IDL spec: https://heycam.github.io/webidl/#prod-Namespace Namespace :: namespace identifier { NamespaceMembers } ;
		
			
				
	
	
		
			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;
 | |
| 
 | |
| };
 |