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

Side by Side Diff: LayoutTests/storage/indexeddb/database-close-expected.txt

Issue 1317593005: Indexed DB: Remove vendor prefix removal from tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
OLDNEW
1 Test IndexedDB 'steps for closing a database connection' 1 Test IndexedDB 'steps for closing a database connection'
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self. msIndexedDB || self.OIndexedDB;
7
8 dbname = "database-close.html" 6 dbname = "database-close.html"
9 indexedDB.deleteDatabase(dbname) 7 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 8 indexedDB.open(dbname)
11 store = connection.createObjectStore('store') 9 store = connection.createObjectStore('store')
12 store.put('value1', 'key1') 10 store.put('value1', 'key1')
13 store.put('value2', 'key2') 11 store.put('value2', 'key2')
14 12
15 testClose(): 13 testClose():
16 Create transactions using connection: 14 Create transactions using connection:
17 trans1 = connection.transaction('store') 15 trans1 = connection.transaction('store')
(...skipping 27 matching lines...) Expand all
45 PASS event.target.result is "value2" 43 PASS event.target.result is "value2"
46 44
47 All transactions completed - database deletes should now be unblocked. 45 All transactions completed - database deletes should now be unblocked.
48 46
49 delete database unblocked 47 delete database unblocked
50 PASS awaiting_transaction_count is 0 48 PASS awaiting_transaction_count is 0
51 PASS successfullyParsed is true 49 PASS successfullyParsed is true
52 50
53 TEST COMPLETE 51 TEST COMPLETE
54 52
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698