OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <meta charset=utf-8> | 2 <meta charset=utf-8> |
3 <title>Attempting to use deleted IDBObjectStore</title> | 3 <title>Attempting to use deleted IDBObjectStore</title> |
4 <link rel=help href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#
object-store"> | 4 <link rel=help href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#
object-store"> |
5 <link rel=assert title="InvalidStateError Occurs if a request is made on a sourc
e object that has been deleted or removed."> | 5 <link rel=assert title="InvalidStateError Occurs if a request is made on a sourc
e object that has been deleted or removed."> |
6 <link rel=author href="mailto:odinho@opera.com" title="Odin Hørthe Omdal"> | 6 <link rel=author href="mailto:odinho@opera.com" title="Odin Hørthe Omdal"> |
7 <script src=../../../resources/testharness.js></script> | 7 <script src=../../../resources/testharness.js></script> |
8 <script src=../../../resources/testharnessreport.js></script> | 8 <script src=../../../resources/testharnessreport.js></script> |
9 <script src=support.js></script> | 9 <script src=support.js></script> |
10 | 10 |
(...skipping 29 matching lines...) Expand all Loading... |
40 assert_throws(null, function() { objStore.createIndex("idx2", "a"); }); | 40 assert_throws(null, function() { objStore.createIndex("idx2", "a"); }); |
41 } | 41 } |
42 | 42 |
43 open_rq.onsuccess = function() { | 43 open_rq.onsuccess = function() { |
44 assert_true(add_success, "First add was successful"); | 44 assert_true(add_success, "First add was successful"); |
45 t.done(); | 45 t.done(); |
46 } | 46 } |
47 </script> | 47 </script> |
48 | 48 |
49 <div id=log></div> | 49 <div id=log></div> |
OLD | NEW |