| <!-- This test makes sure that spacer elements are not returned as elements. There should only be 4 elements returned --> |
| <a href="http://www.apple.com">Apple</a> |
| <a href="http://www.yahoo.com">Yahoo</a> |
| if (window.accessibilityController) { |
| var result = document.getElementById("result"); |
| var body = document.getElementById("body"); |
| var container = accessibilityController.focusedElement.childAtIndex(0); |
| if (container.childrenCount == 4) { |
| result.innerText += "Test passed\n"; |
| result.innerText += "Test failed\n"; |