Lines Matching refs:store
15 store = db.createObjectStore('storeName', null)
17 PASS store.name is "storeName"
18 PASS store.keyPath is null
22 index = store.index('asdf')
26 index = store.createIndex('indexName', 'x', {unique: true})
28 PASS store.indexNames.contains('indexName') is true
29 index = store.index('indexName')
32 index = store.index('asdf')
39 store = setVersionTrans.objectStore('storeName')
40 index = store.createIndex('indexFail', 'x')
42 PASS store.indexNames is ['indexName']
43 PASS store.indexNames.length is 1
44 PASS store.indexNames.contains('') is false
45 PASS store.indexNames.contains('indexFail') is false
46 PASS store.indexNames.contains('indexName') is true
47 PASS store.indexNames[0] is "indexName"
48 PASS store.indexNames[1] is null
49 PASS store.indexNames[100] is null
50 PASS store.indexNames.item(1) is null
51 PASS store.indexNames.item(100) is null
53 store = transaction.objectStore('storeName')
55 store.add({x: 'foo'}, testDate)
57 store.add({x: 'bar', y: document.getElementById('console')}, 'bar')
61 store.add({x: testDateB, y: 'value'}, 'key')
69 store = transaction.objectStore('storeName')
70 store.add({x: 'othervalue'}, null)
75 store = transaction.objectStore('storeName')
76 store.add({x: null}, 'validkey')
82 store = transaction.objectStore('storeName')
83 store.get('key')
86 store = event.target.source
87 store.get(testDate)
90 store.delete('key')
93 store = event.target.source
94 Passing an invalid key into store.get().
96 Passing an invalid key into store.delete().
98 Passing an invalid key into store.add().
100 Passing an invalid key into store.put().