예제 #1
0
void HTMLProgressElement::parseMappedAttribute(Attribute* attribute)
{
    if (attribute->name() == valueAttr)
        didElementStateChange();
    else if (attribute->name() == maxAttr)
        didElementStateChange();
    else
        HTMLFormControlElement::parseMappedAttribute(attribute);
}
예제 #2
0
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);
}
예제 #3
0
void HTMLMeterElement::attach()
{
    HTMLFormControlElement::attach();
    didElementStateChange();
}
예제 #4
0
void HTMLProgressElement::attach()
{
    createShadowSubtreeIfNeeded();
    HTMLFormControlElement::attach();
    didElementStateChange();
}
void HTMLProgressElement::attach()
{
    HTMLFormControlElement::attach();
    didElementStateChange();
}