diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-29 08:50:36 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-29 08:50:36 +0000 |
commit | 85d4a1ea434d754f4c828cfdfde9ec5a8aafac4d (patch) | |
tree | 58e34a71885ed8439946d4c12651f33d9fae5a37 /chrome/test/data/indexeddb/common.js | |
parent | bdefb73bd8713903bfac8349ffdce7a88615eb38 (diff) | |
download | chromium_src-85d4a1ea434d754f4c828cfdfde9ec5a8aafac4d.zip chromium_src-85d4a1ea434d754f4c828cfdfde9ec5a8aafac4d.tar.gz chromium_src-85d4a1ea434d754f4c828cfdfde9ec5a8aafac4d.tar.bz2 |
IndexedDB: Expand browser test to cover the database, index and transaction classes.
BUG=60581
TEST=browser_tests --gtest_filter="IndexedDBBrowserTest.*"
Review URL: http://codereview.chromium.org/4116009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64381 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data/indexeddb/common.js')
-rw-r--r-- | chrome/test/data/indexeddb/common.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/test/data/indexeddb/common.js b/chrome/test/data/indexeddb/common.js index 9ebd361..1133c95 100644 --- a/chrome/test/data/indexeddb/common.js +++ b/chrome/test/data/indexeddb/common.js @@ -1,3 +1,7 @@ +// Copyright (c) 2010 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. + function debug(message) { document.getElementById('status').innerHTML += '<br/>' + message; @@ -83,7 +87,7 @@ function shouldBe(_a, _b) else if (typeof(_av) == typeof(_bv)) fail(_a + " should be " + _bv + ". Was " + stringify(_av) + "."); else - fail(_a + " should be " + _bv + " (of type " + typeof _bv + "). " + + fail(_a + " should be " + _bv + " (of type " + typeof _bv + "). " + "Was " + _av + " (of type " + typeof _av + ")."); } |