summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/xpinstall/bug540558.html
blob: 045e3e2d7c33c6890b5c00f6a3dd1246ed3cf74a (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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>

<!-- This page tests that window.InstallTrigger.install works -->

<head>
<title>InstallTrigger tests</title>
<script type="text/javascript">
/* exported startInstall */
function startInstall() {
  window.InstallTrigger.install({
    "Unsigned XPI": "amosigned.xpi",
  });
}
</script>
</head>
<body onload="startInstall()">
<p>InstallTrigger tests</p>
<p id="return"></p>
<p id="status"></p>
</body>
</html>