| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <script src="../resources/js-test-pre.js"></script> |
| <div role="button" id="button1"> |
| description("This tests that when a link is inside a button, its visible text is still available for the button."); |
| if (window.accessibilityController) { |
| var button1 = accessibilityController.accessibleElementById("button1"); |
| shouldBe("button1.title", "'AXTitle: foo1'"); |
| var button2 = accessibilityController.accessibleElementById("button2"); |
| shouldBe("button2.title", "'AXTitle: foo2'"); |
| document.getElementById("content").style.visibility = 'hidden'; |
| <script src="../resources/js-test-post.js"></script> |