Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / storage / indexeddb / metadata-expected.txt
blob4dc8f16a37827b89e6ac2fdf430bb55a20ef6784
1 Test IndexedDB database metadata mutation/snapshotting
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 dbname = "metadata.html"
7 indexedDB.deleteDatabase(dbname)
8 indexedDB.open(dbname)
9 connection1store1 = connection1.createObjectStore('store1')
10 connection1store1.createIndex('index1', 'path')
11 PASS connection1.version is 1
12 PASS connection1.objectStoreNames.length is 1
13 PASS connection1store1.indexNames.length is 1
14 Connection's properties should be snapshotted on close
15 connection1.close()
17 secondOpen():
18 request = indexedDB.open(dbname, 2)
19 connection2 = request.result
20 trans = request.transaction
21 connection2.createObjectStore('store2')
22 connection2store1 = trans.objectStore('store1')
23 connection2store1.createIndex('index2', 'path')
24 PASS connection2.version is 2
25 PASS connection2.objectStoreNames.length is 2
26 PASS connection2store1.indexNames.length is 2
27 Connection's properties should be snapshotted on close
28 connection2.close()
30 thirdOpen():
31 request = indexedDB.open(dbname, 3)
32 connection3 = request.result
33 trans = request.transaction
34 connection3.createObjectStore('store3')
35 connection3store1 = trans.objectStore('store1')
36 connection3store1.createIndex('index3', 'path')
37 PASS connection3.version is 3
38 PASS connection3.objectStoreNames.length is 3
39 PASS connection3store1.indexNames.length is 3
40 Connection's properties should be reverted on abort
41 trans.abort()
42 Connection's properties should be snapshotted on close
43 connection3.close()
45 fourthOpen():
46 request = indexedDB.open(dbname, 4)
47 connection4 = request.result
48 trans = request.transaction
49 connection4.createObjectStore('store4')
50 connection4store1 = trans.objectStore('store1')
51 connection4store1.createIndex('index4', 'path')
52 PASS connection4.version is 4
53 PASS connection4.objectStoreNames.length is 3
54 PASS connection4store1.indexNames.length is 3
55 Connection's properties should be snapshotted on close
56 connection4.close()
58 checkState():
59 PASS connection1.version is 1
60 PASS connection1.objectStoreNames.length is 1
61 PASS connection1store1.indexNames.length is 1
63 PASS connection2.version is 2
64 PASS connection2.objectStoreNames.length is 2
65 PASS connection2store1.indexNames.length is 2
67 PASS connection3.version is 2
68 PASS connection3.objectStoreNames.length is 2
69 PASS connection3store1.indexNames.length is 2
71 PASS connection4.version is 4
72 PASS connection4.objectStoreNames.length is 3
73 PASS connection4store1.indexNames.length is 3
75 PASS successfullyParsed is true
77 TEST COMPLETE