| Index: LayoutTests/accessibility/table-with-empty-thead-causes-crash.html
|
| diff --git a/LayoutTests/accessibility/table-with-empty-thead-causes-crash.html b/LayoutTests/accessibility/table-with-empty-thead-causes-crash.html
|
| index 5fde24316734b8c06f1a6bd66e836dafd2dec242..23a83a09207fea5981b27f89174cf6c66295b2c6 100644
|
| --- a/LayoutTests/accessibility/table-with-empty-thead-causes-crash.html
|
| +++ b/LayoutTests/accessibility/table-with-empty-thead-causes-crash.html
|
| @@ -1,17 +1,8 @@
|
| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
|
| <html>
|
| <head>
|
| -<script>
|
| -
|
| - function buildAccessibilityTree(accessibilityObject) {
|
| - accessibilityObject.isEnabled
|
| -
|
| - var count = accessibilityObject.childrenCount;
|
| - for (var i = 0; i < count; ++i)
|
| - buildAccessibilityTree(accessibilityObject.childAtIndex(i));
|
| - }
|
| -</script>
|
| <script src="../resources/js-test.js"></script>
|
| +<script src="../resources/accessibility-helper.js"></script>
|
| </head>
|
| <body>
|
|
|
| @@ -21,6 +12,7 @@
|
| <tr><td>1</td><td>2</td></tr>
|
| </table>
|
|
|
| +<p>End of test</p>
|
| <p id="description"></p>
|
| <div id="console"></div>
|
|
|
| @@ -29,7 +21,7 @@
|
|
|
| if (window.accessibilityController) {
|
| document.body.focus();
|
| - buildAccessibilityTree(accessibilityController.focusedElement);
|
| + buildAccessibilityTree(accessibilityController.focusedElement, 0, 0, ['AXColumn', 'AXTableHeaderContainer']);
|
| }
|
|
|
| </script>
|
|
|