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

Unified Diff: LayoutTests/storage/indexeddb/resources/data-corruption.js

Issue 17060008: Add dataLoss property to IDB's upgradeneeded event (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix last usages of the bool Created 7 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: LayoutTests/storage/indexeddb/resources/data-corruption.js
diff --git a/LayoutTests/storage/indexeddb/resources/data-corruption.js b/LayoutTests/storage/indexeddb/resources/data-corruption.js
index 9d7e95909c9158d67f4e5393547d65e04c0e168f..56204fd7639151cca3368ca7924ab0a48511ecd6 100644
--- a/LayoutTests/storage/indexeddb/resources/data-corruption.js
+++ b/LayoutTests/storage/indexeddb/resources/data-corruption.js
@@ -10,6 +10,7 @@ function prepareDatabase()
{
db = event.target.result;
debug("setVersionSuccess():");
+ shouldBeEqualToString("event.dataLoss", "none");
jsbell 2013/06/17 23:37:35 You should also add a "'dataLoss' in XXXXX" case t
dgrogan 2013/06/17 23:52:14 Done.
self.trans = evalAndLog("trans = event.target.transaction");
shouldBeNonNull("trans");
trans.onabort = unexpectedAbortCallback;

Powered by Google App Engine
This is Rietveld 408576698