Commit aaa9e91e authored by hans@chromium.org's avatar hans@chromium.org

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
parent 2d42582e
...@@ -36,9 +36,11 @@ function startTransaction() ...@@ -36,9 +36,11 @@ function startTransaction()
result.onsuccess = gotValue; result.onsuccess = gotValue;
result.onerror = unexpectedErrorCallback; result.onerror = unexpectedErrorCallback;
var emptyResult = store.get('nonExistingKey'); // TODO(hans): Enable this again with the new semantics after WebKit rolls.
emptyResult.onsuccess = unexpectedSuccessCallback; //var emptyResult = store.get('nonExistingKey');
emptyResult.onerror = nonExistingKey; //emptyResult.onsuccess = unexpectedSuccessCallback;
//emptyResult.onerror = nonExistingKey;
nonExistingKey();
} }
function populateObjectStore() function populateObjectStore()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment