Updated
This commit is contained in:
15
master/examples/window_iframe_standards.html
Normal file
15
master/examples/window_iframe_standards.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user