tor-browser

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

make_getCachedUsageForPrincipal.js (381B)


      1 /*
      2  Any copyright is dedicated to the Public Domain.
      3  http://creativecommons.org/publicdomain/zero/1.0/
      4 */
      5 
      6 async function testSteps() {
      7  const principal = getPrincipal("http://localhost");
      8 
      9  const name = "test_getCachedUsageForPrincipal.js";
     10 
     11  info("Opening database");
     12 
     13  let request = indexedDB.openForPrincipal(principal, name);
     14  await openDBRequestSucceeded(request);
     15 }