Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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 | } |