-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathopeners-text.html
44 lines (40 loc) · 1.2 KB
/
openers-text.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<meta name="viewport" content="width=device-width">
<style>
p {
margin:20px;
}
</style>
<p>
<a href="openers-popup.html" target="persistent">Open persistent popup</a>
</p>
<p>
<a href="openers-popup.html#:~:text=reference">Plain Link (Same Origin)</a>
</p>
<p>
<a href="https://google.com#:~:text=Google">Plain Link</a>
</p>
<p>
<a href="https://google.com#:~:text=Google" target="popup">target="popup"</a>
</p>
<p>
<a href="https://google.com#:~:text=Google" target="popup" rel="noopener">target="popup" rel="noopener"</a>
</p>
<p>
<a href="https://wikipedia.org#:~:text=Wikipedia" target="popup">target="popup" cross-origin</a>
</p>
<p>
<a href="https://wikipedia.org#:~:text=Wikipedia" target="popup" rel="noopener">target="popup" rel="noopener" cross-origin</a>
</p>
<p>
<a href="https://google.com#:~:text=Google" target="_blank">target="_blank"</a>
</p>
<p>
<a href="https://google.com#:~:text=Google" target="_blank" rel="noopener">target="_blank" rel="noopener"</a>
</p>
<p>
<a href="https://google.com#:~:text=Google" target="_self">target="_self"</a>
</p>
<p>
<a href="https://google.com#:~:text=Google" target="_self" rel="noopener">target="_self" rel="noopener"</a>
</p>