| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |