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.
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 | } |