| 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 removeElement() { | 6 function removeElement() { |
| 7 document.getElementById('div').removeChild(document.getElementById('div'
).children[2]); | 7 document.getElementById('div').removeChild(document.getElementById('div'
).children[2]); |
| 8 } | 8 } |
| 9 | 9 |
| 10 function queryIsEnabledOnDecendants(accessibilityObject) { | 10 function queryIsEnabledOnDecendants(accessibilityObject) { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 removeElement() | 41 removeElement() |
| 42 | 42 |
| 43 // Now call isEnabled on each accessibility object. | 43 // Now call isEnabled on each accessibility object. |
| 44 document.body.focus(); | 44 document.body.focus(); |
| 45 queryIsEnabledOnDecendants(accessibilityController.focusedElement); | 45 queryIsEnabledOnDecendants(accessibilityController.focusedElement); |
| 46 } | 46 } |
| 47 | 47 |
| 48 </script> | 48 </script> |
| 49 | 49 |
| 50 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 51 </body> | 50 </body> |
| 52 </html> | 51 </html> |
| OLD | NEW |