chromium/third_party/blink/web_tests/fast/events/reveal-link-when-focused.html

<html>
<head>
<script>
function focusOutOfSightLink()
{
	document.getElementsByTagName("a")[0].focus();	
}
</script>
</head>
<body onLoad="focusOutOfSightLink()">
<div style="height:2000px;">
padding to make link be initially scrolled out of sight
</div>
<a href="">this link should be focused and revealed after page loads</a>
</body>
</html>