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

Unified Diff: chrome/test/data/indexeddb/shared.js

Issue 10828378: Convert the indexed db pyauto tests to content_browsertests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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: chrome/test/data/indexeddb/shared.js
===================================================================
--- chrome/test/data/indexeddb/shared.js (revision 152131)
+++ chrome/test/data/indexeddb/shared.js (working copy)
@@ -1,27 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-window.indexedDB = window.indexedDB || window.webkitIndexedDB;
-
-function result(message) {
- var div = document.createElement('div');
- div.id = "result";
- div.innerText = message;
- document.body.appendChild(div);
-}
-
-function unexpectedErrorCallback()
-{
- result('fail - unexpected error callback');
-}
-
-function unexpectedAbortCallback()
-{
- result('fail - unexpected abort callback');
-}
-
-function unexpectedCompleteCallback()
-{
- result('fail - unexpected complete callback');
-}

Powered by Google App Engine
This is Rietveld 408576698