Index: Source/modules/indexeddb/IDBRequest.cpp |
diff --git a/Source/modules/indexeddb/IDBRequest.cpp b/Source/modules/indexeddb/IDBRequest.cpp |
index 7b14f35f0c2b668c78516d15b773ecaea38578bf..b4c56002a37c1cba44e13877c864d73ada2dcbae 100644 |
--- a/Source/modules/indexeddb/IDBRequest.cpp |
+++ b/Source/modules/indexeddb/IDBRequest.cpp |
@@ -250,7 +250,7 @@ void IDBRequest::onSuccess(const Vector<String>& stringList) |
if (!shouldEnqueueEvent()) |
return; |
- RefPtrWillBeRawPtr<DOMStringList> domStringList = DOMStringList::create(); |
+ RefPtrWillBeRawPtr<DOMStringList> domStringList = DOMStringList::create(DOMStringList::IndexedDB); |
for (size_t i = 0; i < stringList.size(); ++i) |
domStringList->append(stringList[i]); |
onSuccessInternal(IDBAny::create(domStringList.release())); |