Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / textarea-scrolled-focus-ring.html
blob9c6a080bf0125d05c411df6fc9823c2320006240
1 <!doctype html>
2 <head>
3 <script>
4 function test()
6 ta.setSelectionRange(ta.value.length, ta.value.length);
7 ta.focus();
9 </script>
10 </head>
11 <body onload="test()">
12 Test passes if a focus ring is visible around text area when focused and scrolled to bottom.<br>
13 <textarea id="ta" rows=2>
18 </textarea>
19 </body>