mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
410 B
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>
|