|
1 <!DOCTYPE HTML> |
|
2 <html> |
|
3 <head> |
|
4 <meta charset="utf-8"> |
|
5 <title>Test for DataStore - event maker</title> |
|
6 </head> |
|
7 <body> |
|
8 <script type="application/javascript;version=1.7"> |
|
9 |
|
10 function is(a, b, msg) { |
|
11 alert((a === b ? 'OK' : 'KO') + ' ' + msg) |
|
12 } |
|
13 |
|
14 function cbError() { |
|
15 alert('KO error'); |
|
16 } |
|
17 |
|
18 function finish() { |
|
19 alert('DONE'); |
|
20 } |
|
21 |
|
22 navigator.getDataStores('foo').then(function(stores) { |
|
23 is(stores.length, 1, "getDataStores('foo') returns 1 element"); |
|
24 is(stores[0].name, 'foo', 'The dataStore.name is foo'); |
|
25 is(stores[0].readOnly, false, 'The dataStore foo is not in readonly'); |
|
26 stores[0].add({a: 42}).then(finish, cbError); |
|
27 }); |
|
28 |
|
29 </script> |
|
30 </body> |
|
31 </html> |
|
32 |