Fix keypad issue when ime context transit to another context
[framework/web/webkit-efl.git] / LayoutTests / accessibility / content-changed-notification-causes-crash.html
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 
2 <html>
3 <head>
4 <script src="../fast/js/resources/js-test-pre.js"></script>
5 </head>
6 <body>
7
8 <div id="group" tabindex="0">
9
10 <ul role=textbox style='-webkit-transition: -webkit-transform linear 1117401740208157342s; content: counters(c, ".", disc); '>><keygen autofocus="">><body style='outline-style: ridge; font: normal normal 29266em/9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 Ahem, serif; '>
11  
12 </div>
13
14 <p id="description"></p>
15 <div id="console"></div>
16  
17 <script>
18     description("Ensures that this snippet does not lead to a crash. Bug 86029.");
19
20     function walkAccessibilityTree(accessibilityObject) {
21         var count = accessibilityObject.childrenCount;
22         for (var i = 0; i < count; ++i)
23             accessibilityObject.childAtIndex(i);
24     }
25
26     if (window.accessibilityController) {
27
28         document.getElementById("group").focus();
29         var focusedElement = accessibilityController.focusedElement;
30         walkAccessibilityTree(focusedElement);
31
32         document.getElementById('console').innerHTML += "PASS. WebKit did not crash.<br>";
33     }
34 </script>
35
36 <script src="../fast/js/resources/js-test-post.js"></script>
37 </body>
38 </html>