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

Side by Side Diff: content/test/data/frame_tree/page_with_one_frame.html

Issue 2879853002: PlzNavigate: Fix form submission to OOPIF frame. (Closed)
Patch Set: Nits. Created 3 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
« no previous file with comments | « content/browser/site_per_process_browsertest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script> 4 <script>
5 function addFrame(url, sandbox) { 5 function addFrame(url, sandbox) {
6 var frame = document.createElement('iframe'); 6 var frame = document.createElement('iframe');
7 frame.src = url; 7 frame.src = url;
8 if (sandbox) 8 if (sandbox)
9 frame.sandbox = sandbox; 9 frame.sandbox = sandbox;
10 document.body.appendChild(frame); 10 document.body.appendChild(frame);
11 } 11 }
12 </script> 12 </script>
13 </head> 13 </head>
14 <body> 14 <body>
15 This page has one cross-site iframe. 15 This page has one cross-site iframe.
16 <iframe id="child0" src="/cross-site/baz.com/title1.html"></iframe> 16 <iframe id="child0" name="child-name-0" src="/cross-site/baz.com/title1.html"> </iframe>
17 </body> 17 </body>
18 </html> 18 </html>
OLDNEW
« no previous file with comments | « content/browser/site_per_process_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698