16 lines
468 B
HTML
16 lines
468 B
HTML
<!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>
|