| Index: chrome/test/data/indexeddb/bug_90635.js
|
| diff --git a/chrome/test/data/indexeddb/bug_90635.js b/chrome/test/data/indexeddb/bug_90635.js
|
| index e52254d70a83ce3773fb84bddb5726c7a48d5c86..48cbc299c196a94c20078b9d3e98d266bdf479e7 100644
|
| --- a/chrome/test/data/indexeddb/bug_90635.js
|
| +++ b/chrome/test/data/indexeddb/bug_90635.js
|
| @@ -1,19 +1,7 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// 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;
|
| -window.IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction;
|
| -
|
| -function unexpectedErrorCallback()
|
| -{
|
| - document.title = 'fail - unexpected error callback';
|
| -}
|
| -function unexpectedAbortCallback()
|
| -{
|
| - document.title = 'fail - unexpected abort callback';
|
| -}
|
| -
|
| function test()
|
| {
|
| if (document.location.hash === '#part1') {
|
| @@ -21,7 +9,7 @@ function test()
|
| } else if (document.location.hash === '#part2') {
|
| testPart2();
|
| } else {
|
| - document.title = 'fail - no hash';
|
| + result('fail - unexpected hash');
|
| }
|
| }
|
|
|
| @@ -72,8 +60,8 @@ function test_store(db, msg) {
|
| if (store1.keyPath !== null ||
|
| store2.keyPath !== '' ||
|
| store3.keyPath !== 'some_path') {
|
| - document.title = 'fail - ' + msg;
|
| + result('fail - ' + msg);
|
| } else {
|
| - document.title = 'pass - ' + msg;
|
| + result('pass - ' + msg);
|
| }
|
| }
|
|
|