diff options
Diffstat (limited to 'WebCore/dom/Event.cpp')
| -rw-r--r-- | WebCore/dom/Event.cpp | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/WebCore/dom/Event.cpp b/WebCore/dom/Event.cpp index 4ad090b..eda44b0 100644 --- a/WebCore/dom/Event.cpp +++ b/WebCore/dom/Event.cpp @@ -35,6 +35,7 @@ Event::Event() , m_defaultPrevented(false) , m_defaultHandled(false) , m_cancelBubble(false) + , m_createdByDOM(false) , m_eventPhase(0) , m_currentTarget(0) , m_createTime(static_cast<DOMTimeStamp>(currentTime() * 1000.0)) @@ -49,6 +50,7 @@ Event::Event(const AtomicString& eventType, bool canBubbleArg, bool cancelableAr , m_defaultPrevented(false) , m_defaultHandled(false) , m_cancelBubble(false) + , m_createdByDOM(false) , m_eventPhase(0) , m_currentTarget(0) , m_createTime(static_cast<DOMTimeStamp>(currentTime() * 1000.0)) @@ -94,6 +96,11 @@ bool Event::isTextEvent() const return false; } +bool Event::isCompositionEvent() const +{ + return false; +} + bool Event::isDragEvent() const { return false; @@ -124,6 +131,16 @@ bool Event::isOverflowEvent() const return false; } +bool Event::isPageTransitionEvent() const +{ + return false; +} + +bool Event::isPopStateEvent() const +{ + return false; +} + bool Event::isProgressEvent() const { return false; @@ -144,6 +161,11 @@ bool Event::isXMLHttpRequestProgressEvent() const return false; } +bool Event::isBeforeLoadEvent() const +{ + return false; +} + #if ENABLE(SVG) bool Event::isSVGZoomEvent() const { @@ -171,7 +193,7 @@ bool Event::isErrorEvent() const return false; } #endif - + bool Event::storesResultAsString() const { return false; |
