Index: chrome/test/data/indexeddb/transaction_get_test.js |
diff --git a/chrome/test/data/indexeddb/transaction_get_test.js b/chrome/test/data/indexeddb/transaction_get_test.js |
index fbce81446b531eaacdca7efc235b2e7164a0edbb..0c5cfa8451927a127766bb20eda656cc77eee12b 100644 |
--- a/chrome/test/data/indexeddb/transaction_get_test.js |
+++ b/chrome/test/data/indexeddb/transaction_get_test.js |
@@ -36,9 +36,11 @@ function startTransaction() |
result.onsuccess = gotValue; |
result.onerror = unexpectedErrorCallback; |
- var emptyResult = store.get('nonExistingKey'); |
- emptyResult.onsuccess = unexpectedSuccessCallback; |
- emptyResult.onerror = nonExistingKey; |
+ // TODO(hans): Enable this again with the new semantics after WebKit rolls. |
+ //var emptyResult = store.get('nonExistingKey'); |
+ //emptyResult.onsuccess = unexpectedSuccessCallback; |
+ //emptyResult.onerror = nonExistingKey; |
+ nonExistingKey(); |
} |
function populateObjectStore() |