blob: 46dccc6d99851057fb693779df8083995c08f4f3 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
</head>
<body id="body">
<h4>
<span style="display:block;">first block span</span>
<span>inline span</span>
<span style="display:block;">second block span</span>
</h4>
<h4>
<a href="foo">
<span style="display:block;">first block span</span>
<span>inline span</span>
<span style="display:block;">second block span</span>
</a>
</h4>
<ol>
<li>
<span style="display:block;">first block span</span>
<span>inline span</span>
<span style="display:block;">second block span</span>
</li>
<li>
<a href="foo">
<span style="display:block;">first block span</span>
<span>inline span</span>
<span style="display:block;">second block span</span>
</a>
</li>
</ol>
<p id="description"></p>
<div id="console"></div>
<script>
description("This tests that both block spans and inline spans get folded into the parent object");
if (window.layoutController) {
testRunner.dumpAsText();
}
if (window.accessibilityController) {
document.getElementById("body").focus();
var webArea = accessibilityController.focusedElement;
var element = webArea.childAtIndex(0);
shouldBe("element.role", "'AXRole: AXHeading'");
shouldBe("element.childrenCount", "0");
element = webArea.childAtIndex(1);
shouldBe("element.role", "'AXRole: AXHeading'");
shouldBe("element.childrenCount", "1");
var link = element.childAtIndex(0);
shouldBe("link.role", "'AXRole: AXLink'");
shouldBe("link.childrenCount", "0");
element = webArea.childAtIndex(2);
shouldBe("element.role", "'AXRole: AXList'");
shouldBe("element.childrenCount", "2");
var item = element.childAtIndex(0);
shouldBe("item.role", "'AXRole: AXListItem'");
shouldBe("item.childrenCount", "1");
var marker = item.childAtIndex(0);
shouldBe("marker.role", "'AXRole: AXStatic'");
shouldBe("marker.childrenCount", "0");
item = element.childAtIndex(1);
shouldBe("item.role", "'AXRole: AXListItem'");
shouldBe("item.childrenCount", "2");
marker = item.childAtIndex(0);
shouldBe("marker.role", "'AXRole: AXStatic'");
shouldBe("marker.childrenCount", "0");
link = item.childAtIndex(1);
shouldBe("link.role", "'AXRole: AXLink'");
shouldBe("link.childrenCount", "0");
}
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>