| 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> | 4 <script> |
| 5 | 5 |
| 6 function removeAreaElement() { | 6 function removeAreaElement() { |
| 7 document.getElementById("test").innerHTML=1 | 7 document.getElementById("test").innerHTML=1 |
| 8 } | 8 } |
| 9 | 9 |
| 10 function queryTitleOnDecendants(accessibilityObject) { | 10 function queryTitleOnDecendants(accessibilityObject) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 removeAreaElement() | 36 removeAreaElement() |
| 37 | 37 |
| 38 // Now call request the title for each accessibility object. | 38 // Now call request the title for each accessibility object. |
| 39 document.body.focus(); | 39 document.body.focus(); |
| 40 queryTitleOnDecendants(accessibilityController.focusedElement); | 40 queryTitleOnDecendants(accessibilityController.focusedElement); |
| 41 } | 41 } |
| 42 | 42 |
| 43 </script> | 43 </script> |
| 44 | 44 |
| 45 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 46 </body> | 45 </body> |
| 47 </html> | 46 </html> |
| OLD | NEW |