gecko/testing/mozmill/tests/firefox/testAddons/files/plugin.html

18 lines
410 B
HTML

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script type="application/javascript">
function getStatus()
{
var status = document.getElementById("status");
status.innerHTML = (navigator.mimeTypes["*"] ? "enabled" : "disabled");
}
</script>
</head>
<body onload="getStatus()">
<p>Status: <span id="status">enabled</span></p>
</body>
</html>