dom/base/test/file_url.jsm

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

     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