| Index: Source/core/inspector/InspectorIndexedDBAgent.cpp | 
| diff --git a/Source/core/inspector/InspectorIndexedDBAgent.cpp b/Source/core/inspector/InspectorIndexedDBAgent.cpp | 
| index d55642996a1e98f30a3aa0e048284bd2a34d8d53..59caf6db5b7a858e8db34a2e5d981c25eb6810e0 100644 | 
| --- a/Source/core/inspector/InspectorIndexedDBAgent.cpp | 
| +++ b/Source/core/inspector/InspectorIndexedDBAgent.cpp | 
| @@ -520,9 +520,9 @@ public: | 
| return; | 
| } | 
|  | 
| -            idbRequest = idbIndex->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), IDBCursor::directionNext(), IGNORE_EXCEPTION_STATE); | 
| +            idbRequest = idbIndex->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), IDBCursor::directionNext(), IGNORE_EXCEPTION); | 
| } else { | 
| -            idbRequest = idbObjectStore->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), IDBCursor::directionNext(), IGNORE_EXCEPTION_STATE); | 
| +            idbRequest = idbObjectStore->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), IDBCursor::directionNext(), IGNORE_EXCEPTION); | 
| } | 
| idbRequest->addEventListener(eventNames().successEvent, openCursorCallback, false); | 
| } | 
|  |