OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> |
| 3 <head> |
| 4 <script src="../resources/js-test.js"></script> |
| 5 </head> |
| 6 <body id="body"> |
| 7 <script> |
| 8 |
| 9 description("This tests that there's no crash when accessising any propertie
s at the initial state."); |
| 10 |
| 11 function enumelateProperties(value) { |
| 12 if (typeof(value) !== 'object') |
| 13 return; |
| 14 for (var key in value) |
| 15 enumelateProperties(value[key]); |
| 16 } |
| 17 |
| 18 if (window.accessibilityController) |
| 19 enumelateProperties(window.accessibilityController); |
| 20 |
| 21 </script> |
| 22 </body> |
| 23 </html> |
OLD | NEW |