void HTMLProgressElement::parseMappedAttribute(Attribute* attribute) { if (attribute->name() == valueAttr) didElementStateChange(); else if (attribute->name() == maxAttr) didElementStateChange(); else HTMLFormControlElement::parseMappedAttribute(attribute); }
void HTMLMeterElement::parseAttribute(Attribute* attribute) { if (attribute->name() == valueAttr || attribute->name() == minAttr || attribute->name() == maxAttr || attribute->name() == lowAttr || attribute->name() == highAttr || attribute->name() == optimumAttr) didElementStateChange(); else HTMLFormControlElement::parseAttribute(attribute); }
void HTMLMeterElement::attach() { HTMLFormControlElement::attach(); didElementStateChange(); }
void HTMLProgressElement::attach() { createShadowSubtreeIfNeeded(); HTMLFormControlElement::attach(); didElementStateChange(); }
void HTMLProgressElement::attach() { HTMLFormControlElement::attach(); didElementStateChange(); }