Mozilla/mozilla/xpinstall/tests/installtrigger.html
dtownsend%oxymoronical.com 8459dcce9e Bug 474763: Add automated tests for xpinstall. r=bsmedberg
git-svn-id: svn://10.0.0.236/trunk@257006 18797224-902f-48f8-a5cc-f745e15eee43
2009-04-21 22:19:56 +00:00

39 lines
961 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<!-- This page will accept some json as the uri query and pass it to InstallTrigger.install -->
<head>
<title>InstallTrigger tests</title>
<script type="text/javascript">
var JSON = {
parse: function(text) {
return eval("(" + text + ")");
}
}
function installCallback(url, status) {
document.getElementById("status").textContent = status;
}
function startInstall() {
var text = decodeURIComponent(document.location.search.substring(1));
var triggers = JSON.parse(text);
try {
document.getElementById("return").textContent = InstallTrigger.install(triggers, installCallback);
}
catch (e) {
document.getElementById("return").textContent = "exception";
}
}
</script>
</head>
<body onload="startInstall()">
<p>InstallTrigger tests</p>
<p id="return"></p>
<p id="status"></p>
</body>
</html>