| 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
|
|
|