66938ed44b
When a redirect occurs, the item is saved in history with a -r suffix now. When opening qutebrowser that's picked up and the item is hidden from completion.
18 lines
611 B
HTML
18 lines
611 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Visited/Unvisited links</title>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<li>After visiting a link, it should turn purple.</li>
|
|
<li>When closing/reopening qutebrowser, the link still should be purple.</li>
|
|
<li>The httpbin.org link (before redirect) should not be in the completion.</li>
|
|
<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>
|