summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/xpinstall/triggerredirect.html
blob: 1b098d6948a72b0e40a2fb835d51565b18615aec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>

<!-- This page will attempt an install and then try to load a new page in the tab -->

<head>
<title>InstallTrigger tests</title>
<script type="text/javascript">
/* globals InstallTrigger */
/* exported startInstall */
function installCallback(url, status) {
  document.location = "#foo";

  dump("Sending InstallComplete\n");
  var event = new CustomEvent("InstallComplete");
  window.dispatchEvent(event);
}

function startInstall() {
  InstallTrigger.install({
    "Unsigned XPI": {
      URL: "amosigned.xpi",
      IconURL: "icon.png",
      toString() { return this.URL; },
    },
  }, installCallback);
}
</script>
</head>
<body onload="startInstall()">
<p>InstallTrigger tests</p>
<p id="return"></p>
<p id="status"></p>
</body>
</html>