UNPKG

can

Version:

MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.

16 lines (15 loc) 453 B
<!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>