tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_lsng_enabled.js (393B)


      1 /**
      2 * Any copyright is dedicated to the Public Domain.
      3 * http://creativecommons.org/publicdomain/zero/1.0/
      4 */
      5 
      6 /**
      7 * This test is mainly to verify that LSNG is not accidentally disabled which
      8 * can lead to a data loss in a combination with disabled shadow writes.
      9 */
     10 
     11 add_task(async function testSteps() {
     12  ok(Services.domStorageManager.nextGenLocalStorageEnabled, "LSNG enabled");
     13 });