webapprt/test/chrome/browser_sample.js

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

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 // This is a sample WebappRT chrome test. It's just a browser-chrome mochitest.
michael@0 2
michael@0 3 Cu.import("resource://webapprt/modules/WebappRT.jsm");
michael@0 4
michael@0 5 function test() {
michael@0 6 waitForExplicitFinish();
michael@0 7 ok(true, "true is true!");
michael@0 8 loadWebapp("sample.webapp", undefined, function onLoad() {
michael@0 9 is(document.documentElement.getAttribute("title"),
michael@0 10 WebappRT.config.app.manifest.name,
michael@0 11 "Window title should be webapp name");
michael@0 12 let msg = gAppBrowser.contentDocument.getElementById("msg");
michael@0 13 var observer = new MutationObserver(function (mutations) {
michael@0 14 ok(/^Webapp getSelf OK:/.test(msg.textContent),
michael@0 15 "The webapp should have successfully installed and updated its msg");
michael@0 16 finish();
michael@0 17 });
michael@0 18 observer.observe(msg, { childList: true });
michael@0 19 });
michael@0 20 }

mercurial