Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8557)

Unified Diff: chrome/test/data/indexeddb/transaction_get_test.js

Issue 6274008: IndexedDB: Temporarily disable part of IndexedDBBrowsertest.TransactionGetTest. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698