Chromium Code Reviews| Index: tests/html/indexeddb_3_test.dart |
| diff --git a/tests/html/indexeddb_3_test.dart b/tests/html/indexeddb_3_test.dart |
| index d6e85147329f70f9add79f5ac9ca3a70c25e6c55..7546c3b728a6fe225cf6517c8f082fbe73e2bb7b 100644 |
| --- a/tests/html/indexeddb_3_test.dart |
| +++ b/tests/html/indexeddb_3_test.dart |
| @@ -85,7 +85,8 @@ class Test { |
| readAllReversedViaCursor() { |
| IDBTransaction txn = db.transaction(STORE_NAME, 'readonly'); |
| IDBObjectStore objectStore = txn.objectStore(STORE_NAME); |
| - IDBRequest cursorRequest = objectStore.openCursor(new IDBKeyRange.bound(0, 100), 'prev'); |
| + // TODO: create a IDBKeyRange(0,100) |
| + IDBRequest cursorRequest = objectStore.openCursor(null, 'prev'); |
|
podivilov
2012/06/06 13:26:08
Reverted to initial state.
|
| int itemCount = 0; |
| int sumKeys = 0; |
| int lastKey = null; |