1 <!DOCTYPE HTML PUBLIC
"-//IETF//DTD HTML//EN">
4 <script src=
"../resources/js-test.js"></script>
8 <label><q role=x
><input id=
"test">
10 <p id=
"description"></p>
11 <div id=
"console"></div>
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.");
17 if (window
.accessibilityController
) {
18 document
.getElementById("test").focus();
20 // This line should not crash.
21 var input
= accessibilityController
.focusedElement
;
23 shouldBe("input.childrenCount", "0");