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

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

Issue 1996443003: Return number of values deleted by IDBObjectStore.delete(range) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Delete Range Created 4 years, 6 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 a7d0907845d10e4814f75ce9c6639deec5ea3a54..313ed97b6101bc49f59a6c57236f15fe34ea679b 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);
-PASS event.target.result is undefined
+FAIL event.target.result should be undefined (of type undefined). Was 1 (of type number).
request = objectStore.delete(id);
-PASS event.target.result is undefined
+FAIL event.target.result should be undefined (of type undefined). Was 0 (of type number).
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698