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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 </body> | 50 </body> |
51 </html> | 51 </html> |
OLD | NEW |