blob: 801f4f4739f260e5d8ec7e5db71294221778c5c9 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../resources/js-test.js"></script>
</head>
<body id="body">
<script>
description("This tests that there's no crash when accessising any properties at the initial state.");
function enumelateProperties(value) {
if (typeof(value) !== 'object')
return;
for (var key in value)
enumelateProperties(value[key]);
}
if (window.accessibilityController)
enumelateProperties(window.accessibilityController);
</script>
</body>
</html>