| 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 <style> | 4 <style> |
| 5 dt:first-letter{text-transform:uppercase;} | 5 dt:first-letter{text-transform:uppercase;} |
| 6 </style> | 6 </style> |
| 7 <script> | 7 <script> |
| 8 | 8 |
| 9 function buildAccessibilityTree(accessibilityObject) { | 9 function buildAccessibilityTree(accessibilityObject) { |
| 10 var count = accessibilityObject.childrenCount; | 10 var count = accessibilityObject.childrenCount; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 document.body.children[0].offsetWidth; | 28 document.body.children[0].offsetWidth; |
| 29 | 29 |
| 30 if (window.accessibilityController) { | 30 if (window.accessibilityController) { |
| 31 // Build up full accessibility tree. | 31 // Build up full accessibility tree. |
| 32 document.body.focus(); | 32 document.body.focus(); |
| 33 buildAccessibilityTree(accessibilityController.focusedElement); | 33 buildAccessibilityTree(accessibilityController.focusedElement); |
| 34 } | 34 } |
| 35 | 35 |
| 36 </script> | 36 </script> |
| 37 | 37 |
| 38 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 39 </body> | 38 </body> |
| 40 </html> | 39 </html> |
| OLD | NEW |