コード例 #1
0
void HTMLOptionElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
{
    HTMLSelectElement* select = ownerSelectElement();
    if (select)
        select->childrenChanged(changedByParser);
    HTMLFormControlElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
}
コード例 #2
0
ファイル: HTMLOptionElement.cpp プロジェクト: oroisec/ios
void HTMLOptionElement::childrenChanged()
{
   HTMLSelectElement *select = getSelect();
   if (select)
       select->childrenChanged();
}