tizen beta release
[profile/ivi/webkit-efl.git] / LayoutTests / storage / indexeddb / mozilla / open-database-null-name.html
1 <!DOCTYPE html>
2 <!--
3   original test: http://mxr.mozilla.org/mozilla2.0/source/dom/indexedDB/test/test_open_empty_db.html?force=1
4   license of original test:
5     " Any copyright is dedicated to the Public Domain.
6       http://creativecommons.org/publicdomain/zero/1.0/ "
7 -->
8 <html>
9 <head>
10 <script src="../../../fast/js/resources/js-test-pre.js"></script>
11 <script src="../resources/shared.js"></script>
12 </head>
13 <body>
14 <p id="description"></p>
15 <div id="console"></div>
16 <script>
17
18 description("Test IndexedDB: should NOT throw when opening a database with a null name");
19 if (window.layoutTestController)
20     layoutTestController.waitUntilDone();
21
22 function test()
23 {
24     indexedDB = evalAndLog("indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB;");
25     shouldBeFalse("indexedDB == null");
26     IDBDatabaseException = evalAndLog("IDBDatabaseException = window.IDBDatabaseException || window.webkitIDBDatabaseException;");
27     shouldBeFalse("IDBDatabaseException == null");
28     IDBTransaction = evalAndLog("IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction;");
29     shouldBeFalse("IDBTransaction == null");
30
31     description = "My Test Database";
32     request = evalAndLog("indexedDB.open(null);");
33     request.onsuccess = openSuccess;
34     request.onerror = unexpectedErrorCallback;
35 }
36
37 function openSuccess()
38 {
39     db = evalAndLog("db = event.target.result");
40     shouldBe("db.name", "'null'");
41     done();
42 }
43
44
45 test();
46
47 </script>
48 </body>
49 </html>
50