Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | function test () { |
michael@0 | 2 | let loader = makeLoader(); |
michael@0 | 3 | let module = Module("./main", gTestPath); |
michael@0 | 4 | let require = Require(loader, module); |
michael@0 | 5 | |
michael@0 | 6 | // sdk/util/uuid uses Cc, Ci, components |
michael@0 | 7 | const { uuid } = require("sdk/util/uuid"); |
michael@0 | 8 | |
michael@0 | 9 | ok(isUUID(uuid()), "chrome.Cc and chrome.Ci works in SDK includes"); |
michael@0 | 10 | |
michael@0 | 11 | let uuidString = '00001111-2222-3333-4444-555566667777'; |
michael@0 | 12 | let parsed = uuid(uuidString); |
michael@0 | 13 | is(parsed, '{' + uuidString + '}', "chrome.components works in SDK includes"); |
michael@0 | 14 | |
michael@0 | 15 | // sdk/base64 uses Cu |
michael@0 | 16 | const { encode } = require("sdk/base64"); |
michael@0 | 17 | is(encode("hello"), "aGVsbG8=", "chrome.Cu works in SDK includes"); |
michael@0 | 18 | finish(); |
michael@0 | 19 | } |