about summary refs log tree commit diff
path: root/src/tools/linkchecker/tests/valid/inner/foo.html
blob: f30bf71820519b0692f24a8922b3ec7ef0c3f2ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<body>
  <a href="#localfrag">test local frag</a>
  <a href="../outer.html">remote link</a>
  <a href="../outer.html#somefrag">remote link with fragment</a>
  <a href="bar.html">this book</a>
  <a href="bar.html#barfrag">this book with fragment</a>
  <a href="https://example.com/doesnotexist">external links not validated</a>
  <a href="redir.html#redirfrag">Redirect</a>

  <!-- testing urlecoded anchor link against a non-urlencoded heading IDs -->
  <a href="#localfrag-%C3%A8"></a>
  <a href="bar.html#barfrag-%C3%A8"></a>
  <a href="redir.html#redirfrag-%C3%A8"></a>

  <h2 id="localfrag">Local</h2>

  <!-- testing urlecoded anchor link against a non-urlencoded heading IDs -->
  <h2 id="localfrag-è">Local</h2>

</body>
</html>