| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <script src="../resources/js-test-pre.js"></script> |
| function dumpAccessibilityChildren(element, level) { |
| if (element.stringValue.indexOf('End of test') >= 0) |
| for (var k = 0; k < level; k++) { indent += " "; } |
| debug(indent + element.role + " " + element.stringValue); |
| var childrenCount = element.childrenCount; |
| for (var k = 0; k < childrenCount; k++) { |
| if (!dumpAccessibilityChildren(element.childAtIndex(k), level+1)) |
| if (window.accessibilityController) { |
| description("This tests that when you have a two nested inline continuations and the child one has no siblings, that we go back to the parent to check for its continuation."); |
| var content = accessibilityController.rootElement.childAtIndex(0); |
| dumpAccessibilityChildren(content, 0); |
| successfullyParsed = true; |
| <script src="../resources/js-test-post.js"></script> |