webapprt/test/chrome/browser_sample.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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

mercurial