コード例 #1
0
void HTMLProgressElement::parseMappedAttribute(Attribute* attribute)
{
    if (attribute->name() == valueAttr)
        didElementStateChange();
    else if (attribute->name() == maxAttr)
        didElementStateChange();
    else
        HTMLFormControlElement::parseMappedAttribute(attribute);
}
コード例 #2
0
ファイル: HTMLMeterElement.cpp プロジェクト: sohocoke/webkit
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
ファイル: HTMLMeterElement.cpp プロジェクト: sohocoke/webkit
void HTMLMeterElement::attach()
{
    HTMLFormControlElement::attach();
    didElementStateChange();
}
コード例 #4
0
void HTMLProgressElement::attach()
{
    createShadowSubtreeIfNeeded();
    HTMLFormControlElement::attach();
    didElementStateChange();
}
コード例 #5
0
void HTMLProgressElement::attach()
{
    HTMLFormControlElement::attach();
    didElementStateChange();
}