blob: 95f51b996bc340e4f5b51ce3767a088ba0a5c69b (
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="http://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="http://no.such.place"></a>
<a href="malformed://java.sun.com"></a>
</body>
</html>
|