dom/datastore/tests/file_event_maker.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     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>

mercurial