| Index: Source/modules/indexeddb/IDBObjectStore.cpp
|
| diff --git a/Source/modules/indexeddb/IDBObjectStore.cpp b/Source/modules/indexeddb/IDBObjectStore.cpp
|
| index 1e873e1b8bfef045c9feeb25563e253a9976f0df..e0eb3c8663b8d42557491b38effa1fc5fa66bc68 100644
|
| --- a/Source/modules/indexeddb/IDBObjectStore.cpp
|
| +++ b/Source/modules/indexeddb/IDBObjectStore.cpp
|
| @@ -177,18 +177,10 @@ IDBRequest* IDBObjectStore::put(ScriptState* scriptState, WebIDBDatabase::PutMod
|
| }
|
|
|
| Vector<WebBlobInfo> blobInfo;
|
| -
|
| RefPtr<SerializedScriptValue> serializedValue = SerializedScriptValue::create(value, &blobInfo, exceptionState, scriptState->isolate());
|
| if (exceptionState.hadException())
|
| return 0;
|
|
|
| - if (serializedValue->containsBlobs()) {
|
| - // FIXME: Add Blob/File/FileList support
|
| - exceptionState.throwDOMException(DataCloneError, "The object store currently does not support blob values.");
|
| - return 0;
|
| - }
|
| - ASSERT(blobInfo.isEmpty());
|
| -
|
| const IDBKeyPath& keyPath = m_metadata.keyPath;
|
| const bool usesInLineKeys = !keyPath.isNull();
|
| const bool hasKeyGenerator = autoIncrement();
|
|
|