void SVGTitleElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta) { SVGElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta); if (inDocument()) // FIXME: does SVG have title text direction? document()->setTitleElement(StringWithDirection(textContent(), LTR), this); }
void SVGTitleElement::childrenChanged(const ChildChange& change) { SVGElement::childrenChanged(change); if (inDocument()) // FIXME: does SVG have title text direction? document().setTitleElement(StringWithDirection(textContent(), LTR), this); }
Node::InsertionNotificationRequest SVGTitleElement::insertedInto(ContainerNode* rootParent) { SVGElement::insertedInto(rootParent); if (!rootParent->inDocument()) return InsertionDone; if (firstChild()) // FIXME: does SVG have a title text direction? document()->setTitleElement(StringWithDirection(textContent(), LTR), this); return InsertionDone; }