dom/base/test/file_url.jsm

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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