HomeSort by relevance Sort by last modified time
    Searched defs:MutationEvent (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/dom/
MutationEvent.cpp 24 #include "MutationEvent.h"
28 MutationEvent::MutationEvent()
33 MutationEvent::MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
45 void MutationEvent::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
61 bool MutationEvent::isMutationEvent() const
MutationEvent.h 32 class MutationEvent : public Event {
40 static PassRefPtr<MutationEvent> create()
42 return adoptRef(new MutationEvent);
45 static PassRefPtr<MutationEvent> create(const AtomicString& type, bool canBubble, PassRefPtr<Node> relatedNode = 0,
48 return adoptRef(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
64 MutationEvent();
65 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,

Completed in 28 milliseconds