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

Side by Side Diff: content/test/data/click-noreferrer-links.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
1 <html> 1 <html>
2 2
3 <head><title>Click noreferrer links</title> 3 <head><title>Click noreferrer links</title>
4 <script> 4 <script>
5 function simulateClick(target) { 5 function simulateClick(target) {
6 var evt = document.createEvent("MouseEvents"); 6 var evt = document.createEvent("MouseEvents");
7 evt.initMouseEvent("click", true, true, window, 7 evt.initMouseEvent("click", true, true, window,
8 0, 0, 0, 0, 0, false, false, 8 0, 0, 0, 0, 0, false, false,
9 false, false, 0, null); 9 false, false, 0, null);
10 10
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 same-site rel=noreferrer and target=foo</a><br> 68 same-site rel=noreferrer and target=foo</a><br>
69 <a href="navigate_opener.html" id="samesite_targeted_link" target="foo"> 69 <a href="navigate_opener.html" id="samesite_targeted_link" target="foo">
70 same-site target=foo</a><br> 70 same-site target=foo</a><br>
71 <a href="title2.html" id="samesite_tblank_link" target="_blank"> 71 <a href="title2.html" id="samesite_tblank_link" target="_blank">
72 same-site target=_blank</a><br> 72 same-site target=_blank</a><br>
73 <a href="https://REPLACE_WITH_HOST_AND_PORT/files/title2.html" id="tblank_link" 73 <a href="https://REPLACE_WITH_HOST_AND_PORT/files/title2.html" id="tblank_link"
74 target="_blank">target=_blank</a><br> 74 target="_blank">target=_blank</a><br>
75 <a href="https://REPLACE_WITH_HOST_AND_PORT/files/title2.html" id="noref_link" 75 <a href="https://REPLACE_WITH_HOST_AND_PORT/files/title2.html" id="noref_link"
76 rel="noreferrer">rel=noreferrer</a><br> 76 rel="noreferrer">rel=noreferrer</a><br>
77 77
78 <iframe id="frame1" src="frame_tree/1-1.html"></iframe>
79
78 </html> 80 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698