webapprt/test/chrome/browser_sample.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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