2022-02-15 22:40:51 +03:30
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
2022-10-07 16:45:09 -06:00
|
|
|
// https://html.spec.whatwg.org/multipage/form-elements.html#htmlmeterelement
|
|
|
|
[Exposed=Window]
|
2020-08-01 03:05:43 +01:00
|
|
|
interface HTMLMeterElement : HTMLElement {
|
2023-03-23 03:48:52 -04:00
|
|
|
[HTMLConstructor] constructor();
|
2020-08-01 03:05:43 +01:00
|
|
|
|
2023-11-25 14:32:40 +01:00
|
|
|
[CEReactions] attribute double value;
|
|
|
|
[CEReactions] attribute double min;
|
|
|
|
[CEReactions] attribute double max;
|
|
|
|
[CEReactions] attribute double low;
|
|
|
|
[CEReactions] attribute double high;
|
|
|
|
[CEReactions] attribute double optimum;
|
2023-10-04 17:55:33 +02:00
|
|
|
// FIXME: readonly attribute NodeList labels;
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|