blob: 60dd3afedbeb7f52d13b1db913cb51cdacd22e4e [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../resources/js-test.js"></script>
</head>
<body>
<p id="p" style="width: 10em;">
This paragraph contains two lines of text.
</p>
<p id="description"></p>
<pre id="tree"></pre>
<div id="console"></div>
<script>
description("Tests that accessible inline text boxes update immediately when a static text element changes.");
if (window.accessibilityController) {
window.axParagraph = accessibilityController.accessibleElementById('p');
window.axStaticText = axParagraph.childAtIndex(0);
shouldBe("axStaticText.childrenCount", "2");
window.axInlineBefore0 = axStaticText.childAtIndex(0);
shouldBe("axInlineBefore0.stringValue", "'AXValue: This paragraph contains '");
window.axInlineBefore1 = axStaticText.childAtIndex(1);
shouldBe("axInlineBefore1.stringValue", "'AXValue: two lines of text.'");
// Modify the text.
document.getElementById("p").innerText += ' One more sentence.';
// Make sure the inline text boxes changed.
shouldBe("axStaticText.childrenCount", "3");
window.axInlineAfter0 = axStaticText.childAtIndex(0);
shouldBe("axInlineAfter0.stringValue", "'AXValue: This paragraph contains '");
window.axInlineAfter1 = axStaticText.childAtIndex(1);
shouldBe("axInlineAfter1.stringValue", "'AXValue: two lines of text. One '");
window.axInlineAfter2 = axStaticText.childAtIndex(2);
shouldBe("axInlineAfter2.stringValue", "'AXValue: more sentence.'");
// Make sure the old object pointing to the second text box is no longer valid.
shouldBe("axInlineBefore1.stringValue", "'AXValue: '");
}
</script>
</body>
</html>