OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MutationEvent
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/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
MutationEvent
::~
MutationEvent
()
49
void
MutationEvent
::initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
65
bool
MutationEvent
::isMutationEvent() const
MutationEvent.h
32
class
MutationEvent
: public Event {
34
virtual ~
MutationEvent
();
42
static PassRefPtr<
MutationEvent
> create()
44
return adoptRef(new
MutationEvent
);
47
static PassRefPtr<
MutationEvent
> create(const AtomicString& type, bool canBubble, PassRefPtr<Node> relatedNode = 0,
50
return adoptRef(new
MutationEvent
(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
66
MutationEvent
();
67
MutationEvent
(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<Node> relatedNode,
Completed in 15 milliseconds