It seems that adding an iframe to my html document prevents Javascript from being executed. In the following code sample the alert will not be shown:
<html>
<body>
<iframe src="http://www.google.com" />
<script type="text/javascript">
alert("test");
</script>
</body>
</html>
What am I doing wrong?