| Index: Source/modules/indexeddb/IDBDatabase.cpp
|
| diff --git a/Source/modules/indexeddb/IDBDatabase.cpp b/Source/modules/indexeddb/IDBDatabase.cpp
|
| index a02f9c5e30906804a27e5be2a822e67cb98cce1a..3ed36949631ea01b42817526131c88f7fe7bfd29 100644
|
| --- a/Source/modules/indexeddb/IDBDatabase.cpp
|
| +++ b/Source/modules/indexeddb/IDBDatabase.cpp
|
| @@ -204,7 +204,7 @@ IDBObjectStore* IDBDatabase::createObjectStore(const String& name, const Diction
|
| Vector<String> keyPathArray;
|
| if (DictionaryHelper::get(options, "keyPath", keyPathArray))
|
| keyPath = IDBKeyPath(keyPathArray);
|
| - else if (options.getWithUndefinedOrNullCheck("keyPath", keyPathString))
|
| + else if (DictionaryHelper::getWithUndefinedOrNullCheck(options, "keyPath", keyPathString))
|
| keyPath = IDBKeyPath(keyPathString);
|
|
|
| DictionaryHelper::get(options, "autoIncrement", autoIncrement);
|
|
|