1 <!DOCTYPE HTML PUBLIC
"-//IETF//DTD HTML//EN">
4 <script src=
"../resources/js-test.js"></script>
9 description("This tests that there's no crash when accessising any properties at the initial state.");
11 function enumelateProperties(value
) {
12 if (typeof(value
) !== 'object')
14 for (var key
in value
)
15 enumelateProperties(value
[key
]);
18 if (window
.accessibilityController
)
19 enumelateProperties(window
.accessibilityController
);