blob: 0d4d2cc814a88b2dc1572872b2f1df10005b9d54 [file] [log] [blame]
<!DOCTYPE html>
<style>
a {
display: block;
width: 100px;
height: 100px;
}
a:visited {
background-color: red;
}
a:link {
background-color: green;
}
</style>
<p>You should see a green square below.</p>
<a id="link" href=""></a>
<script>
link.offsetTop; // force recalc
link.href = "not-visited.html";
</script>