mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 15:20:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			508 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			508 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#import <HTML/HTMLElement.idl>
 | 
						|
 | 
						|
// https://html.spec.whatwg.org/multipage/form-elements.html#htmlmeterelement
 | 
						|
[Exposed=Window]
 | 
						|
interface HTMLMeterElement : HTMLElement {
 | 
						|
    [HTMLConstructor] constructor();
 | 
						|
 | 
						|
    [CEReactions] attribute double value;
 | 
						|
    [CEReactions] attribute double min;
 | 
						|
    [CEReactions] attribute double max;
 | 
						|
    [CEReactions] attribute double low;
 | 
						|
    [CEReactions] attribute double high;
 | 
						|
    [CEReactions] attribute double optimum;
 | 
						|
    // FIXME: readonly attribute NodeList labels;
 | 
						|
};
 |