You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
750 B
28 lines
750 B
<html>
|
|
<head>
|
|
<title>location interface enumeration</title>
|
|
<link rel="stylesheet" type="text/css" href="tst.css">
|
|
</head>
|
|
<body>
|
|
<h1>location 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 location) {
|
|
output(key, location[key]);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|