window_iframe_standards.html 453 Bytes
<!DOCTYPE html>
<html>
<head>
	<title>Standards mode frame</title>
	<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
</head>
<body onload="parent.frameLoaded && parent.frameLoaded();">
	Standards mode frame
	<script type="text/javascript">
var div = document.createElement("div");
div.innerHTML = "appVersion: " + navigator.appVersion +
	"<br>documentMode: " + document.documentMode;
document.body.appendChild(div);
	</script>
</body></html>