aboutsummaryrefslogtreecommitdiffstats
path: root/testing/testdata/badLinks.html
blob: b0a331895473f277ad07db0f8eaf3db356dcdb73 (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
<html>
<body>
<a href="#unmatched"></a>
<!-- positive tests
-->
<a href="badLinks.html"></a>
<a href="#matched"></a>
<a href="badLinks.html#matched"></a>
<a name="matched"></a>
<a href="https://java.sun.com"></a>

<!-- flag but not fail
-->
<a href="ftp://ftp.sun.com"></a>

<!-- should fail
-->
<a href=""></a>
<a href="#unmatched"></a>
<a href="noSuchFile.html"></a>
<a href="https://no.such.place"></a>
<a href="malformed://java.sun.com"></a>

</body>
</html>