Kod
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
</head>
<body>
<script>
window.status="aaaaaaa";
document.write(location.href+"<br>")
document.bgColor="yellow" //Działą tylko trzeba wywalić link do css
document.write("------------------window------------------<br>")
for(i in window){
document.write(i+" = "+window[i]+"<br>")
}
document.write("------------------location------------------<br>")
for(i in location){
document.write(i+" = "+location[i]+"<br>")
}
document.write("------------------document------------------<br>")
for(i in document){
document.write(i+" = "+document[i]+"<br>")
}
</script>
</body>
</html>