mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:02:44 +00:00 
			
		
		
		
	 3bd04d2c58
			
		
	
	
		3bd04d2c58
		
	
	
	
	
		
			
			There are an unfortunate number of DeprecatedString conversions required here, but these should all fall away and look much more pretty again when other places are also ported away from DeprecatedString. Leaves only the Element IDL interface left :^)
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			402 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			402 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/Node.idl>
 | |
| #import <DOM/Element.idl>
 | |
| 
 | |
| [Exposed=Window]
 | |
| interface Attr : Node {
 | |
|     readonly attribute DOMString? namespaceURI;
 | |
|     readonly attribute DOMString? prefix;
 | |
|     readonly attribute DOMString localName;
 | |
|     readonly attribute DOMString name;
 | |
|     [CEReactions] attribute DOMString value;
 | |
| 
 | |
|     readonly attribute Element? ownerElement;
 | |
| 
 | |
|     readonly attribute boolean specified;
 | |
| };
 |