mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
21 lines
506 B
HTML
21 lines
506 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 test if InstallTrigger seems to be enabled -->
|
|
|
|
<head>
|
|
<title>InstallTrigger tests</title>
|
|
<script type="text/javascript">
|
|
function init() {
|
|
document.getElementById("enabled").textContent = InstallTrigger.enabled() ? "true" : "false";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="init()">
|
|
<p>InstallTrigger tests</p>
|
|
<p id="enabled"></p>
|
|
</body>
|
|
</html>
|