blob: f7e140fb3780dead36db9d2cba526b205a09451a [file] [log] [blame]
<html>
<head>
<link rel="stylesheet" href="../fast/js/resources/js-test-style.css">
<script src="../fast/js/resources/js-test-pre.js"></script>
<script>
var vidAXObject;
var indentLevel = 0;
if (window.layoutTestController) {
layoutTestController.dumpAsText();
layoutTestController.waitUntilDone();
}
function indent(count)
{
var spaces = " ";
return spaces.substr(0, count);
}
function dumpObject(axObject)
{
debug(indent(indentLevel) + "description: " + axObject.description);
debug(indent(indentLevel) + "role: " + axObject.role);
debug("<br>");
}
function dumpChildren(axObject)
{
var count = axObject.childrenCount
if (!count)
return;
indentLevel += 4;
for (var ndx = 0; ndx < count; ndx++) {
var childAXObject = axObject.childAtIndex(ndx);
dumpObject(childAXObject);
if (childAXObject.childrenCount) {
// don't bother dumping static text children
if ( childAXObject.role != "AXRole: AXStaticText")
dumpChildren(childAXObject);
}
}
indentLevel -= 4;
}
function dumpVideoAX()
{
debug("<br>+++++++++++++++++++++++++++++++++++<br>");
debug("State at '" + event.type + "' event:<br>");
if (!window.accessibilityController)
return;
var body = document.getElementsByTagName("body")[0];
body.focus();
var vidAXObject = accessibilityController.focusedElement.childAtIndex(0);
dumpChildren(vidAXObject);
if (window.layoutTestController && event.type == 'load')
layoutTestController.notifyDone();
}
</script>
</head>
<body>
<video id=vid src="../media/content/test.mp4" controls onload="dumpVideoAX()">
</video>
<div>Dump &lt;video&gt; element controller accessibility object tree at 'loadstart' and 'load' events.</div>
<div id=console></div>
</body>
</html>