Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/idbobjectstore_deleted.htm

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698