-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HTML: target=_blank implies noopener; opener support
For whatwg/html#4330.
- Loading branch information
Showing
2 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
...ntics/links/links-created-by-a-and-area-elements/target_blank_implicit_noopener_base.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset=utf-8> | ||
<title>Test behavior of base target=_blank links</title> | ||
<script src=/resources/testharness.js></script> | ||
<script src=/resources/testharnessreport.js></script> | ||
<base target=_blank> | ||
</head> | ||
<body> | ||
<a href="support/target_blank_iplicit_noopener.html?a1" id="a1" rel="noopener">Click me</a> | ||
<a href="support/target_blank_iplicit_noopener.html?a2" id="a2" rel="opener">Click me</a> | ||
<a href="support/target_blank_iplicit_noopener.html?a3" id="a3">Click me</a> | ||
<a href="support/target_blank_iplicit_noopener.html?a4" id="a4" rel="opener noopener">Click me</a> | ||
<a href="support/target_blank_iplicit_noopener.html?a5" id="a5" rel="noopener opener">Click me</a> | ||
|
||
<img src="/images/threecolors.png" /> | ||
<area shape="rect" coords="0,0,99,50" href="support/target_blank_iplicit_noopener.html?area1" id="area1" rel="noopener"> | ||
</img> | ||
<img src="/images/threecolors.png" /> | ||
<area shape="rect" coords="0,0,99,50" href="support/target_blank_iplicit_noopener.html?area2" id="area2" rel="opener"> | ||
</img> | ||
<img src="/images/threecolors.png" /> | ||
<area shape="rect" coords="0,0,99,50" href="support/target_blank_iplicit_noopener.html?area3" id="area3"> | ||
</img> | ||
<img src="/images/threecolors.png" /> | ||
<area shape="rect" coords="0,0,99,50" href="support/target_blank_iplicit_noopener.html?area4" id="area4" rel="opener noopener"> | ||
</img> | ||
<img src="/images/threecolors.png" /> | ||
<area shape="rect" coords="0,0,99,50" href="support/target_blank_iplicit_noopener.html?area5" id="area5" rel="noopener opener"> | ||
</img> | ||
|
||
<script> | ||
|
||
let tests = [ | ||
{ id: "a1", hasOpener: false, name: "Anchor element with target=_blank with rel=noopener" }, | ||
{ id: "a2", hasOpener: true, name: "Anchor element with target=_blank with rel=opener" }, | ||
{ id: "a3", hasOpener: false, name: "Anchor element with target=_blank with implicit rel=noopener" }, | ||
{ id: "a4", hasOpener: false, name: "Anchor element with target=_blank with rel=opener+noopener" }, | ||
{ id: "a5", hasOpener: false, name: "Anchor element with target=_blank with rel=noopener+opener" }, | ||
{ id: "area1", hasOpener: false, name: "Area element with target=_blank with rel=noopener" }, | ||
{ id: "area2", hasOpener: true, name: "Area element with target=_blank with rel=opener" }, | ||
{ id: "area3", hasOpener: false, name: "Area element with target=_blank with implicit rel=noopener" }, | ||
{ id: "area4", hasOpener: false, name: "Area element with target=_blank with rel=opener+noopener" }, | ||
{ id: "area5", hasOpener: false, name: "Area element with target=_blank with rel=noopener+opener" }, | ||
]; | ||
|
||
tests.forEach(data => { | ||
async_test( | ||
test => { | ||
let bc = new BroadcastChannel(data.id); | ||
bc.addEventListener("message", test.step_func_done(e => { | ||
assert_equals(e.data.hasOpener, data.hasOpener); | ||
}), {once: true}); | ||
|
||
document.getElementById(data.id).click(); | ||
}, data.name); | ||
}); | ||
</script> | ||
</body> | ||
</html> |