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
|
<link rel="dns-prefetch" href="//www.example.org">
<link rel="dns-prefetch" href="https://linkchecker.github.io/">
<a b=c "boo" href="http://www.garantiertnixgutt.bla/">bad url</a>
<!-- check cache key with query -->
<a href="/?d=directory&p=page">should not be cached</a>
<a href="/?d=directory&p=page1">should not be cached</a>
<!-- entities -->
<a href="/?q=ü">html entities</a>
<!-- empty form URL -->
<form action="" method="GET">
</form>
<!-- multiple links in one tag -->
<applet archive="file.html" src="file.css">
<!-- css urls -->
<img style="@font-face {src:url(file.asc)};background-image:url(file.txt)"
title="CSS urls">
<!-- object with codebase -->
<object classid="clsid:12345-67890" codebase="https://linkchecker.github.io/foo/ #a=1,2,3">
<!-- <a href=http://nocheckin> no check because of comment -->
<!-- Invalid URL -->
<a href="https://.linkchecker.github.io/">Error</a>
|