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

Unified Diff: content/test/data/indexeddb/bug_84933.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/bug_84933.js
diff --git a/content/test/data/indexeddb/bug_84933.js b/content/test/data/indexeddb/bug_84933.js
index 4fb358838dfe4d291c47c6d1b50069b4f90d56cd..ba0847a9bbe96ba0e5bb4f84f999e45c26edab6c 100644
--- a/content/test/data/indexeddb/bug_84933.js
+++ b/content/test/data/indexeddb/bug_84933.js
@@ -6,8 +6,8 @@ function test()
{
var n = 25;
for (var i = 0; i < n; i++) {
- webkitIndexedDB.open("bug_84933_" + i.toString()).onsuccess = function() {
+ indexedDB.open("bug_84933_" + i.toString()).onsuccess = function() {
window.close();
- }
+ };
}
}
« no previous file with comments | « content/test/data/indexeddb/bug_109187.js ('k') | content/test/data/indexeddb/corrupted_open_db_recovery.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698