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

Side by Side Diff: chrome/test/data/post_message.html

Issue 9108001: Adds support for calling postMessage on a frame living in a different renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Invert check. Created 8 years, 7 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
3 <head><title>Post message tests</title>
4 <script>
5 // Send a message to our opener, and it will reply.
6 function postToOpener(msg, origin) {
7 window.opener.postMessage(msg, origin);
8 return true;
9 }
10
11 // Send a message to a window named "foo".
12 function postToFoo(msg) {
13 var w = window.open("", "foo");
14 w.postMessage(msg, "*");
15 return true;
16 }
17
18 // Listen to incoming messages.
19 var receivedMessages = 0;
20 window.addEventListener("message", messageReceived, false);
21 function messageReceived(event) {
22 receivedMessages++;
23 // Change the title to generate a notification.
24 document.title = event.data;
25 }
26 </script>
27 </head>
28
29 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/click-noreferrer-links.html ('k') | content/browser/renderer_host/render_view_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698