diff options
Diffstat (limited to 'WebCore/dom/Event.cpp')
-rw-r--r-- | WebCore/dom/Event.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/WebCore/dom/Event.cpp b/WebCore/dom/Event.cpp index 4ad090b..cae4122 100644 --- a/WebCore/dom/Event.cpp +++ b/WebCore/dom/Event.cpp @@ -124,6 +124,11 @@ bool Event::isOverflowEvent() const return false; } +bool Event::isPageTransitionEvent() const +{ + return false; +} + bool Event::isProgressEvent() const { return false; @@ -171,7 +176,7 @@ bool Event::isErrorEvent() const return false; } #endif - + bool Event::storesResultAsString() const { return false; |