Home
last modified time | relevance | path

Searched refs:attrChange (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/events/
DMutationEvent.h48 …onst String& newValue = String(), const String& attrName = String(), unsigned short attrChange = 0)
50 …new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
55 const String& attrName, unsigned short attrChange);
61 unsigned short attrChange() const { return m_attrChange; } in attrChange() function
69 const String& attrName, unsigned short attrChange);
DMutationEvent.cpp38 const String& attrName, unsigned short attrChange) in MutationEvent() argument
44 , m_attrChange(attrChange) in MutationEvent()
55 const String& attrName, unsigned short attrChange) in initMutationEvent() argument
66 m_attrChange = attrChange; in initMutationEvent()
DMutationEvent.idl32 readonly attribute unsigned short attrChange;
41 [Default=Undefined] optional unsigned short attrChange);
/external/chromium_org/third_party/WebKit/Source/web/
DWebMutationEvent.cpp60 WebMutationEvent::AttrChangeType WebMutationEvent::attrChange() const in attrChange() function in blink::WebMutationEvent
62 return static_cast<AttrChangeType>(constUnwrap<MutationEvent>()->attrChange()); in attrChange()