blob: 86e0d2362cee2da7ef45a164b90b85f3a71611cd [file] [log] [blame]
<html>
<head>
<script>
function onload() {
try {
document.title = document.getElementById("frame").contentWindow.location.href;
} catch (e) {
document.title = "Exception";
}
}
</script>
</head>
<body onload="onload()">
<iframe id="frame" src="hello_world.html"></iframe>
</body>
</html>