dom/xslt/tests/buster/install.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 const X_APP             = "Buster";
     2 const X_VER             = "2.0"
     3 const X_JAR_FILE        = "xslt-qa.jar";
     5 var err = initInstall("Install " + X_APP, X_APP, X_VER);
     6 logComment("initInstall: " + err);
     7 logComment( "Installation started ..." );
     8 addFile("We're on our way ...", X_JAR_FILE, getFolder("chrome"), "");
     9 registerChrome(CONTENT|DELAYED_CHROME, getFolder("chrome", X_JAR_FILE), "content/xslt-qa/");
    10 err = getLastError();
    11 if (err == SUCCESS)  {
    12   performInstall();
    13   alert("Please restart Mozilla");
    14 }
    15 else  {
    16   cancelInstall();
    17 }

mercurial