Home | History | Annotate | Download | only in html

Lines Matching refs:high

147 double HTMLMeterElement::high() const
149 double high = max();
150 parseToDoubleForNumberType(getAttribute(highAttr), &high);
151 return std::min(std::max(high, low()), max());
154 void HTMLMeterElement::setHigh(double high, ExceptionCode& ec)
156 if (!isfinite(high)) {
160 setAttribute(highAttr, String::number(high));
182 double highValue = high();
196 // The optimum range stays over high
204 // The optimum range stays between high and low.