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

Side by Side Diff: LayoutTests/storage/indexeddb/prefetch-invalidation-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 Ensure IndexedDB's write operations invalidate cursor prefetch caches 1 Ensure IndexedDB's write operations invalidate cursor prefetch caches
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 = "prefetch-invalidation.html" 6 dbname = "prefetch-invalidation.html"
9 indexedDB.deleteDatabase(dbname) 7 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 8 indexedDB.open(dbname)
11 9
12 prepareDatabase(): 10 prepareDatabase():
13 db = event.target.result 11 db = event.target.result
14 store = db.createObjectStore('store') 12 store = db.createObjectStore('store')
15 13
16 onOpenSuccess(): 14 onOpenSuccess():
17 db = event.target.result 15 db = event.target.result
(...skipping 30 matching lines...) Expand all
48 store.clear() 46 store.clear()
49 cursor = cursorRequest.result 47 cursor = cursorRequest.result
50 cursor.continue() 48 cursor.continue()
51 49
52 onContinueSuccess(): 50 onContinueSuccess():
53 PASS cursorRequest.result is null 51 PASS cursorRequest.result is null
54 PASS successfullyParsed is true 52 PASS successfullyParsed is true
55 53
56 TEST COMPLETE 54 TEST COMPLETE
57 55
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698