| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <script src="../resources/js-test-pre.js"></script> |
| <table id=table1 tabindex=0><td rowspan=141></table> |
| description("This test makes sure we do not crash if javascript removes a cell."); |
| if (window.accessibilityController) { |
| var table = document.getElementById("table1"); |
| tableAX = accessibilityController.focusedElement; |
| table.childNodes[0].removeChild(table.childNodes[0].childNodes[0]); |
| string = tableAX.attributesOfChildren(); |
| <script src="../resources/js-test-post.js"></script> |