OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 Test converted from WebKit: |
| 3 http://trac.webkit.org/browser/trunk/LayoutTests/storage/indexeddb/resources/int
erfaces.js |
| 4 --> |
| 5 |
| 6 <!DOCTYPE html> |
| 7 <!-- Submitted from TestTWF Paris --> |
| 8 <meta charset=utf-8> |
| 9 <title>Test IndexedDB's interfaces</title> |
| 10 <link rel=author href="mailto:romain.huet@gmail.com" title="Romain Huet"> |
| 11 |
| 12 <script src=../../../resources/testharness.js></script> |
| 13 <script src=../../../resources/testharnessreport.js></script> |
| 14 <script src=support.js></script> |
| 15 |
| 16 <script> |
| 17 |
| 18 test(function() { |
| 19 assert_true('IDBCursor' in self); |
| 20 }, "Test IDBCursor"); |
| 21 |
| 22 test(function() { |
| 23 assert_true('IDBCursorWithValue' in self); |
| 24 }, "Test IDBCursorWithValue"); |
| 25 |
| 26 test(function() { |
| 27 assert_true('IDBDatabase' in self); |
| 28 }, "Test IDBDatabase"); |
| 29 |
| 30 test(function() { |
| 31 assert_true('IDBFactory' in self); |
| 32 }, "Test IDBFactory"); |
| 33 |
| 34 test(function() { |
| 35 assert_true('IDBIndex' in self); |
| 36 }, "Test IDBIndex"); |
| 37 |
| 38 test(function() { |
| 39 assert_true('IDBKeyRange' in self); |
| 40 }, "Test IDBKeyRange"); |
| 41 |
| 42 test(function() { |
| 43 assert_true('IDBObjectStore' in self); |
| 44 }, "Test IDBObjectStore"); |
| 45 |
| 46 test(function() { |
| 47 assert_true('IDBOpenDBRequest' in self); |
| 48 }, "Test IDBOpenDBRequest"); |
| 49 |
| 50 test(function() { |
| 51 assert_true('IDBRequest' in self); |
| 52 }, "Test IDBRequest"); |
| 53 |
| 54 test(function() { |
| 55 assert_true('IDBTransaction' in self); |
| 56 }, "Test IDBTransaction"); |
| 57 |
| 58 test(function() { |
| 59 assert_true('IDBVersionChangeEvent' in self); |
| 60 }, "Test IDBVersionChangeEvent"); |
| 61 |
| 62 </script> |
| 63 |
| 64 <div id=log></div> |
OLD | NEW |