blob: d80642f7c5a32385172ba29310da46ee6199bcb3 [file] [log] [blame]
[email protected]f7817822009-09-24 05:11:581<html>
2<!-- TODO(slightlyoff): Move to tests directory? -->
3<head>
4<title>Script test</title>
5<script>
6function msg(txt) {
7 window.document.getElementById("my_text").innerText = txt;
8}
9
10function OnLoad() {
11 var host = window.externalHost;
12 host.ForwardMessageToExternalHost("OnChromeFrameMessage",
13 "Hello from ChromeFrame");
14}
15
16function OnHostMessage(text) {
17 msg("In ChromeFrame: \r\n Message from host: " + text);
18}
19</script>
20</head>
21<body onload="OnLoad();">
22Here's an edit field: <input type="text"><br>
23Here's another: <input type="text"><br>
24<p>
25Message:<br>
26<pre><div id="my_text"></div></pre>
27</p>
28</body>
29</html>