dom/base/test/file_url.jsm

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 this.EXPORTED_SYMBOLS = ['checkFromJSM'];
     3 this.checkFromJSM = function checkFromJSM(ok, is) {
     4   Components.utils.importGlobalProperties(['URL']);
     6   var url = new URL('http://www.example.com');
     7   is(url.href, "http://www.example.com/", "JSM should have URL");
     9   var url2 = new URL('/foobar', url);
    10   is(url2.href, "http://www.example.com/foobar", "JSM should have URL - based on another URL");
    12   var blob = new Blob(['a']);
    13   var url = URL.createObjectURL(blob);
    14   ok(url, "URL is created!");
    16   URL.revokeObjectURL(url);
    17   ok(true, "URL is revoked");
    18 }

mercurial