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

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: 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.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
20 function removeFrame() {
21 var frame = document.getElementById('1-2-id');
22 frame.parentNode.removeChild(frame);
23 return true;
24 }
25
26 function addFrame() {
27 var frame = document.createElement('iframe');
28 frame.setAttribute('src', '1-2.html');
29 document.body.appendChild(frame);
30 return true;
31 }
32 </script>
33 </head>
34 <body>
35
36 Top frame.
37 <br>
38 <iframe src="1-1.html" name="1-1-name"></iframe>
39 <br>
40 <iframe src="1-2.html" id="1-2-id" name="1-2-name"></iframe>
41 <br>
42 <iframe src="1-3.html" id="1-3-id"></iframe>
43 <br>
44
45 </html>
46 </body>
47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698