Definition
HTML Standard defines HTMLMeterElement
[Exposed=Window]
interface HTMLMeterElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, ReflectSetter] attribute double value;
[CEReactions, ReflectSetter] attribute double min;
[CEReactions, ReflectSetter] attribute double max;
[CEReactions, ReflectSetter] attribute double low;
[CEReactions, ReflectSetter] attribute double high;
[CEReactions, ReflectSetter] attribute double optimum;
readonly attribute NodeList labels;
};