Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/storage/indexeddb/empty-transaction-order.html |
| diff --git a/third_party/WebKit/LayoutTests/storage/indexeddb/empty-transaction-order.html b/third_party/WebKit/LayoutTests/storage/indexeddb/empty-transaction-order.html |
| index d6f5f71821ba5320ab5004516fca35469d5918b4..1ba2cd3798c6fafd2730e9bafeb862340ca98f07 100644 |
| --- a/third_party/WebKit/LayoutTests/storage/indexeddb/empty-transaction-order.html |
| +++ b/third_party/WebKit/LayoutTests/storage/indexeddb/empty-transaction-order.html |
| @@ -5,17 +5,6 @@ |
| <script src='resources/testharness-helpers.js'></script> |
| <script> |
| -function expect(t, expected) { |
|
palakj1
2016/06/24 21:36:19
why this test here?
jsbell
2016/06/24 21:37:28
I moved this into testharness-helpers.js since it
|
| - var results = []; |
| - return result => { |
| - results.push(result); |
| - if (results.length === expected.length) { |
| - assert_array_equals(results, expected); |
| - t.done(); |
| - } |
| - }; |
| -} |
| - |
| indexeddb_test( |
| (t, db) => { |
| db.createObjectStore('store'); |