Chromium Code Reviews| Index: content/test/data/click-noreferrer-links.html |
| diff --git a/content/test/data/click-noreferrer-links.html b/content/test/data/click-noreferrer-links.html |
| index 1d79bb5d20e8e8d3103dfb96cdecdd7acc40b9eb..3b79982e1288cb91d41612bea3d040111e0fb93b 100644 |
| --- a/content/test/data/click-noreferrer-links.html |
| +++ b/content/test/data/click-noreferrer-links.html |
| @@ -24,6 +24,10 @@ |
| return simulateClick(document.getElementById("samesite_targeted_link")); |
| } |
| + function clickBlankTargetedLink() { |
|
Charlie Reis
2014/12/11 00:43:39
nit: Let's move this after clickNoRefLink(), since
lfg
2014/12/11 23:55:24
Done.
|
| + return simulateClick(document.getElementById("blank_targeted_link")); |
| + } |
| + |
| function clickSameSiteTargetBlankLink() { |
| return simulateClick(document.getElementById("samesite_tblank_link")); |
| } |
| @@ -90,6 +94,8 @@ |
| same-site rel=noreferrer and target=foo</a><br> |
| <a href="navigate_opener.html" id="samesite_targeted_link" target="foo"> |
| same-site target=foo</a><br> |
| +<a href="about:blank" id="blank_targeted_link" target="foo"> |
| + blank_targeted_link=foo</a><br> |
|
Charlie Reis
2014/12/11 00:43:39
Same here (move after noref_link).
lfg
2014/12/11 23:55:24
Done.
|
| <a href="title2.html" id="samesite_tblank_link" target="_blank"> |
| same-site target=_blank</a><br> |
| <a href="http://REPLACE_WITH_HOST_AND_PORT/files/title2.html" id="tblank_link" |