summaryrefslogtreecommitdiffstats
path: root/comm/mail/base/test/browser/files/links.html
blob: f5703dc4ef6e0fd34ba2e9bf62d9e0dd147cd8ec (plain)
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
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8"/>
  <title>Links to other places</title>
</head>
<body>
  <h1>Links to things</h1>
  <p>This page is a test of what happens when you click on links. It should be loaded from http://example.org:80.</p>

  <h2>This page:</h2>
  <ul>
    <li><a id="this-hash" href="#hash">Anchor on this page</a></li>
    <li><a id="this-nohash" href="links.html">This page</a></li>
  </ul>

  <h2>Pages on this domain:</h2>
  <ul>
    <li><a id="local-here" href="sampleContent.html">A page in the same directory</a></li>
    <li><a id="local-elsewhere" href="/browser/comm/mail/components/extensions/test/browser/data/content.html">A page elsewhere</a></li>
  </ul>

  <h2>Pages on other places on this TLD:</h2>
  <ul>
    <li><a id="other-https" href="https://example.org/browser/comm/mail/base/test/browser/files/links.html">This page, but over HTTPS</a></li>
    <li><a id="other-port" href="http://example.org:8000/browser/comm/mail/base/test/browser/files/links.html">This page, but on example.com:8000</a></li>
    <li><a id="other-subdomain" href="http://test1.example.org/browser/comm/mail/base/test/browser/files/links.html">This page, but on test1.example.com</a></li>
    <li><a id="other-subsubdomain" href="http://sub1.test1.example.org/browser/comm/mail/base/test/browser/files/links.html">This page, but on sub1.test1.example.com</a></li>
  </ul>

  <h2>Pages on a completely different domain:</h2>
  <ul style="margin-bottom: 100vh;">
    <li><a id="other-domain" href="http://mochi.test:8888/browser/comm/mail/base/test/browser/files/links.html">This page, but on mochi.test</a></li>
  </ul>

  <h2 id="hash">This is the hash target!</h2>
</body>
</html>