Fix keypad issue when ime context transit to another context
[framework/web/webkit-efl.git] / LayoutTests / accessibility / table-notbody.html
1 <html>
2 <script>
3     if (window.testRunner)
4         testRunner.dumpAsText();
5 </script>
6 <body id="body">
7     
8     <table STYLE="visibility: hidden; left: 489px; top: 105px; width: 213px; "></table>
9     
10     <div id="result"></div>
11     
12     <script>
13         if (window.accessibilityController) {
14             var body = document.getElementById("body");
15             body.focus();
16             var table = accessibilityController.focusedElement.childAtIndex(0);
17
18             result.innerText += "Test passes if there is no crash\n\n";            
19         }
20     </script>
21 </body>
22 </html>