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

Unified Diff: content/test/data/indexeddb/database_callbacks_first.html

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
« no previous file with comments | « content/test/data/indexeddb/cursor_test.js ('k') | content/test/data/indexeddb/key_path_test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/indexeddb/database_callbacks_first.html
diff --git a/content/test/data/indexeddb/database_callbacks_first.html b/content/test/data/indexeddb/database_callbacks_first.html
index 4f99f62f2404fac65bfba36d0cbc2856ec7ec29e..7410e0202f036b9c28492c4a84b90d96aa7a6512 100644
--- a/content/test/data/indexeddb/database_callbacks_first.html
+++ b/content/test/data/indexeddb/database_callbacks_first.html
@@ -8,9 +8,9 @@
location.href = 'database_callbacks_second.html';
}
function openConnection() {
- var idbRequest = webkitIndexedDB.open("database_callbacks_first");
+ var idbRequest = indexedDB.open("database_callbacks_first");
// setTimeout is needed so that the IDBRequest returned by
- // webkitIndexedDB.open() can be garbage collected.
+ // indexedDB.open() can be garbage collected.
idbRequest.onsuccess = function() { setTimeout(gcAndDetach, 0) };
}
openConnection();
« no previous file with comments | « content/test/data/indexeddb/cursor_test.js ('k') | content/test/data/indexeddb/key_path_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698