16 lines
507 B
HTML
16 lines
507 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Visited/Unvisited links</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>After visiting a link, it should turn purple.</p>
|
||
|
<p>When closing/reopening qutebrowser, the link still should be purple.</p>
|
||
|
<ul>
|
||
|
<li><a href="http://www.example.com/">normal link</a></li>
|
||
|
<li><a href="http://httpbin.org/redirect-to?url=http://www.example.com/">link with redirect</a></li>
|
||
|
</ul>
|
||
|
</body>
|
||
|
</html>
|