| Index: Source/modules/indexeddb/IDBRequest.cpp | 
| diff --git a/Source/modules/indexeddb/IDBRequest.cpp b/Source/modules/indexeddb/IDBRequest.cpp | 
| index 67a1aaf9de1517a596920112dd0832b9ea5dac6a..e20908749098a0364be78a2fd9bc211549aaad86 100644 | 
| --- a/Source/modules/indexeddb/IDBRequest.cpp | 
| +++ b/Source/modules/indexeddb/IDBRequest.cpp | 
| @@ -490,7 +490,7 @@ bool IDBRequest::dispatchEvent(PassRefPtr<Event> event) | 
| // doesn't receive a second error) and before deactivating (which might trigger commit). | 
| if (event->type() == eventNames().errorEvent && dontPreventDefault && !m_requestAborted) { | 
| m_transaction->setError(m_error); | 
| -            m_transaction->abort(IGNORE_EXCEPTION_STATE); | 
| +            m_transaction->abort(IGNORE_EXCEPTION); | 
| } | 
|  | 
| // If this was the last request in the transaction's list, it may commit here. | 
| @@ -511,7 +511,7 @@ void IDBRequest::uncaughtExceptionInEventHandler() | 
| { | 
| if (m_transaction && !m_requestAborted) { | 
| m_transaction->setError(DOMError::create(AbortError, "Uncaught exception in event handler.")); | 
| -        m_transaction->abort(IGNORE_EXCEPTION_STATE); | 
| +        m_transaction->abort(IGNORE_EXCEPTION); | 
| } | 
| } | 
|  | 
|  |