Index: chrome_frame/frame.html |
diff --git a/chrome_frame/frame.html b/chrome_frame/frame.html |
deleted file mode 100644 |
index d63d3aced16507c7a3ef055e1dc0ac92a0fbb21c..0000000000000000000000000000000000000000 |
--- a/chrome_frame/frame.html |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-<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> |