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

Side by Side Diff: content/test/data/frame_tree/top.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: Let the reviews begin :) Created 8 years, 4 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.name = "foo";
5
6 function simulateClick(target) {
7 var evt = document.createEvent("MouseEvents");
8 evt.initMouseEvent("click", true, true, window,
9 0, 0, 0, 0, 0, false, false,
10 false, false, 0, null);
11
12 return target.dispatchEvent(evt);
13 }
14
15 function openWindow(url) {
16 window.open(url);
17 return true;
18 }
19 </script>
20 </head>
21 <body>
22
23 Top frame.
24 <br>
25 <iframe src="1-1.html" name="1-1-name"></iframe>
26 <br>
27 <iframe src="1-2.html" id="1-2-id" name="1-2-name"></iframe>
28 <br>
29 <iframe src="1-3.html" id="1-3-id"></iframe>
30 <br>
31
32 </html>
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698