blob: d63d3aced16507c7a3ef055e1dc0ac92a0fbb21c [file] [log] [blame]
<html>
<!-- TODO(slightlyoff): Move to tests directory? -->
<head>
<title>Script test</title>
<script>
function OnLoad() {
var host = window.externalHost;
host.onmessage = OnHostMessage;
host.ForwardMessageToExternalHost("Hello from ChromeFrame");
}
function OnHostMessage(text) {
window.alert("In ChromeFrame: \r\n Message from host: " + text);
}
</script>
</head>
<body onload="OnLoad();">
Test script
</body>
</html>