Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: chrome_frame/test/data/CFInstance_singleton_frame.html

Issue 218019: Initial import of the Chrome Frame codebase. Integration in chrome.gyp coming... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>talk to me...</title>
4 <script type="text/javascript" src="CFInstance.js"></script>
5 <script type="text/javascript">
6 CFInstance.listen("load", function() {
7 document.body.innerHTML = "sending 'foo'";
8 CFInstance.postMessage("foo");
9 document.body.innerHTML = "...waiting...";
10 });
11 CFInstance.listen("message", function(evt) {
12 document.body.innerHTML = "sending 'baz'";
13 CFInstance.postMessage("baz");
14 });
15 </script>
16 </head>
17 <body>
18 <h1>sends a message to the parent</h1>
19 </body>
20 </html>
OLDNEW
« no previous file with comments | « chrome_frame/test/data/CFInstance_rpc_internal_host.html ('k') | chrome_frame/test/data/CFInstance_singleton_host.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698