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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/database-refresh-view-expected.txt

Issue 2914293002: [IndexedDB] [DevTools] Right-click 'Refresh' on database now updates object store view, also fixed … (Closed)
Patch Set: Using await instead Created 3 years, 6 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 Tests refreshing the database information and data views. 1 Tests refreshing the database information and data views.
2 2
3 Dumping IndexedDB tree: 3 Dumping IndexedDB tree:
4 (empty) 4 (empty)
5 Created database. 5 Created database.
6 Dumping IndexedDB tree: 6 Dumping IndexedDB tree:
7 database: testDatabase - http://127.0.0.1:8000 7 database: testDatabase - http://127.0.0.1:8000
8 (no object stores) 8 (no object stores)
9 Created first objectstore. 9 Created first objectstore.
10 Dumping IndexedDB tree: 10 Dumping IndexedDB tree:
11 database: testDatabase - http://127.0.0.1:8000 11 database: testDatabase - http://127.0.0.1:8000
12 Object store: testObjectStore1 12 Object store: testObjectStore1
13 Index: testIndex 13 Index: testIndex
14 Created second objectstore. 14 Created second objectstore.
15 Dumping IndexedDB tree: 15 Dumping IndexedDB tree:
16 database: testDatabase - http://127.0.0.1:8000 16 database: testDatabase - http://127.0.0.1:8000
17 Object store: testObjectStore1 17 Object store: testObjectStore1
18 Index: testIndex 18 Index: testIndex
19 Object store: testObjectStore2 19 Object store: testObjectStore2
20 Index: testIndex 20 Index: testIndex
21 Added testObjectStore1 entry. 21 Added testObjectStore1 entry.
22 Dumping ObjectStore data: 22 Dumping ObjectStore data:
23 Object store: testObjectStore1 23 Object store: testObjectStore1
24 (no entries) 24 (no entries)
25 Object store: testObjectStore2 25 Object store: testObjectStore2
26 (no entries) 26 (no entries)
27 Refreshed database. 27 Refreshed database view.
28 Dumping ObjectStore data: 28 Dumping ObjectStore data:
29 Object store: testObjectStore1 29 Object store: testObjectStore1
30 Key = testKey, value = [object Object] 30 Key = testKey, value = [object Object]
31 Object store: testObjectStore2 31 Object store: testObjectStore2
32 (no entries) 32 (no entries)
33 Added testObjectStore2 entry.
34 Dumping ObjectStore data:
35 Object store: testObjectStore1
36 Key = testKey, value = [object Object]
37 Object store: testObjectStore2
38 (no entries)
39 Right-click refreshed database.
40 Dumping ObjectStore data:
41 Object store: testObjectStore1
42 Key = testKey, value = [object Object]
43 Object store: testObjectStore2
44 Key = testKey2, value = [object Object]
33 45
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698