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

Unified Diff: content/test/data/indexeddb/cursor_prefetch.js

Issue 401893002: IndexedDB: Stop using webkit-prefixed versions of APIs in tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More webkitIndexedDB foo and update webkitErrorMessage use too Created 6 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: content/test/data/indexeddb/cursor_prefetch.js
diff --git a/content/test/data/indexeddb/cursor_prefetch.js b/content/test/data/indexeddb/cursor_prefetch.js
index bb587cc3f9745c5941c40d8a7018278f7beb04a8..ff9c7e1e25b4b1b51c45ba3798ba5dc7e118584c 100644
--- a/content/test/data/indexeddb/cursor_prefetch.js
+++ b/content/test/data/indexeddb/cursor_prefetch.js
@@ -67,7 +67,7 @@ function firstTest() {
++count;
cursor.continue();
- }
+ };
}
function secondTest() {
@@ -118,7 +118,7 @@ function secondTest() {
++expectedKey;
cursor.continue();
- }
+ };
}
function thirdTest() {
@@ -153,7 +153,7 @@ function thirdTest() {
++count;
cursor.continue();
- }
+ };
}
function fourthTest() {
@@ -167,7 +167,7 @@ function fourthTest() {
trans.oncomplete = function() {
debug("fourthTest() transaction completed");
fifthTest();
- }
+ };
var store = trans.objectStore('store');
var cursorReq = store.openCursor();
@@ -195,7 +195,7 @@ function fourthTest() {
debug("Other request fired out-of-order!");
fail();
}
- }
+ };
cursor.continue();
return;
@@ -214,7 +214,7 @@ function fourthTest() {
debug("Other request didn't fire right after continue as expected.");
fail();
}
- }
+ };
return;
}
@@ -224,7 +224,7 @@ function fourthTest() {
}
cursor.continue();
- }
+ };
}
function fifthTest() {
@@ -258,7 +258,7 @@ function fifthTest() {
debug("count: " + count);
++count;
cursor.continue();
- }
+ };
}
function sixthTest() {
@@ -308,7 +308,7 @@ function sixthTest() {
} else {
cursor1.continue();
}
- }
+ };
var cursor2func = function() {
var cursor = event.target.result;
@@ -333,7 +333,7 @@ function sixthTest() {
} else {
cursor2.continue();
}
- }
+ };
var req = store.openCursor();
req.onerror = unexpectedErrorCallback;
@@ -372,7 +372,7 @@ function seventhTest() {
++count;
cursor.continue();
- }
+ };
}
function eighthTest() {
@@ -405,5 +405,5 @@ function eighthTest() {
++count;
cursor.continue();
- }
+ };
}
« no previous file with comments | « content/test/data/indexeddb/corrupted_open_db_recovery.html ('k') | content/test/data/indexeddb/cursor_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698