OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> |
| 3 <head> |
| 4 <script src="../resources/js-test.js"></script> |
| 5 </head> |
| 6 <body id="body"> |
| 7 <div id="content"> |
| 8 <div role="button" id="button1"> |
| 9 <a href="#">foo1</a> |
| 10 </div> |
| 11 <button id="button2"> |
| 12 <a href="#">foo2</a> |
| 13 </button> |
| 14 </div> |
| 15 <div id="console"></div> |
| 16 <script> |
| 17 if (window.testRunner) |
| 18 testRunner.dumpAsText(); |
| 19 |
| 20 description("This tests that when a link is inside a button, its visible tex
t is still available for the button."); |
| 21 if (window.accessibilityController) { |
| 22 var button1 = accessibilityController.accessibleElementById("button1")
; |
| 23 shouldBe("button1.title", "'AXTitle: foo1'"); |
| 24 var button2 = accessibilityController.accessibleElementById("button2")
; |
| 25 shouldBe("button2.title", "'AXTitle: foo2'"); |
| 26 document.getElementById("content").style.visibility = 'hidden'; |
| 27 } |
| 28 </script> |
| 29 </body> |
| 30 </html> |
OLD | NEW |