Index: chrome_frame/frame_w_controls.html |
diff --git a/chrome_frame/frame_w_controls.html b/chrome_frame/frame_w_controls.html |
deleted file mode 100644 |
index d80642f7c5a32385172ba29310da46ee6199bcb3..0000000000000000000000000000000000000000 |
--- a/chrome_frame/frame_w_controls.html |
+++ /dev/null |
@@ -1,29 +0,0 @@ |
-<html> |
-<!-- TODO(slightlyoff): Move to tests directory? --> |
-<head> |
-<title>Script test</title> |
-<script> |
-function msg(txt) { |
- window.document.getElementById("my_text").innerText = txt; |
-} |
- |
-function OnLoad() { |
- var host = window.externalHost; |
- host.ForwardMessageToExternalHost("OnChromeFrameMessage", |
- "Hello from ChromeFrame"); |
-} |
- |
-function OnHostMessage(text) { |
- msg("In ChromeFrame: \r\n Message from host: " + text); |
-} |
-</script> |
-</head> |
-<body onload="OnLoad();"> |
-Here's an edit field: <input type="text"><br> |
-Here's another: <input type="text"><br> |
-<p> |
-Message:<br> |
-<pre><div id="my_text"></div></pre> |
-</p> |
-</body> |
-</html> |