mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			466 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			466 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <HTML/DOMStringMap.idl>
 | |
| 
 | |
| // https://html.spec.whatwg.org/multipage/dom.html#htmlorsvgelement
 | |
| interface mixin HTMLOrSVGElement {
 | |
|     [SameObject] readonly attribute DOMStringMap dataset;
 | |
|     attribute DOMString nonce; // intentionally no [CEReactions]
 | |
| 
 | |
|     [CEReactions, Reflect] attribute boolean autofocus;
 | |
|     [CEReactions] attribute long tabIndex;
 | |
|     // FIXME: Support the optional FocusOptions parameter.
 | |
|     undefined focus();
 | |
|     undefined blur();
 | |
| };
 | 
