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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbcursor_continue_objectstore.htm

Issue 2711183003: Import wpt@a7e9c2abcf65b78fcf1c246fec6681c74e1bc352 (Closed)
Patch Set: Update test expectations and baselines. Created 3 years, 10 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/external/wpt/IndexedDB/idbcursor_continue_objectstore.htm
diff --git a/third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbcursor_continue_objectstore.htm b/third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbcursor_continue_objectstore.htm
index 76750c969a49a5c0fac0d2dd66d977738c682b3b..e86edc464cbeb6632c46f978019402d2db1f703b 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbcursor_continue_objectstore.htm
+++ b/third_party/WebKit/LayoutTests/external/wpt/IndexedDB/idbcursor_continue_objectstore.htm
@@ -25,7 +25,7 @@
var store = db.transaction("test")
.objectStore("test");
- cursor_rq = store.openCursor();
+ var cursor_rq = store.openCursor();
cursor_rq.onsuccess = t.step_func(function(e) {
var cursor = e.target.result;
if (!cursor) {

Powered by Google App Engine
This is Rietveld 408576698