-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1527139 [wpt PR 15188] - HTML: target=_blank implies noopener; op…
…ener support, a=testonly Automatic update from web-platform-tests HTML: target=_blank implies noopener; opener support (#15188) For whatwg/html#4330. -- wpt-commits: e81ca209b45fbe73c1bb7a20e1c7af51ef46258b wpt-pr: 15188 --HG-- rename : testing/web-platform/tests/html/semantics/links/links-created-by-a-and-area-elements/support/target_blank_iplicit_noopener.html => testing/web-platform/tests/html/semantics/links/links-created-by-a-and-area-elements/support/target_blank_implicit_noopener.html
- Loading branch information
1 parent
895cdec
commit 0629ffc
Showing
3 changed files
with
84 additions
and
11 deletions.
There are no files selected for viewing
File renamed without changes.
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
67 changes: 67 additions & 0 deletions
67
...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,67 @@ | ||
<!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_implicit_noopener.html?a1" id="a1" rel="noopener">Click me</a> | ||
<a href="support/target_blank_implicit_noopener.html?a2" id="a2" rel="opener">Click me</a> | ||
<a href="support/target_blank_implicit_noopener.html?a3" id="a3">Click me</a> | ||
<a href="support/target_blank_implicit_noopener.html?a4" id="a4" rel="opener noopener">Click me</a> | ||
<a href="support/target_blank_implicit_noopener.html?a5" id="a5" rel="noopener opener">Click me</a> | ||
<a href="support/target_blank_implicit_noopener.html?a6" id="a6" rel="noreferrer">Click me</a> | ||
<a href="support/target_blank_implicit_noopener.html?a7" id="a7" rel="opener noreferrer">Click me</a> | ||
<a href="support/target_blank_implicit_noopener.html?a8" id="a8" rel="noopener opener noreferrer">Click me</a> | ||
|
||
<img src="/images/threecolors.png" /> | ||
<area shape="rect" coords="0,0,99,50" href="support/target_blank_implicit_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_implicit_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_implicit_noopener.html?area3" id="area3"> | ||
</img> | ||
<img src="/images/threecolors.png" /> | ||
<area shape="rect" coords="0,0,99,50" href="support/target_blank_implicit_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_implicit_noopener.html?area5" id="area5" rel="noopener opener"> | ||
</img> | ||
|
||
<script> | ||
|
||
let tests = [ | ||
{ id: "a1", hasOpener: false, name: "Anchor element with base target=_blank with rel=noopener" }, | ||
{ id: "a2", hasOpener: true, name: "Anchor element with base target=_blank with rel=opener" }, | ||
{ id: "a3", hasOpener: false, name: "Anchor element with base target=_blank with implicit rel=noopener" }, | ||
{ id: "a4", hasOpener: false, name: "Anchor element with base target=_blank with rel=opener+noopener" }, | ||
{ id: "a5", hasOpener: false, name: "Anchor element with base target=_blank with rel=noopener+opener" }, | ||
{ id: "a6", hasOpener: false, name: "Anchor element with base target=_blank with rel=noreferrer" }, | ||
{ id: "a7", hasOpener: false, name: "Anchor element with base target=_blank with rel=opener+noreferrer" }, | ||
{ id: "a8", hasOpener: false, name: "Anchor element with base target=_blank with rel=noopener+opener+noreferrer" }, | ||
{ id: "area1", hasOpener: false, name: "Area element with base target=_blank with rel=noopener" }, | ||
{ id: "area2", hasOpener: true, name: "Area element with base target=_blank with rel=opener" }, | ||
{ id: "area3", hasOpener: false, name: "Area element with base target=_blank with implicit rel=noopener" }, | ||
{ id: "area4", hasOpener: false, name: "Area element with base target=_blank with rel=opener+noopener" }, | ||
{ id: "area5", hasOpener: false, name: "Area element with base 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> |