diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-20 09:15:23 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-20 09:15:23 +0000 |
commit | aaa9e91e4b8863d6b0bbbc0e7904da32a8a2b971 (patch) | |
tree | e25f5eedc4d32fe0ef0daa07cacf5251f8131bbf /chrome/test/data/indexeddb/transaction_get_test.js | |
parent | 2d42582e88755e01c421a4c4c5da053a91b7307e (diff) | |
download | chromium_src-aaa9e91e4b8863d6b0bbbc0e7904da32a8a2b971.zip chromium_src-aaa9e91e4b8863d6b0bbbc0e7904da32a8a2b971.tar.gz chromium_src-aaa9e91e4b8863d6b0bbbc0e7904da32a8a2b971.tar.bz2 |
IndexedDB: Temporarily disable part of IndexedDBBrowsertest.TransactionGetTest.
This should be updated and enabled again once the WebKit side is rolled
in.
BUG=67323
TEST=browser_tests
Review URL: http://codereview.chromium.org/6274008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71934 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data/indexeddb/transaction_get_test.js')
-rw-r--r-- | chrome/test/data/indexeddb/transaction_get_test.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome/test/data/indexeddb/transaction_get_test.js b/chrome/test/data/indexeddb/transaction_get_test.js index fbce814..0c5cfa8 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() |