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

Side by Side Diff: content/test/data/frame_tree/2-1.html

Issue 10827078: Support frame tree propagation between renderers in the same browsing instance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Another round of fixes based on Charlie's review. Created 8 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 <script>
4 window.addEventListener("message", messageReceived, false);
5
6 function messageReceived(event) {
7 window.top.document.title = event.data;
8 event.source.postMessage(event.data, "*");
9 }
10 </script>
11 </head>
12 <body>
13
14 Frame 2-1.
15 <br>
16
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698