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

Unified Diff: third_party/WebKit/LayoutTests/storage/indexeddb/empty-transaction-order.html

Issue 2084053004: IndexedDB: Defer delete calls when there is a running upgrade (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased, made delete lists contain unique_ptrs Created 4 years, 5 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
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) {
- 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');

Powered by Google App Engine
This is Rietveld 408576698