blob: b92657430ceeba7b04d74caf31f5087e1461597a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
<meta charset="utf-8" />
<title>Hello, world!</title>
</head>
<body>
<a
id="targetBlankLink"
target="_blank"
rel="opener"
href="newSession_child.html"
>target="_blank"</a
>
<a
id="noOpenerLink"
target="_blank"
rel="noopener"
href="http://example.com"
>rel="noopener"</a
>
</body>
</html>
|