| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../resources/js-test.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body id="body"> | 6 <body id="body"> |
| 7 | 7 |
| 8 <div id="container" aria-label="container"> | 8 <div id="container" aria-label="container"> |
| 9 | 9 |
| 10 <table border=1 summary="test" aria-hidden="true"> | 10 <table border=1 summary="test" aria-hidden="true"> |
| 11 <tr><td>cell</td><td>cell</td><td>cell</td></tr> | 11 <tr><td>cell</td><td>cell</td><td>cell</td></tr> |
| 12 <tr><td>cell</td><td>cell</td><td>cell</td></tr> | 12 <tr><td>cell</td><td>cell</td><td>cell</td></tr> |
| 13 </table> | 13 </table> |
| 14 | 14 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 // The second child we ask for from the web area should be the heading, a
nd we should have skipped over everything else. | 49 // The second child we ask for from the web area should be the heading, a
nd we should have skipped over everything else. |
| 50 child = container.childAtIndex(1); | 50 child = container.childAtIndex(1); |
| 51 shouldBe("child.role", "'AXRole: AXHeading'"); | 51 shouldBe("child.role", "'AXRole: AXHeading'"); |
| 52 } | 52 } |
| 53 | 53 |
| 54 </script> | 54 </script> |
| 55 | 55 |
| 56 </body> | 56 </body> |
| 57 </html> | 57 </html> |
| OLD | NEW |