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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/support.js

Issue 1407103007: update-w3c-deps import using blink 770eaea66cc4cfbb14ced3dc8dc5434716ed540a: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated -expected files for 3 new FAILs Created 5 years, 1 month 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/imported/web-platform-tests/IndexedDB/support.js
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/support.js b/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/support.js
index 2eeca4f1f5385c6ba22015a0c912dc27b063bd28..1e8458fee965ab8338d76bc94184457c2b243a66 100644
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/support.js
+++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/IndexedDB/support.js
@@ -1,29 +1,6 @@
var databaseName = "database";
var databaseVersion = 1;
-if (!window.indexedDB)
-{
- if (window.msIndexedDB)
- {
- window.indexedDB = window.msIndexedDB;
- }
- else if (window.mozIndexedDB)
- {
- window.indexedDB = window.mozIndexedDB;
- }
- else if (window.webkitIndexedDB)
- {
- window.indexedDB = webkitIndexedDB;
- IDBCursor = webkitIDBCursor;
- IDBDatabaseException = webkitIDBDatabaseException;
- IDBIndex = webkitIDBIndex;
- IDBObjectStore = webkitIDBObjectStore;
- IDBRequest = webkitIDBRequest;
- IDBKeyRange = webkitIDBKeyRange;
- IDBTransaction = webkitIDBTransaction;
- }
-}
-
/* Delete created databases
*
* Go through each finished test, see if it has an associated database. Close

Powered by Google App Engine
This is Rietveld 408576698