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

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

Issue 99083002: WIP: Migrate generated bindings to new ExceptionState constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 7 years 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 Test IndexedDB's basics. 1 Test IndexedDB's basics.
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; 6 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self. msIndexedDB || self.OIndexedDB;
7 7
8 indexedDB.open('basics') 8 indexedDB.open('basics')
9 PASS 'result' in request is true 9 PASS 'result' in request is true
10 Expecting exception from request.result 10 Expecting exception from request.result
11 PASS Exception was thrown. 11 PASS Exception was thrown.
12 PASS code is DOMException.INVALID_STATE_ERR 12 PASS code is DOMException.INVALID_STATE_ERR
13 PASS ename is 'InvalidStateError' 13 PASS ename is 'InvalidStateError'
14 Exception message: The request has not finished. 14 Exception message: Failed to read the 'result' property from 'IDBRequest': The r equest has not finished.
15 PASS 'error' in request is true 15 PASS 'error' in request is true
16 Expecting exception from request.error 16 Expecting exception from request.error
17 PASS Exception was thrown. 17 PASS Exception was thrown.
18 PASS code is DOMException.INVALID_STATE_ERR 18 PASS code is DOMException.INVALID_STATE_ERR
19 PASS ename is 'InvalidStateError' 19 PASS ename is 'InvalidStateError'
20 Exception message: The request has not finished. 20 Exception message: Failed to read the 'error' property from 'IDBRequest': The re quest has not finished.
21 PASS 'source' in request is true 21 PASS 'source' in request is true
22 PASS request.source is null 22 PASS request.source is null
23 PASS 'transaction' in request is true 23 PASS 'transaction' in request is true
24 PASS request.transaction is null 24 PASS request.transaction is null
25 PASS 'readyState' in request is true 25 PASS 'readyState' in request is true
26 PASS request.readyState is "pending" 26 PASS request.readyState is "pending"
27 PASS 'onsuccess' in request is true 27 PASS 'onsuccess' in request is true
28 PASS request.onsuccess is null 28 PASS request.onsuccess is null
29 PASS 'onerror' in request is true 29 PASS 'onerror' in request is true
30 PASS request.onerror is null 30 PASS request.onerror is null
31 PASS 'result' in event.target is true 31 PASS 'result' in event.target is true
32 PASS !!event.target.result is true 32 PASS !!event.target.result is true
33 PASS 'error' in event.target is true 33 PASS 'error' in event.target is true
34 PASS event.target.error is null 34 PASS event.target.error is null
35 PASS 'source' in event.target is true 35 PASS 'source' in event.target is true
36 PASS request.source is null 36 PASS request.source is null
37 PASS 'transaction' in event.target is true 37 PASS 'transaction' in event.target is true
38 PASS event.target.transaction is null 38 PASS event.target.transaction is null
39 PASS 'readyState' in request is true 39 PASS 'readyState' in request is true
40 PASS event.target.readyState is "done" 40 PASS event.target.readyState is "done"
41 PASS 'onsuccess' in event.target is true 41 PASS 'onsuccess' in event.target is true
42 PASS 'onerror' in event.target is true 42 PASS 'onerror' in event.target is true
43 PASS successfullyParsed is true 43 PASS successfullyParsed is true
44 44
45 TEST COMPLETE 45 TEST COMPLETE
46 46
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698