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

Unified Diff: third_party/WebKit/LayoutTests/storage/indexeddb/mozilla/delete-result-expected.txt

Issue 2433223002: Indexed DB: Remove experimental delete-returns-count change (Closed)
Patch Set: Created 4 years, 2 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/mozilla/delete-result-expected.txt
diff --git a/third_party/WebKit/LayoutTests/storage/indexeddb/mozilla/delete-result-expected.txt b/third_party/WebKit/LayoutTests/storage/indexeddb/mozilla/delete-result-expected.txt
index 313ed97b6101bc49f59a6c57236f15fe34ea679b..a7d0907845d10e4814f75ce9c6639deec5ea3a54 100644
--- a/third_party/WebKit/LayoutTests/storage/indexeddb/mozilla/delete-result-expected.txt
+++ b/third_party/WebKit/LayoutTests/storage/indexeddb/mozilla/delete-result-expected.txt
@@ -10,9 +10,9 @@ objectStore = db.createObjectStore('foo', { keyPath: 'id', autoIncrement: true }
request = objectStore.add({});
id = event.target.result;
request = objectStore.delete(id);
-FAIL event.target.result should be undefined (of type undefined). Was 1 (of type number).
+PASS event.target.result is undefined
request = objectStore.delete(id);
-FAIL event.target.result should be undefined (of type undefined). Was 0 (of type number).
+PASS event.target.result is undefined
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698