Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / tabbing-input-iframe.html
blob92f0082062fbe6dc425e0251230ae8a09097c731
1 <html>
2 <head>
3 <script>
4 function test() {
5 document.getElementById('t1').focus();
6 if (window.eventSender) {
7 eventSender.keyDown("\t");
8 eventSender.keyDown("\t");
11 </script>
12 </head>
14 <body onload="test()">
15 This tests that you can tab out of a text field if an iframe comes after it.<br>
16 <input id="t1">
17 <iframe style="border: solid thin black"></iframe>
18 <input id="t2" value="This should have focus">
19 </body>
20 </html>