summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/storage/IDBErrorEvent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/storage/IDBErrorEvent.cpp')
-rw-r--r--Source/WebCore/storage/IDBErrorEvent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/storage/IDBErrorEvent.cpp b/Source/WebCore/storage/IDBErrorEvent.cpp
index cba980d..e576fa8 100644
--- a/Source/WebCore/storage/IDBErrorEvent.cpp
+++ b/Source/WebCore/storage/IDBErrorEvent.cpp
@@ -43,7 +43,7 @@ PassRefPtr<IDBErrorEvent> IDBErrorEvent::create(PassRefPtr<IDBAny> source, const
}
IDBErrorEvent::IDBErrorEvent(PassRefPtr<IDBAny> source, const IDBDatabaseError& error)
- : IDBEvent(eventNames().errorEvent, source)
+ : IDBEvent(eventNames().errorEvent, source, true)
, m_code(error.code())
, m_message(error.message())
{