Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / reveal-link-when-focused.html
blobbae86bf194984f517752eec8a8b6c38a4d2d5435
1 <html>
2 <head>
3 <script>
4 function focusOutOfSightLink()
6 document.getElementsByTagName("a")[0].focus();
8 </script>
9 </head>
10 <body onLoad="focusOutOfSightLink()">
11 <div style="height:2000px;">
12 padding to make link be initially scrolled out of sight
13 </div>
14 <a href="">this link should be focused and revealed after page loads</a>
15 </body>
16 </html>