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
						
					
					
						
							742 B
						
					
					
				
			
		
		
	
	
							28 lines
						
					
					
						
							742 B
						
					
					
				<html>
 | 
						|
<head>
 | 
						|
<title>window interface enumeration</title>
 | 
						|
<link rel="stylesheet" type="text/css" href="tst.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<h1>window 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 window) {
 | 
						|
    output(key, window[key]);
 | 
						|
}
 | 
						|
</script>
 | 
						|
</body>
 | 
						|
</html>
 |