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