Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
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">
10 function is(a, b, msg) {
11 alert((a === b ? 'OK' : 'KO') + ' ' + msg)
12 }
14 function cbError() {
15 alert('KO error');
16 }
18 function finish() {
19 alert('DONE');
20 }
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 });
29 </script>
30 </body>
31 </html>