tizen beta release
[profile/ivi/webkit-efl.git] / LayoutTests / accessibility / crash-determining-aria-role-when-label-present.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 id="body">
7
8 <label><q role=x><input id="test">
9
10 <p id="description"></p>
11 <div id="console"></div>
12
13 <script>
14
15     description("This tests a crashing scenario where an element with a role attribute is a child of a label that also has a corresponding control.");
16
17     if (window.accessibilityController) {
18           document.getElementById("test").focus();
19          
20           // This line should not crash.
21           var input = accessibilityController.focusedElement;
22
23           shouldBe("input.childrenCount", "0");
24     }
25
26 </script>
27
28 <script src="../fast/js/resources/js-test-post.js"></script>
29 </body>
30 </html>