addon-sdk/test/browser_sdk_loader_chrome_in_sdk.js

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

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 function test () {
     2   let loader = makeLoader();
     3   let module = Module("./main", gTestPath);
     4   let require = Require(loader, module);
     6   // sdk/util/uuid uses Cc, Ci, components
     7   const { uuid } = require("sdk/util/uuid");
     9   ok(isUUID(uuid()), "chrome.Cc and chrome.Ci works in SDK includes");
    11   let uuidString = '00001111-2222-3333-4444-555566667777';
    12   let parsed = uuid(uuidString);
    13   is(parsed, '{' + uuidString + '}', "chrome.components works in SDK includes");
    15   // sdk/base64 uses Cu
    16   const { encode } = require("sdk/base64");
    17   is(encode("hello"), "aGVsbG8=", "chrome.Cu works in SDK includes");
    18   finish();
    19 }

mercurial