summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/indexeddb/script-tests/indexed-database-request.js
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2010-07-30 10:46:49 +0100
committerKristian Monsen <kristianm@google.com>2010-08-04 13:01:34 +0100
commit0617145a89917ae7735fe1c9538688ab9a577df5 (patch)
tree56206078694427c37ed7bdf27eb5221398b833c0 /LayoutTests/storage/indexeddb/script-tests/indexed-database-request.js
parentef1adcdfc805d4d13103f6f15cc5b4d96828a60f (diff)
downloadexternal_webkit-0617145a89917ae7735fe1c9538688ab9a577df5.zip
external_webkit-0617145a89917ae7735fe1c9538688ab9a577df5.tar.gz
external_webkit-0617145a89917ae7735fe1c9538688ab9a577df5.tar.bz2
Merge WebKit at r64264 : Initial merge by git.
Change-Id: Ic42bef02efef8217a0f84c47176a9c617c28d1f1
Diffstat (limited to 'LayoutTests/storage/indexeddb/script-tests/indexed-database-request.js')
-rw-r--r--LayoutTests/storage/indexeddb/script-tests/indexed-database-request.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/LayoutTests/storage/indexeddb/script-tests/indexed-database-request.js b/LayoutTests/storage/indexeddb/script-tests/indexed-database-request.js
deleted file mode 100644
index 6f77279..0000000
--- a/LayoutTests/storage/indexeddb/script-tests/indexed-database-request.js
+++ /dev/null
@@ -1,24 +0,0 @@
-description("Test IndexedDB's IndexedDatabaseRequest.");
-if (window.layoutTestController)
- layoutTestController.waitUntilDone();
-
-function openCallback()
-{
- verifySuccessEvent(event);
- done();
-}
-
-function test()
-{
- shouldBeTrue("'indexedDB' in window");
- shouldBeFalse("indexedDB == null");
-
- // FIXME: Verify other IndexedDatabaseRequest constructors, once they're implemented.
-
- result = evalAndLog("indexedDB.open('name', 'description')");
- verifyResult(result);
- result.onsuccess = openCallback;
- result.onerror = unexpectedErrorCallback;
-}
-
-test();