WebSurf/test/js/navigator-enumerate.html

28 lines
754 B
HTML

<html>
<head>
<title>navigator interface enumeration</title>
<link rel="stylesheet" type="text/css" href="tst.css">
</head>
<body>
<h1>navigator interface enumeration</h1>
<noscript><p>Javascript is disabled</p></noscript>
<script>
function output(x,y) {
document.body.appendChild(document.createTextNode(x));
document.body.appendChild(document.createTextNode("("));
if (y != undefined) {
document.body.appendChild(document.createTextNode(y.length));
}
document.body.appendChild(document.createTextNode(") = "));
document.body.appendChild(document.createTextNode(y));
document.body.appendChild(document.createElement('br'));
}
for(var key in navigator) {
output(key, navigator[key]);
}
</script>
</body>
</html>