Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 }