diff options
Diffstat (limited to 'WebCore/dom/Event.cpp')
-rw-r--r-- | WebCore/dom/Event.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/WebCore/dom/Event.cpp b/WebCore/dom/Event.cpp index 5d8eaaa..eda44b0 100644 --- a/WebCore/dom/Event.cpp +++ b/WebCore/dom/Event.cpp @@ -96,6 +96,11 @@ bool Event::isTextEvent() const return false; } +bool Event::isCompositionEvent() const +{ + return false; +} + bool Event::isDragEvent() const { return false; @@ -131,6 +136,11 @@ bool Event::isPageTransitionEvent() const return false; } +bool Event::isPopStateEvent() const +{ + return false; +} + bool Event::isProgressEvent() const { return false; |