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

Unified Diff: content/test/data/indexeddb/key_path_test.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/key_path_test.js
diff --git a/content/test/data/indexeddb/key_path_test.js b/content/test/data/indexeddb/key_path_test.js
index e31c3433fe237b6efc0ff84171e9e61cd29508d5..9ac61bf3fab9b0072ce7a2dc38cc8bec57b0aad0 100644
--- a/content/test/data/indexeddb/key_path_test.js
+++ b/content/test/data/indexeddb/key_path_test.js
@@ -5,7 +5,7 @@
function cursorSuccess()
{
- debug("Cursor opened successfully.")
+ debug("Cursor opened successfully.");
// FIXME: check that we can iterate the cursor.
shouldBe("event.target.result.direction", "'next'");
shouldBe("event.target.result.key", "'myKey' + count");
@@ -20,7 +20,7 @@ function cursorSuccess()
function openCursor()
{
debug("Opening cursor #" + count);
- keyRange = webkitIDBKeyRange.lowerBound("myKey" + count);
+ keyRange = IDBKeyRange.lowerBound("myKey" + count);
request = objectStore.openCursor(keyRange);
request.onsuccess = cursorSuccess;
request.onerror = unexpectedErrorCallback;
« no previous file with comments | « content/test/data/indexeddb/database_callbacks_first.html ('k') | content/test/data/indexeddb/key_types_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698