| 326 | |
| 327 | |
| 328 | void AbstractNode::dispatchNodeInsertedIntoDocument() |
| 329 | { |
| 330 | AutoPtr<MutationEvent> event = new MutationEvent(_pOwner, MutationEvent::DOMNodeInsertedIntoDocument, this, false, false, 0); |
| 331 | dispatchEvent(event.get()); |
| 332 | } |
| 333 | |
| 334 | |
| 335 | void AbstractNode::dispatchAttrModified(Attr* pAttr, MutationEvent::AttrChangeType changeType, const XMLString& prevValue, const XMLString& newValue) |